blob: 9ca4a2e6a236ffd98749771338384839cdefab28 [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>
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +020073#include <linux/ftrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Eric Dumazet5517d862007-05-08 00:32:57 -070075#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020076#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/*
79 * Convert user-nice values [ -20 ... 0 ... 19 ]
80 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
81 * and back.
82 */
83#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
84#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
85#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
86
87/*
88 * 'User priority' is the nice value converted to something we
89 * can work with better when scaling various scheduler parameters,
90 * it's a [ 0 ... 39 ] range.
91 */
92#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
93#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
94#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
95
96/*
Ingo Molnard7876a02008-01-25 21:08:19 +010097 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +010099#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200101#define NICE_0_LOAD SCHED_LOAD_SCALE
102#define NICE_0_SHIFT SCHED_LOAD_SHIFT
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/*
105 * These are the 'tuning knobs' of the scheduler:
106 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200107 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * Timeslices get refilled after they expire.
109 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700111
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200112/*
113 * single value that denotes runtime == period, ie unlimited time.
114 */
115#define RUNTIME_INF ((u64)~0ULL)
116
Eric Dumazet5517d862007-05-08 00:32:57 -0700117#ifdef CONFIG_SMP
118/*
119 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
120 * Since cpu_power is a 'constant', we can use a reciprocal divide.
121 */
122static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
123{
124 return reciprocal_divide(load, sg->reciprocal_cpu_power);
125}
126
127/*
128 * Each time a sched group cpu_power is changed,
129 * we must compute its reciprocal value
130 */
131static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
132{
133 sg->__cpu_power += val;
134 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
135}
136#endif
137
Ingo Molnare05606d2007-07-09 18:51:59 +0200138static inline int rt_policy(int policy)
139{
140 if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR))
141 return 1;
142 return 0;
143}
144
145static inline int task_has_rt_policy(struct task_struct *p)
146{
147 return rt_policy(p->policy);
148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200151 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200153struct rt_prio_array {
154 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
155 struct list_head queue[MAX_RT_PRIO];
156};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200158struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100159 /* nests inside the rq lock: */
160 spinlock_t rt_runtime_lock;
161 ktime_t rt_period;
162 u64 rt_runtime;
163 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200164};
165
166static struct rt_bandwidth def_rt_bandwidth;
167
168static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
169
170static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
171{
172 struct rt_bandwidth *rt_b =
173 container_of(timer, struct rt_bandwidth, rt_period_timer);
174 ktime_t now;
175 int overrun;
176 int idle = 0;
177
178 for (;;) {
179 now = hrtimer_cb_get_time(timer);
180 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
181
182 if (!overrun)
183 break;
184
185 idle = do_sched_rt_period_timer(rt_b, overrun);
186 }
187
188 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
189}
190
191static
192void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
193{
194 rt_b->rt_period = ns_to_ktime(period);
195 rt_b->rt_runtime = runtime;
196
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200197 spin_lock_init(&rt_b->rt_runtime_lock);
198
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200199 hrtimer_init(&rt_b->rt_period_timer,
200 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
201 rt_b->rt_period_timer.function = sched_rt_period_timer;
202 rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
203}
204
205static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
206{
207 ktime_t now;
208
209 if (rt_b->rt_runtime == RUNTIME_INF)
210 return;
211
212 if (hrtimer_active(&rt_b->rt_period_timer))
213 return;
214
215 spin_lock(&rt_b->rt_runtime_lock);
216 for (;;) {
217 if (hrtimer_active(&rt_b->rt_period_timer))
218 break;
219
220 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
221 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
222 hrtimer_start(&rt_b->rt_period_timer,
223 rt_b->rt_period_timer.expires,
224 HRTIMER_MODE_ABS);
225 }
226 spin_unlock(&rt_b->rt_runtime_lock);
227}
228
229#ifdef CONFIG_RT_GROUP_SCHED
230static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
231{
232 hrtimer_cancel(&rt_b->rt_period_timer);
233}
234#endif
235
Heiko Carstens712555e2008-04-28 11:33:07 +0200236/*
237 * sched_domains_mutex serializes calls to arch_init_sched_domains,
238 * detach_destroy_domains and partition_sched_domains.
239 */
240static DEFINE_MUTEX(sched_domains_mutex);
241
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100242#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200243
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700244#include <linux/cgroup.h>
245
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200246struct cfs_rq;
247
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100248static LIST_HEAD(task_groups);
249
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200250/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200251struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100252#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700253 struct cgroup_subsys_state css;
254#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100255
256#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200257 /* schedulable entities of this group on each cpu */
258 struct sched_entity **se;
259 /* runqueue "owned" by this group on each cpu */
260 struct cfs_rq **cfs_rq;
261 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100262#endif
263
264#ifdef CONFIG_RT_GROUP_SCHED
265 struct sched_rt_entity **rt_se;
266 struct rt_rq **rt_rq;
267
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200268 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100269#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100270
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100271 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100272 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200273
274 struct task_group *parent;
275 struct list_head siblings;
276 struct list_head children;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200277};
278
Dhaval Giani354d60c2008-04-19 19:44:59 +0200279#ifdef CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200280
281/*
282 * Root task group.
283 * Every UID task group (including init_task_group aka UID-0) will
284 * be a child to this group.
285 */
286struct task_group root_task_group;
287
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100288#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200289/* Default task group's sched entity on each cpu */
290static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
291/* Default task group's cfs_rq on each cpu */
292static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100293#endif
294
295#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100296static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
297static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100298#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200299#else
300#define root_task_group init_task_group
Dhaval Giani354d60c2008-04-19 19:44:59 +0200301#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100302
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100303/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100304 * a task group's cpu shares.
305 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100306static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100307
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100308#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100309#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100310# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200311#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100312# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200313#endif
314
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800315/*
316 * A weight of 0, 1 or ULONG_MAX can cause arithmetics problems.
317 * (The default weight is 1024 - so there's no practical
318 * limitation from this.)
319 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200320#define MIN_SHARES 2
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800321#define MAX_SHARES (ULONG_MAX - 1)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200322
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
361#else
362
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100363static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200364
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100365#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200366
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200367/* CFS-related fields in a runqueue */
368struct cfs_rq {
369 struct load_weight load;
370 unsigned long nr_running;
371
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200372 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200373 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200374
375 struct rb_root tasks_timeline;
376 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200377
378 struct list_head tasks;
379 struct list_head *balance_iterator;
380
381 /*
382 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200383 * It is set to NULL otherwise (i.e when none are currently running).
384 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100385 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200386
387 unsigned long nr_spread_over;
388
Ingo Molnar62160e3f2007-10-15 17:00:03 +0200389#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200390 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
391
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100392 /*
393 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200394 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
395 * (like users, containers etc.)
396 *
397 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
398 * list is used during load balance.
399 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100400 struct list_head leaf_cfs_rq_list;
401 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200402
403#ifdef CONFIG_SMP
404 unsigned long task_weight;
405 unsigned long shares;
406 /*
407 * We need space to build a sched_domain wide view of the full task
408 * group tree, in order to avoid depending on dynamic memory allocation
409 * during the load balancing we place this in the per cpu task group
410 * hierarchy. This limits the load balancing to one instance per cpu,
411 * but more should not be needed anyway.
412 */
413 struct aggregate_struct {
414 /*
415 * load = weight(cpus) * f(tg)
416 *
417 * Where f(tg) is the recursive weight fraction assigned to
418 * this group.
419 */
420 unsigned long load;
421
422 /*
423 * part of the group weight distributed to this span.
424 */
425 unsigned long shares;
426
427 /*
428 * The sum of all runqueue weights within this span.
429 */
430 unsigned long rq_weight;
431
432 /*
433 * Weight contributed by tasks; this is the part we can
434 * influence by moving tasks around.
435 */
436 unsigned long task_weight;
437 } aggregate;
438#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200439#endif
440};
441
442/* Real-Time classes' related field in a runqueue: */
443struct rt_rq {
444 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100445 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100446#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100447 int highest_prio; /* highest queued rt task prio */
448#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100449#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100450 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100451 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100452#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100453 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100454 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200455 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100456 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200457 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100458
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100459#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100460 unsigned long rt_nr_boosted;
461
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100462 struct rq *rq;
463 struct list_head leaf_rt_rq_list;
464 struct task_group *tg;
465 struct sched_rt_entity *rt_se;
466#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200467};
468
Gregory Haskins57d885f2008-01-25 21:08:18 +0100469#ifdef CONFIG_SMP
470
471/*
472 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100473 * variables. Each exclusive cpuset essentially defines an island domain by
474 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100475 * exclusive cpuset is created, we also create and attach a new root-domain
476 * object.
477 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100478 */
479struct root_domain {
480 atomic_t refcount;
481 cpumask_t span;
482 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100483
Ingo Molnar0eab9142008-01-25 21:08:19 +0100484 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100485 * The "RT overload" flag: it gets set if a CPU has more than
486 * one runnable RT task.
487 */
488 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100489 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100490};
491
Gregory Haskinsdc938522008-01-25 21:08:26 +0100492/*
493 * By default the system creates a single root-domain with all cpus as
494 * members (mimicking the global state we have today).
495 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100496static struct root_domain def_root_domain;
497
498#endif
499
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200500/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 * This is the main, per-CPU runqueue data structure.
502 *
503 * Locking rule: those places that want to lock multiple runqueues
504 * (such as the load balancing or the thread migration code), lock
505 * acquire operations must be ordered by ascending &runqueue.
506 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700507struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200508 /* runqueue lock: */
509 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 /*
512 * nr_running and cpu_load should be in the same cacheline because
513 * remote CPUs use both these fields when doing load calculation.
514 */
515 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200516 #define CPU_LOAD_IDX_MAX 5
517 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700518 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700519#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200520 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700521 unsigned char in_nohz_recently;
522#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200523 /* capture load from *all* tasks on this cpu: */
524 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200525 unsigned long nr_load_updates;
526 u64 nr_switches;
527
528 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100529 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100530
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200531#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200532 /* list of leaf cfs_rq on this cpu: */
533 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100534#endif
535#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100536 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 /*
540 * This is part of a global counter where only the total sum
541 * over all CPUs matters. A task can increase this counter on
542 * one CPU and if it got migrated afterwards it may decrease
543 * it on another CPU. Always updated under the runqueue lock:
544 */
545 unsigned long nr_uninterruptible;
546
Ingo Molnar36c8b582006-07-03 00:25:41 -0700547 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800548 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200550
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200551 u64 clock;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 atomic_t nr_iowait;
554
555#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100556 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct sched_domain *sd;
558
559 /* For active balancing */
560 int active_balance;
561 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200562 /* cpu of this runqueue: */
563 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Ingo Molnar36c8b582006-07-03 00:25:41 -0700565 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 struct list_head migration_queue;
567#endif
568
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100569#ifdef CONFIG_SCHED_HRTICK
570 unsigned long hrtick_flags;
571 ktime_t hrtick_expire;
572 struct hrtimer hrtick_timer;
573#endif
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575#ifdef CONFIG_SCHEDSTATS
576 /* latency stats */
577 struct sched_info rq_sched_info;
578
579 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200580 unsigned int yld_exp_empty;
581 unsigned int yld_act_empty;
582 unsigned int yld_both_empty;
583 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200586 unsigned int sched_switch;
587 unsigned int sched_count;
588 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200591 unsigned int ttwu_count;
592 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200593
594 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200595 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700597 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598};
599
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700600static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Ingo Molnardd41f592007-07-09 18:51:59 +0200602static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
603{
604 rq->curr->sched_class->check_preempt_curr(rq, p);
605}
606
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700607static inline int cpu_of(struct rq *rq)
608{
609#ifdef CONFIG_SMP
610 return rq->cpu;
611#else
612 return 0;
613#endif
614}
615
Ingo Molnar20d315d2007-07-09 18:51:58 +0200616/*
Nick Piggin674311d2005-06-25 14:57:27 -0700617 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700618 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700619 *
620 * The domain tree of any CPU may only be accessed from within
621 * preempt-disabled sections.
622 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700623#define for_each_domain(cpu, __sd) \
624 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
627#define this_rq() (&__get_cpu_var(runqueues))
628#define task_rq(p) cpu_rq(task_cpu(p))
629#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
630
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200631static inline void update_rq_clock(struct rq *rq)
632{
633 rq->clock = sched_clock_cpu(cpu_of(rq));
634}
635
Ingo Molnare436d802007-07-19 21:28:35 +0200636/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200637 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
638 */
639#ifdef CONFIG_SCHED_DEBUG
640# define const_debug __read_mostly
641#else
642# define const_debug static const
643#endif
644
Ingo Molnar017730c2008-05-12 21:20:52 +0200645/**
646 * runqueue_is_locked
647 *
648 * Returns true if the current cpu runqueue is locked.
649 * This interface allows printk to be called with the runqueue lock
650 * held and know whether or not it is OK to wake up the klogd.
651 */
652int runqueue_is_locked(void)
653{
654 int cpu = get_cpu();
655 struct rq *rq = cpu_rq(cpu);
656 int ret;
657
658 ret = spin_is_locked(&rq->lock);
659 put_cpu();
660 return ret;
661}
662
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200663/*
664 * Debugging: various feature bits
665 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200666
667#define SCHED_FEAT(name, enabled) \
668 __SCHED_FEAT_##name ,
669
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200670enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200671#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200672};
673
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200674#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200675
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200676#define SCHED_FEAT(name, enabled) \
677 (1UL << __SCHED_FEAT_##name) * enabled |
678
679const_debug unsigned int sysctl_sched_features =
680#include "sched_features.h"
681 0;
682
683#undef SCHED_FEAT
684
685#ifdef CONFIG_SCHED_DEBUG
686#define SCHED_FEAT(name, enabled) \
687 #name ,
688
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700689static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200690#include "sched_features.h"
691 NULL
692};
693
694#undef SCHED_FEAT
695
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700696static int sched_feat_open(struct inode *inode, struct file *filp)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200697{
698 filp->private_data = inode->i_private;
699 return 0;
700}
701
702static ssize_t
703sched_feat_read(struct file *filp, char __user *ubuf,
704 size_t cnt, loff_t *ppos)
705{
706 char *buf;
707 int r = 0;
708 int len = 0;
709 int i;
710
711 for (i = 0; sched_feat_names[i]; i++) {
712 len += strlen(sched_feat_names[i]);
713 len += 4;
714 }
715
716 buf = kmalloc(len + 2, GFP_KERNEL);
717 if (!buf)
718 return -ENOMEM;
719
720 for (i = 0; sched_feat_names[i]; i++) {
721 if (sysctl_sched_features & (1UL << i))
722 r += sprintf(buf + r, "%s ", sched_feat_names[i]);
723 else
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200724 r += sprintf(buf + r, "NO_%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200725 }
726
727 r += sprintf(buf + r, "\n");
728 WARN_ON(r >= len + 2);
729
730 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
731
732 kfree(buf);
733
734 return r;
735}
736
737static ssize_t
738sched_feat_write(struct file *filp, const char __user *ubuf,
739 size_t cnt, loff_t *ppos)
740{
741 char buf[64];
742 char *cmp = buf;
743 int neg = 0;
744 int i;
745
746 if (cnt > 63)
747 cnt = 63;
748
749 if (copy_from_user(&buf, ubuf, cnt))
750 return -EFAULT;
751
752 buf[cnt] = 0;
753
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200754 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200755 neg = 1;
756 cmp += 3;
757 }
758
759 for (i = 0; sched_feat_names[i]; i++) {
760 int len = strlen(sched_feat_names[i]);
761
762 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
763 if (neg)
764 sysctl_sched_features &= ~(1UL << i);
765 else
766 sysctl_sched_features |= (1UL << i);
767 break;
768 }
769 }
770
771 if (!sched_feat_names[i])
772 return -EINVAL;
773
774 filp->f_pos += cnt;
775
776 return cnt;
777}
778
779static struct file_operations sched_feat_fops = {
780 .open = sched_feat_open,
781 .read = sched_feat_read,
782 .write = sched_feat_write,
783};
784
785static __init int sched_init_debug(void)
786{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200787 debugfs_create_file("sched_features", 0644, NULL, NULL,
788 &sched_feat_fops);
789
790 return 0;
791}
792late_initcall(sched_init_debug);
793
794#endif
795
796#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200797
798/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100799 * Number of tasks to iterate in a single balance run.
800 * Limited because this is done with IRQs disabled.
801 */
802const_debug unsigned int sysctl_sched_nr_migrate = 32;
803
804/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100805 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100806 * default: 1s
807 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100808unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100809
Ingo Molnar6892b752008-02-13 14:02:36 +0100810static __read_mostly int scheduler_running;
811
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100812/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100813 * part of the period that we allow rt tasks to run in us.
814 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100815 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100816int sysctl_sched_rt_runtime = 950000;
817
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200818static inline u64 global_rt_period(void)
819{
820 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
821}
822
823static inline u64 global_rt_runtime(void)
824{
825 if (sysctl_sched_rt_period < 0)
826 return RUNTIME_INF;
827
828 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
829}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100830
Ingo Molnar690229a2008-04-23 09:31:35 +0200831unsigned long long time_sync_thresh = 100000;
Ingo Molnar27ec4402008-02-28 21:00:21 +0100832
833static DEFINE_PER_CPU(unsigned long long, time_offset);
834static DEFINE_PER_CPU(unsigned long long, prev_cpu_time);
835
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100836/*
Ingo Molnar27ec4402008-02-28 21:00:21 +0100837 * Global lock which we take every now and then to synchronize
838 * the CPUs time. This method is not warp-safe, but it's good
839 * enough to synchronize slowly diverging time sources and thus
840 * it's good enough for tracing:
Ingo Molnare436d802007-07-19 21:28:35 +0200841 */
Ingo Molnar27ec4402008-02-28 21:00:21 +0100842static DEFINE_SPINLOCK(time_sync_lock);
843static unsigned long long prev_global_time;
844
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200845static unsigned long long __sync_cpu_clock(unsigned long long time, int cpu)
Ingo Molnar27ec4402008-02-28 21:00:21 +0100846{
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200847 /*
848 * We want this inlined, to not get tracer function calls
849 * in this critical section:
850 */
851 spin_acquire(&time_sync_lock.dep_map, 0, 0, _THIS_IP_);
852 __raw_spin_lock(&time_sync_lock.raw_lock);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100853
854 if (time < prev_global_time) {
855 per_cpu(time_offset, cpu) += prev_global_time - time;
856 time = prev_global_time;
857 } else {
858 prev_global_time = time;
859 }
860
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200861 __raw_spin_unlock(&time_sync_lock.raw_lock);
862 spin_release(&time_sync_lock.dep_map, 1, _THIS_IP_);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100863
864 return time;
865}
866
867static unsigned long long __cpu_clock(int cpu)
Ingo Molnare436d802007-07-19 21:28:35 +0200868{
Ingo Molnare436d802007-07-19 21:28:35 +0200869 unsigned long long now;
Ingo Molnare436d802007-07-19 21:28:35 +0200870
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100871 /*
872 * Only call sched_clock() if the scheduler has already been
873 * initialized (some code might call cpu_clock() very early):
874 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100875 if (unlikely(!scheduler_running))
876 return 0;
877
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200878 now = sched_clock_cpu(cpu);
Ingo Molnare436d802007-07-19 21:28:35 +0200879
880 return now;
881}
Ingo Molnar27ec4402008-02-28 21:00:21 +0100882
883/*
884 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
885 * clock constructed from sched_clock():
886 */
887unsigned long long cpu_clock(int cpu)
888{
889 unsigned long long prev_cpu_time, time, delta_time;
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200890 unsigned long flags;
Ingo Molnar27ec4402008-02-28 21:00:21 +0100891
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200892 local_irq_save(flags);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100893 prev_cpu_time = per_cpu(prev_cpu_time, cpu);
894 time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
895 delta_time = time-prev_cpu_time;
896
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200897 if (unlikely(delta_time > time_sync_thresh)) {
Ingo Molnar27ec4402008-02-28 21:00:21 +0100898 time = __sync_cpu_clock(time, cpu);
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200899 per_cpu(prev_cpu_time, cpu) = time;
900 }
901 local_irq_restore(flags);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100902
903 return time;
904}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200905EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700908# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700910#ifndef finish_arch_switch
911# define finish_arch_switch(prev) do { } while (0)
912#endif
913
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100914static inline int task_current(struct rq *rq, struct task_struct *p)
915{
916 return rq->curr == p;
917}
918
Nick Piggin4866cde2005-06-25 14:57:23 -0700919#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700920static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700921{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100922 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700923}
924
Ingo Molnar70b97a72006-07-03 00:25:42 -0700925static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700926{
927}
928
Ingo Molnar70b97a72006-07-03 00:25:42 -0700929static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700930{
Ingo Molnarda04c032005-09-13 11:17:59 +0200931#ifdef CONFIG_DEBUG_SPINLOCK
932 /* this is a valid case when another task releases the spinlock */
933 rq->lock.owner = current;
934#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700935 /*
936 * If we are tracking spinlock dependencies then we have to
937 * fix up the runqueue lock - which gets 'carried over' from
938 * prev into current:
939 */
940 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
941
Nick Piggin4866cde2005-06-25 14:57:23 -0700942 spin_unlock_irq(&rq->lock);
943}
944
945#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700946static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700947{
948#ifdef CONFIG_SMP
949 return p->oncpu;
950#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100951 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700952#endif
953}
954
Ingo Molnar70b97a72006-07-03 00:25:42 -0700955static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700956{
957#ifdef CONFIG_SMP
958 /*
959 * We can optimise this out completely for !SMP, because the
960 * SMP rebalancing from interrupt is the only thing that cares
961 * here.
962 */
963 next->oncpu = 1;
964#endif
965#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
966 spin_unlock_irq(&rq->lock);
967#else
968 spin_unlock(&rq->lock);
969#endif
970}
971
Ingo Molnar70b97a72006-07-03 00:25:42 -0700972static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700973{
974#ifdef CONFIG_SMP
975 /*
976 * After ->oncpu is cleared, the task can be moved to a different CPU.
977 * We must ensure this doesn't happen until the switch is completely
978 * finished.
979 */
980 smp_wmb();
981 prev->oncpu = 0;
982#endif
983#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
984 local_irq_enable();
985#endif
986}
987#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700990 * __task_rq_lock - lock the runqueue a given task resides on.
991 * Must be called interrupts disabled.
992 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700993static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700994 __acquires(rq->lock)
995{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200996 for (;;) {
997 struct rq *rq = task_rq(p);
998 spin_lock(&rq->lock);
999 if (likely(rq == task_rq(p)))
1000 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001001 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001002 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07001003}
1004
1005/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001007 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 * explicitly disabling preemption.
1009 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001010static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 __acquires(rq->lock)
1012{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001013 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Andi Kleen3a5c3592007-10-15 17:00:14 +02001015 for (;;) {
1016 local_irq_save(*flags);
1017 rq = task_rq(p);
1018 spin_lock(&rq->lock);
1019 if (likely(rq == task_rq(p)))
1020 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
Alexey Dobriyana9957442007-10-15 17:00:13 +02001025static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001026 __releases(rq->lock)
1027{
1028 spin_unlock(&rq->lock);
1029}
1030
Ingo Molnar70b97a72006-07-03 00:25:42 -07001031static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 __releases(rq->lock)
1033{
1034 spin_unlock_irqrestore(&rq->lock, *flags);
1035}
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -08001038 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001040static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 __acquires(rq->lock)
1042{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001043 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 local_irq_disable();
1046 rq = this_rq();
1047 spin_lock(&rq->lock);
1048
1049 return rq;
1050}
1051
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001052static void __resched_task(struct task_struct *p, int tif_bit);
1053
1054static inline void resched_task(struct task_struct *p)
1055{
1056 __resched_task(p, TIF_NEED_RESCHED);
1057}
1058
1059#ifdef CONFIG_SCHED_HRTICK
1060/*
1061 * Use HR-timers to deliver accurate preemption points.
1062 *
1063 * Its all a bit involved since we cannot program an hrt while holding the
1064 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1065 * reschedule event.
1066 *
1067 * When we get rescheduled we reprogram the hrtick_timer outside of the
1068 * rq->lock.
1069 */
1070static inline void resched_hrt(struct task_struct *p)
1071{
1072 __resched_task(p, TIF_HRTICK_RESCHED);
1073}
1074
1075static inline void resched_rq(struct rq *rq)
1076{
1077 unsigned long flags;
1078
1079 spin_lock_irqsave(&rq->lock, flags);
1080 resched_task(rq->curr);
1081 spin_unlock_irqrestore(&rq->lock, flags);
1082}
1083
1084enum {
1085 HRTICK_SET, /* re-programm hrtick_timer */
1086 HRTICK_RESET, /* not a new slice */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001087 HRTICK_BLOCK, /* stop hrtick operations */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001088};
1089
1090/*
1091 * Use hrtick when:
1092 * - enabled by features
1093 * - hrtimer is actually high res
1094 */
1095static inline int hrtick_enabled(struct rq *rq)
1096{
1097 if (!sched_feat(HRTICK))
1098 return 0;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001099 if (unlikely(test_bit(HRTICK_BLOCK, &rq->hrtick_flags)))
1100 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001101 return hrtimer_is_hres_active(&rq->hrtick_timer);
1102}
1103
1104/*
1105 * Called to set the hrtick timer state.
1106 *
1107 * called with rq->lock held and irqs disabled
1108 */
1109static void hrtick_start(struct rq *rq, u64 delay, int reset)
1110{
1111 assert_spin_locked(&rq->lock);
1112
1113 /*
1114 * preempt at: now + delay
1115 */
1116 rq->hrtick_expire =
1117 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
1118 /*
1119 * indicate we need to program the timer
1120 */
1121 __set_bit(HRTICK_SET, &rq->hrtick_flags);
1122 if (reset)
1123 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
1124
1125 /*
1126 * New slices are called from the schedule path and don't need a
1127 * forced reschedule.
1128 */
1129 if (reset)
1130 resched_hrt(rq->curr);
1131}
1132
1133static void hrtick_clear(struct rq *rq)
1134{
1135 if (hrtimer_active(&rq->hrtick_timer))
1136 hrtimer_cancel(&rq->hrtick_timer);
1137}
1138
1139/*
1140 * Update the timer from the possible pending state.
1141 */
1142static void hrtick_set(struct rq *rq)
1143{
1144 ktime_t time;
1145 int set, reset;
1146 unsigned long flags;
1147
1148 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1149
1150 spin_lock_irqsave(&rq->lock, flags);
1151 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1152 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1153 time = rq->hrtick_expire;
1154 clear_thread_flag(TIF_HRTICK_RESCHED);
1155 spin_unlock_irqrestore(&rq->lock, flags);
1156
1157 if (set) {
1158 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1159 if (reset && !hrtimer_active(&rq->hrtick_timer))
1160 resched_rq(rq);
1161 } else
1162 hrtick_clear(rq);
1163}
1164
1165/*
1166 * High-resolution timer tick.
1167 * Runs from hardirq context with interrupts disabled.
1168 */
1169static enum hrtimer_restart hrtick(struct hrtimer *timer)
1170{
1171 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1172
1173 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1174
1175 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001176 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001177 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1178 spin_unlock(&rq->lock);
1179
1180 return HRTIMER_NORESTART;
1181}
1182
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001183static void hotplug_hrtick_disable(int cpu)
1184{
1185 struct rq *rq = cpu_rq(cpu);
1186 unsigned long flags;
1187
1188 spin_lock_irqsave(&rq->lock, flags);
1189 rq->hrtick_flags = 0;
1190 __set_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1191 spin_unlock_irqrestore(&rq->lock, flags);
1192
1193 hrtick_clear(rq);
1194}
1195
1196static void hotplug_hrtick_enable(int cpu)
1197{
1198 struct rq *rq = cpu_rq(cpu);
1199 unsigned long flags;
1200
1201 spin_lock_irqsave(&rq->lock, flags);
1202 __clear_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1203 spin_unlock_irqrestore(&rq->lock, flags);
1204}
1205
1206static int
1207hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1208{
1209 int cpu = (int)(long)hcpu;
1210
1211 switch (action) {
1212 case CPU_UP_CANCELED:
1213 case CPU_UP_CANCELED_FROZEN:
1214 case CPU_DOWN_PREPARE:
1215 case CPU_DOWN_PREPARE_FROZEN:
1216 case CPU_DEAD:
1217 case CPU_DEAD_FROZEN:
1218 hotplug_hrtick_disable(cpu);
1219 return NOTIFY_OK;
1220
1221 case CPU_UP_PREPARE:
1222 case CPU_UP_PREPARE_FROZEN:
1223 case CPU_DOWN_FAILED:
1224 case CPU_DOWN_FAILED_FROZEN:
1225 case CPU_ONLINE:
1226 case CPU_ONLINE_FROZEN:
1227 hotplug_hrtick_enable(cpu);
1228 return NOTIFY_OK;
1229 }
1230
1231 return NOTIFY_DONE;
1232}
1233
1234static void init_hrtick(void)
1235{
1236 hotcpu_notifier(hotplug_hrtick, 0);
1237}
1238
1239static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001240{
1241 rq->hrtick_flags = 0;
1242 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1243 rq->hrtick_timer.function = hrtick;
1244 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1245}
1246
1247void hrtick_resched(void)
1248{
1249 struct rq *rq;
1250 unsigned long flags;
1251
1252 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1253 return;
1254
1255 local_irq_save(flags);
1256 rq = cpu_rq(smp_processor_id());
1257 hrtick_set(rq);
1258 local_irq_restore(flags);
1259}
1260#else
1261static inline void hrtick_clear(struct rq *rq)
1262{
1263}
1264
1265static inline void hrtick_set(struct rq *rq)
1266{
1267}
1268
1269static inline void init_rq_hrtick(struct rq *rq)
1270{
1271}
1272
1273void hrtick_resched(void)
1274{
1275}
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001276
1277static inline void init_hrtick(void)
1278{
1279}
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001280#endif
1281
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001282/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001283 * resched_task - mark a task 'to be rescheduled now'.
1284 *
1285 * On UP this means the setting of the need_resched flag, on SMP it
1286 * might also involve a cross-CPU call to trigger the scheduler on
1287 * the target CPU.
1288 */
1289#ifdef CONFIG_SMP
1290
1291#ifndef tsk_is_polling
1292#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1293#endif
1294
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001295static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001296{
1297 int cpu;
1298
1299 assert_spin_locked(&task_rq(p)->lock);
1300
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001301 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001302 return;
1303
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001304 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001305
1306 cpu = task_cpu(p);
1307 if (cpu == smp_processor_id())
1308 return;
1309
1310 /* NEED_RESCHED must be visible before we test polling */
1311 smp_mb();
1312 if (!tsk_is_polling(p))
1313 smp_send_reschedule(cpu);
1314}
1315
1316static void resched_cpu(int cpu)
1317{
1318 struct rq *rq = cpu_rq(cpu);
1319 unsigned long flags;
1320
1321 if (!spin_trylock_irqsave(&rq->lock, flags))
1322 return;
1323 resched_task(cpu_curr(cpu));
1324 spin_unlock_irqrestore(&rq->lock, flags);
1325}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001326
1327#ifdef CONFIG_NO_HZ
1328/*
1329 * When add_timer_on() enqueues a timer into the timer wheel of an
1330 * idle CPU then this timer might expire before the next timer event
1331 * which is scheduled to wake up that CPU. In case of a completely
1332 * idle system the next event might even be infinite time into the
1333 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1334 * leaves the inner idle loop so the newly added timer is taken into
1335 * account when the CPU goes back to idle and evaluates the timer
1336 * wheel for the next timer event.
1337 */
1338void wake_up_idle_cpu(int cpu)
1339{
1340 struct rq *rq = cpu_rq(cpu);
1341
1342 if (cpu == smp_processor_id())
1343 return;
1344
1345 /*
1346 * This is safe, as this function is called with the timer
1347 * wheel base lock of (cpu) held. When the CPU is on the way
1348 * to idle and has not yet set rq->curr to idle then it will
1349 * be serialized on the timer wheel base lock and take the new
1350 * timer into account automatically.
1351 */
1352 if (rq->curr != rq->idle)
1353 return;
1354
1355 /*
1356 * We can set TIF_RESCHED on the idle task of the other CPU
1357 * lockless. The worst case is that the other CPU runs the
1358 * idle task through an additional NOOP schedule()
1359 */
1360 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1361
1362 /* NEED_RESCHED must be visible before we test polling */
1363 smp_mb();
1364 if (!tsk_is_polling(rq->idle))
1365 smp_send_reschedule(cpu);
1366}
1367#endif
1368
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001369#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001370static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001371{
1372 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001373 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001374}
1375#endif
1376
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001377#if BITS_PER_LONG == 32
1378# define WMULT_CONST (~0UL)
1379#else
1380# define WMULT_CONST (1UL << 32)
1381#endif
1382
1383#define WMULT_SHIFT 32
1384
Ingo Molnar194081e2007-08-09 11:16:51 +02001385/*
1386 * Shift right and round:
1387 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001388#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001389
Peter Zijlstra8f1bc382008-04-19 19:45:00 +02001390/*
1391 * delta *= weight / lw
1392 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001393static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001394calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1395 struct load_weight *lw)
1396{
1397 u64 tmp;
1398
Peter Zijlstrae05510d2008-05-05 23:56:17 +02001399 if (!lw->inv_weight)
1400 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)/(lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001401
1402 tmp = (u64)delta_exec * weight;
1403 /*
1404 * Check whether we'd overflow the 64-bit multiplication:
1405 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001406 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001407 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001408 WMULT_SHIFT/2);
1409 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001410 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001411
Ingo Molnarecf691d2007-08-02 17:41:40 +02001412 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001413}
1414
Ingo Molnar10919852007-10-15 17:00:04 +02001415static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001416{
1417 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001418 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001419}
1420
Ingo Molnar10919852007-10-15 17:00:04 +02001421static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001422{
1423 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001424 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001425}
1426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001428 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1429 * of tasks with abnormal "nice" values across CPUs the contribution that
1430 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001431 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001432 * scaled version of the new time slice allocation that they receive on time
1433 * slice expiry etc.
1434 */
1435
Ingo Molnardd41f592007-07-09 18:51:59 +02001436#define WEIGHT_IDLEPRIO 2
1437#define WMULT_IDLEPRIO (1 << 31)
1438
1439/*
1440 * Nice levels are multiplicative, with a gentle 10% change for every
1441 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1442 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1443 * that remained on nice 0.
1444 *
1445 * The "10% effect" is relative and cumulative: from _any_ nice level,
1446 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001447 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1448 * If a task goes up by ~10% and another task goes down by ~10% then
1449 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001450 */
1451static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001452 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1453 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1454 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1455 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1456 /* 0 */ 1024, 820, 655, 526, 423,
1457 /* 5 */ 335, 272, 215, 172, 137,
1458 /* 10 */ 110, 87, 70, 56, 45,
1459 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001460};
1461
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001462/*
1463 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1464 *
1465 * In cases where the weight does not change often, we can use the
1466 * precalculated inverse to speed up arithmetics by turning divisions
1467 * into multiplications:
1468 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001469static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001470 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1471 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1472 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1473 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1474 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1475 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1476 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1477 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001478};
Peter Williams2dd73a42006-06-27 02:54:34 -07001479
Ingo Molnardd41f592007-07-09 18:51:59 +02001480static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1481
1482/*
1483 * runqueue iterator, to support SMP load-balancing between different
1484 * scheduling classes, without having to expose their internal data
1485 * structures to the load-balancing proper:
1486 */
1487struct rq_iterator {
1488 void *arg;
1489 struct task_struct *(*start)(void *);
1490 struct task_struct *(*next)(void *);
1491};
1492
Peter Williamse1d14842007-10-24 18:23:51 +02001493#ifdef CONFIG_SMP
1494static unsigned long
1495balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1496 unsigned long max_load_move, struct sched_domain *sd,
1497 enum cpu_idle_type idle, int *all_pinned,
1498 int *this_best_prio, struct rq_iterator *iterator);
1499
1500static int
1501iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1502 struct sched_domain *sd, enum cpu_idle_type idle,
1503 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001504#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001505
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001506#ifdef CONFIG_CGROUP_CPUACCT
1507static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1508#else
1509static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1510#endif
1511
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001512static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1513{
1514 update_load_add(&rq->load, load);
1515}
1516
1517static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1518{
1519 update_load_sub(&rq->load, load);
1520}
1521
Gregory Haskinse7693a32008-01-25 21:08:09 +01001522#ifdef CONFIG_SMP
1523static unsigned long source_load(int cpu, int type);
1524static unsigned long target_load(int cpu, int type);
1525static unsigned long cpu_avg_load_per_task(int cpu);
1526static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001527
1528#ifdef CONFIG_FAIR_GROUP_SCHED
1529
1530/*
1531 * Group load balancing.
1532 *
1533 * We calculate a few balance domain wide aggregate numbers; load and weight.
1534 * Given the pictures below, and assuming each item has equal weight:
1535 *
1536 * root 1 - thread
1537 * / | \ A - group
1538 * A 1 B
1539 * /|\ / \
1540 * C 2 D 3 4
1541 * | |
1542 * 5 6
1543 *
1544 * load:
1545 * A and B get 1/3-rd of the total load. C and D get 1/3-rd of A's 1/3-rd,
1546 * which equals 1/9-th of the total load.
1547 *
1548 * shares:
1549 * The weight of this group on the selected cpus.
1550 *
1551 * rq_weight:
1552 * Direct sum of all the cpu's their rq weight, e.g. A would get 3 while
1553 * B would get 2.
1554 *
1555 * task_weight:
1556 * Part of the rq_weight contributed by tasks; all groups except B would
1557 * get 1, B gets 2.
1558 */
1559
1560static inline struct aggregate_struct *
1561aggregate(struct task_group *tg, struct sched_domain *sd)
1562{
1563 return &tg->cfs_rq[sd->first_cpu]->aggregate;
1564}
1565
1566typedef void (*aggregate_func)(struct task_group *, struct sched_domain *);
1567
1568/*
1569 * Iterate the full tree, calling @down when first entering a node and @up when
1570 * leaving it for the final time.
1571 */
1572static
1573void aggregate_walk_tree(aggregate_func down, aggregate_func up,
1574 struct sched_domain *sd)
1575{
1576 struct task_group *parent, *child;
1577
1578 rcu_read_lock();
1579 parent = &root_task_group;
1580down:
1581 (*down)(parent, sd);
1582 list_for_each_entry_rcu(child, &parent->children, siblings) {
1583 parent = child;
1584 goto down;
1585
1586up:
1587 continue;
1588 }
1589 (*up)(parent, sd);
1590
1591 child = parent;
1592 parent = parent->parent;
1593 if (parent)
1594 goto up;
1595 rcu_read_unlock();
1596}
1597
1598/*
1599 * Calculate the aggregate runqueue weight.
1600 */
1601static
1602void aggregate_group_weight(struct task_group *tg, struct sched_domain *sd)
1603{
1604 unsigned long rq_weight = 0;
1605 unsigned long task_weight = 0;
1606 int i;
1607
1608 for_each_cpu_mask(i, sd->span) {
1609 rq_weight += tg->cfs_rq[i]->load.weight;
1610 task_weight += tg->cfs_rq[i]->task_weight;
1611 }
1612
1613 aggregate(tg, sd)->rq_weight = rq_weight;
1614 aggregate(tg, sd)->task_weight = task_weight;
1615}
1616
1617/*
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001618 * Compute the weight of this group on the given cpus.
1619 */
1620static
1621void aggregate_group_shares(struct task_group *tg, struct sched_domain *sd)
1622{
1623 unsigned long shares = 0;
1624 int i;
1625
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001626 for_each_cpu_mask(i, sd->span)
1627 shares += tg->cfs_rq[i]->shares;
1628
Peter Zijlstra3f5087a2008-04-25 00:25:08 +02001629 if ((!shares && aggregate(tg, sd)->rq_weight) || shares > tg->shares)
1630 shares = tg->shares;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001631
1632 aggregate(tg, sd)->shares = shares;
1633}
1634
1635/*
1636 * Compute the load fraction assigned to this group, relies on the aggregate
1637 * weight and this group's parent's load, i.e. top-down.
1638 */
1639static
1640void aggregate_group_load(struct task_group *tg, struct sched_domain *sd)
1641{
1642 unsigned long load;
1643
1644 if (!tg->parent) {
1645 int i;
1646
1647 load = 0;
1648 for_each_cpu_mask(i, sd->span)
1649 load += cpu_rq(i)->load.weight;
1650
1651 } else {
1652 load = aggregate(tg->parent, sd)->load;
1653
1654 /*
1655 * shares is our weight in the parent's rq so
1656 * shares/parent->rq_weight gives our fraction of the load
1657 */
1658 load *= aggregate(tg, sd)->shares;
1659 load /= aggregate(tg->parent, sd)->rq_weight + 1;
1660 }
1661
1662 aggregate(tg, sd)->load = load;
1663}
1664
1665static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1666
1667/*
1668 * Calculate and set the cpu's group shares.
1669 */
1670static void
1671__update_group_shares_cpu(struct task_group *tg, struct sched_domain *sd,
1672 int tcpu)
1673{
1674 int boost = 0;
1675 unsigned long shares;
1676 unsigned long rq_weight;
1677
1678 if (!tg->se[tcpu])
1679 return;
1680
1681 rq_weight = tg->cfs_rq[tcpu]->load.weight;
1682
1683 /*
1684 * If there are currently no tasks on the cpu pretend there is one of
1685 * average load so that when a new task gets to run here it will not
1686 * get delayed by group starvation.
1687 */
1688 if (!rq_weight) {
1689 boost = 1;
1690 rq_weight = NICE_0_LOAD;
1691 }
1692
1693 /*
1694 * \Sum shares * rq_weight
1695 * shares = -----------------------
1696 * \Sum rq_weight
1697 *
1698 */
1699 shares = aggregate(tg, sd)->shares * rq_weight;
1700 shares /= aggregate(tg, sd)->rq_weight + 1;
1701
1702 /*
1703 * record the actual number of shares, not the boosted amount.
1704 */
1705 tg->cfs_rq[tcpu]->shares = boost ? 0 : shares;
1706
1707 if (shares < MIN_SHARES)
1708 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08001709 else if (shares > MAX_SHARES)
1710 shares = MAX_SHARES;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001711
1712 __set_se_shares(tg->se[tcpu], shares);
1713}
1714
1715/*
1716 * Re-adjust the weights on the cpu the task came from and on the cpu the
1717 * task went to.
1718 */
1719static void
1720__move_group_shares(struct task_group *tg, struct sched_domain *sd,
1721 int scpu, int dcpu)
1722{
1723 unsigned long shares;
1724
1725 shares = tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1726
1727 __update_group_shares_cpu(tg, sd, scpu);
1728 __update_group_shares_cpu(tg, sd, dcpu);
1729
1730 /*
1731 * ensure we never loose shares due to rounding errors in the
1732 * above redistribution.
1733 */
1734 shares -= tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1735 if (shares)
1736 tg->cfs_rq[dcpu]->shares += shares;
1737}
1738
1739/*
1740 * Because changing a group's shares changes the weight of the super-group
1741 * we need to walk up the tree and change all shares until we hit the root.
1742 */
1743static void
1744move_group_shares(struct task_group *tg, struct sched_domain *sd,
1745 int scpu, int dcpu)
1746{
1747 while (tg) {
1748 __move_group_shares(tg, sd, scpu, dcpu);
1749 tg = tg->parent;
1750 }
1751}
1752
1753static
1754void aggregate_group_set_shares(struct task_group *tg, struct sched_domain *sd)
1755{
1756 unsigned long shares = aggregate(tg, sd)->shares;
1757 int i;
1758
1759 for_each_cpu_mask(i, sd->span) {
1760 struct rq *rq = cpu_rq(i);
1761 unsigned long flags;
1762
1763 spin_lock_irqsave(&rq->lock, flags);
1764 __update_group_shares_cpu(tg, sd, i);
1765 spin_unlock_irqrestore(&rq->lock, flags);
1766 }
1767
1768 aggregate_group_shares(tg, sd);
1769
1770 /*
1771 * ensure we never loose shares due to rounding errors in the
1772 * above redistribution.
1773 */
1774 shares -= aggregate(tg, sd)->shares;
1775 if (shares) {
1776 tg->cfs_rq[sd->first_cpu]->shares += shares;
1777 aggregate(tg, sd)->shares += shares;
1778 }
1779}
1780
1781/*
1782 * Calculate the accumulative weight and recursive load of each task group
1783 * while walking down the tree.
1784 */
1785static
1786void aggregate_get_down(struct task_group *tg, struct sched_domain *sd)
1787{
1788 aggregate_group_weight(tg, sd);
1789 aggregate_group_shares(tg, sd);
1790 aggregate_group_load(tg, sd);
1791}
1792
1793/*
1794 * Rebalance the cpu shares while walking back up the tree.
1795 */
1796static
1797void aggregate_get_up(struct task_group *tg, struct sched_domain *sd)
1798{
1799 aggregate_group_set_shares(tg, sd);
1800}
1801
1802static DEFINE_PER_CPU(spinlock_t, aggregate_lock);
1803
1804static void __init init_aggregate(void)
1805{
1806 int i;
1807
1808 for_each_possible_cpu(i)
1809 spin_lock_init(&per_cpu(aggregate_lock, i));
1810}
1811
1812static int get_aggregate(struct sched_domain *sd)
1813{
1814 if (!spin_trylock(&per_cpu(aggregate_lock, sd->first_cpu)))
1815 return 0;
1816
1817 aggregate_walk_tree(aggregate_get_down, aggregate_get_up, sd);
1818 return 1;
1819}
1820
1821static void put_aggregate(struct sched_domain *sd)
1822{
1823 spin_unlock(&per_cpu(aggregate_lock, sd->first_cpu));
1824}
1825
1826static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1827{
1828 cfs_rq->shares = shares;
1829}
1830
1831#else
1832
1833static inline void init_aggregate(void)
1834{
1835}
1836
1837static inline int get_aggregate(struct sched_domain *sd)
1838{
1839 return 0;
1840}
1841
1842static inline void put_aggregate(struct sched_domain *sd)
1843{
1844}
1845#endif
1846
1847#else /* CONFIG_SMP */
1848
1849#ifdef CONFIG_FAIR_GROUP_SCHED
1850static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1851{
1852}
1853#endif
1854
Gregory Haskinse7693a32008-01-25 21:08:09 +01001855#endif /* CONFIG_SMP */
1856
Ingo Molnardd41f592007-07-09 18:51:59 +02001857#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001858#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001859#include "sched_fair.c"
1860#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001861#ifdef CONFIG_SCHED_DEBUG
1862# include "sched_debug.c"
1863#endif
1864
1865#define sched_class_highest (&rt_sched_class)
1866
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001867static void inc_nr_running(struct rq *rq)
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001868{
1869 rq->nr_running++;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001870}
1871
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001872static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001873{
1874 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001875}
1876
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001877static void set_load_weight(struct task_struct *p)
1878{
1879 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001880 p->se.load.weight = prio_to_weight[0] * 2;
1881 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1882 return;
1883 }
1884
1885 /*
1886 * SCHED_IDLE tasks get minimal weight:
1887 */
1888 if (p->policy == SCHED_IDLE) {
1889 p->se.load.weight = WEIGHT_IDLEPRIO;
1890 p->se.load.inv_weight = WMULT_IDLEPRIO;
1891 return;
1892 }
1893
1894 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1895 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001896}
1897
Ingo Molnar8159f872007-08-09 11:16:49 +02001898static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001899{
1900 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001901 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001902 p->se.on_rq = 1;
1903}
1904
Ingo Molnar69be72c2007-08-09 11:16:49 +02001905static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001906{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001907 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001908 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001909}
1910
1911/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001912 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001913 */
Ingo Molnar14531182007-07-09 18:51:59 +02001914static inline int __normal_prio(struct task_struct *p)
1915{
Ingo Molnardd41f592007-07-09 18:51:59 +02001916 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001917}
1918
1919/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001920 * Calculate the expected normal priority: i.e. priority
1921 * without taking RT-inheritance into account. Might be
1922 * boosted by interactivity modifiers. Changes upon fork,
1923 * setprio syscalls, and whenever the interactivity
1924 * estimator recalculates.
1925 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001926static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001927{
1928 int prio;
1929
Ingo Molnare05606d2007-07-09 18:51:59 +02001930 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001931 prio = MAX_RT_PRIO-1 - p->rt_priority;
1932 else
1933 prio = __normal_prio(p);
1934 return prio;
1935}
1936
1937/*
1938 * Calculate the current priority, i.e. the priority
1939 * taken into account by the scheduler. This value might
1940 * be boosted by RT tasks, or might be boosted by
1941 * interactivity modifiers. Will be RT if the task got
1942 * RT-boosted. If not then it returns p->normal_prio.
1943 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001944static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001945{
1946 p->normal_prio = normal_prio(p);
1947 /*
1948 * If we are RT tasks or we were boosted to RT priority,
1949 * keep the priority unchanged. Otherwise, update priority
1950 * to the normal priority:
1951 */
1952 if (!rt_prio(p->prio))
1953 return p->normal_prio;
1954 return p->prio;
1955}
1956
1957/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001958 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001960static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001962 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001963 rq->nr_uninterruptible--;
1964
Ingo Molnar8159f872007-08-09 11:16:49 +02001965 enqueue_task(rq, p, wakeup);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001966 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967}
1968
1969/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 * deactivate_task - remove a task from the runqueue.
1971 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001972static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001974 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001975 rq->nr_uninterruptible++;
1976
Ingo Molnar69be72c2007-08-09 11:16:49 +02001977 dequeue_task(rq, p, sleep);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001978 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979}
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981/**
1982 * task_curr - is this task currently executing on a CPU?
1983 * @p: the task in question.
1984 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001985inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
1987 return cpu_curr(task_cpu(p)) == p;
1988}
1989
Peter Williams2dd73a42006-06-27 02:54:34 -07001990/* Used instead of source_load when we know the type == 0 */
1991unsigned long weighted_cpuload(const int cpu)
1992{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001993 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001994}
1995
1996static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1997{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001998 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001999#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01002000 /*
2001 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
2002 * successfuly executed on another CPU. We must ensure that updates of
2003 * per-task data have been completed by this moment.
2004 */
2005 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02002006 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02002007#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07002008}
2009
Steven Rostedtcb469842008-01-25 21:08:22 +01002010static inline void check_class_changed(struct rq *rq, struct task_struct *p,
2011 const struct sched_class *prev_class,
2012 int oldprio, int running)
2013{
2014 if (prev_class != p->sched_class) {
2015 if (prev_class->switched_from)
2016 prev_class->switched_from(rq, p, running);
2017 p->sched_class->switched_to(rq, p, running);
2018 } else
2019 p->sched_class->prio_changed(rq, p, oldprio, running);
2020}
2021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02002023
Ingo Molnarcc367732007-10-15 17:00:18 +02002024/*
2025 * Is this task likely cache-hot:
2026 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002027static int
Ingo Molnarcc367732007-10-15 17:00:18 +02002028task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
2029{
2030 s64 delta;
2031
Ingo Molnarf540a602008-03-15 17:10:34 +01002032 /*
2033 * Buddy candidates are cache hot:
2034 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01002035 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01002036 return 1;
2037
Ingo Molnarcc367732007-10-15 17:00:18 +02002038 if (p->sched_class != &fair_sched_class)
2039 return 0;
2040
Ingo Molnar6bc16652007-10-15 17:00:18 +02002041 if (sysctl_sched_migration_cost == -1)
2042 return 1;
2043 if (sysctl_sched_migration_cost == 0)
2044 return 0;
2045
Ingo Molnarcc367732007-10-15 17:00:18 +02002046 delta = now - p->se.exec_start;
2047
2048 return delta < (s64)sysctl_sched_migration_cost;
2049}
2050
2051
Ingo Molnardd41f592007-07-09 18:51:59 +02002052void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02002053{
Ingo Molnardd41f592007-07-09 18:51:59 +02002054 int old_cpu = task_cpu(p);
2055 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002056 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
2057 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02002058 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002059
2060 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002061
2062#ifdef CONFIG_SCHEDSTATS
2063 if (p->se.wait_start)
2064 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002065 if (p->se.sleep_start)
2066 p->se.sleep_start -= clock_offset;
2067 if (p->se.block_start)
2068 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02002069 if (old_cpu != new_cpu) {
2070 schedstat_inc(p, se.nr_migrations);
2071 if (task_hot(p, old_rq->clock, NULL))
2072 schedstat_inc(p, se.nr_forced2_migrations);
2073 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002074#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002075 p->se.vruntime -= old_cfsrq->min_vruntime -
2076 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02002077
2078 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02002079}
2080
Ingo Molnar70b97a72006-07-03 00:25:42 -07002081struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
Ingo Molnar36c8b582006-07-03 00:25:41 -07002084 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 int dest_cpu;
2086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002088};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090/*
2091 * The task's runqueue lock must be held.
2092 * Returns true if you have to wait for migration thread.
2093 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002094static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002095migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002097 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 /*
2100 * If the task is not on a runqueue (and not running), then
2101 * it is sufficient to simply update the task's cpu field.
2102 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002103 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 set_task_cpu(p, dest_cpu);
2105 return 0;
2106 }
2107
2108 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 req->task = p;
2110 req->dest_cpu = dest_cpu;
2111 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 return 1;
2114}
2115
2116/*
2117 * wait_task_inactive - wait for a thread to unschedule.
2118 *
2119 * The caller must ensure that the task *will* unschedule sometime soon,
2120 * else this function might spin for a *long* time. This function can't
2121 * be called with interrupts off, or it may introduce deadlock with
2122 * smp_call_function() if an IPI is sent by the same process we are
2123 * waiting to become inactive.
2124 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002125void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
2127 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002128 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002129 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Andi Kleen3a5c3592007-10-15 17:00:14 +02002131 for (;;) {
2132 /*
2133 * We do the initial early heuristics without holding
2134 * any task-queue locks at all. We'll only try to get
2135 * the runqueue lock when things look like they will
2136 * work out!
2137 */
2138 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002139
Andi Kleen3a5c3592007-10-15 17:00:14 +02002140 /*
2141 * If the task is actively running on another CPU
2142 * still, just relax and busy-wait without holding
2143 * any locks.
2144 *
2145 * NOTE! Since we don't hold any locks, it's not
2146 * even sure that "rq" stays as the right runqueue!
2147 * But we don't care, since "task_running()" will
2148 * return false if the runqueue has changed and p
2149 * is actually now running somewhere else!
2150 */
2151 while (task_running(rq, p))
2152 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002153
Andi Kleen3a5c3592007-10-15 17:00:14 +02002154 /*
2155 * Ok, time to look more closely! We need the rq
2156 * lock now, to be *sure*. If we're wrong, we'll
2157 * just go back and repeat.
2158 */
2159 rq = task_rq_lock(p, &flags);
2160 running = task_running(rq, p);
2161 on_rq = p->se.on_rq;
2162 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002163
Andi Kleen3a5c3592007-10-15 17:00:14 +02002164 /*
2165 * Was it really running after all now that we
2166 * checked with the proper locks actually held?
2167 *
2168 * Oops. Go back and try again..
2169 */
2170 if (unlikely(running)) {
2171 cpu_relax();
2172 continue;
2173 }
2174
2175 /*
2176 * It's not enough that it's not actively running,
2177 * it must be off the runqueue _entirely_, and not
2178 * preempted!
2179 *
2180 * So if it wa still runnable (but just not actively
2181 * running right now), it's preempted, and we should
2182 * yield - it could be a while.
2183 */
2184 if (unlikely(on_rq)) {
2185 schedule_timeout_uninterruptible(1);
2186 continue;
2187 }
2188
2189 /*
2190 * Ahh, all good. It wasn't running, and it wasn't
2191 * runnable, which means that it will never become
2192 * running in the future either. We're all done!
2193 */
2194 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196}
2197
2198/***
2199 * kick_process - kick a running thread to enter/exit the kernel
2200 * @p: the to-be-kicked thread
2201 *
2202 * Cause a process which is running on another CPU to enter
2203 * kernel-mode, without any delay. (to get signals handled.)
2204 *
2205 * NOTE: this function doesnt have to take the runqueue lock,
2206 * because all it wants to ensure is that the remote task enters
2207 * the kernel. If the IPI races and the task has been migrated
2208 * to another CPU then no harm is done and the purpose has been
2209 * achieved as well.
2210 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002211void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212{
2213 int cpu;
2214
2215 preempt_disable();
2216 cpu = task_cpu(p);
2217 if ((cpu != smp_processor_id()) && task_curr(p))
2218 smp_send_reschedule(cpu);
2219 preempt_enable();
2220}
2221
2222/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002223 * Return a low guess at the load of a migration-source cpu weighted
2224 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 *
2226 * We want to under-estimate the load of migration sources, to
2227 * balance conservatively.
2228 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002229static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002230{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002231 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002232 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002233
Peter Williams2dd73a42006-06-27 02:54:34 -07002234 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002235 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002236
Ingo Molnardd41f592007-07-09 18:51:59 +02002237 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
2239
2240/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002241 * Return a high guess at the load of a migration-target cpu weighted
2242 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002244static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002245{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002246 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002247 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002248
Peter Williams2dd73a42006-06-27 02:54:34 -07002249 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002250 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002251
Ingo Molnardd41f592007-07-09 18:51:59 +02002252 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002253}
2254
2255/*
2256 * Return the average load per task on the cpu's run queue
2257 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002258static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07002259{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002260 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002261 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07002262 unsigned long n = rq->nr_running;
2263
Ingo Molnardd41f592007-07-09 18:51:59 +02002264 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265}
2266
Nick Piggin147cbb42005-06-25 14:57:19 -07002267/*
2268 * find_idlest_group finds and returns the least busy CPU group within the
2269 * domain.
2270 */
2271static struct sched_group *
2272find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2273{
2274 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2275 unsigned long min_load = ULONG_MAX, this_load = 0;
2276 int load_idx = sd->forkexec_idx;
2277 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2278
2279 do {
2280 unsigned long load, avg_load;
2281 int local_group;
2282 int i;
2283
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002284 /* Skip over this group if it has no CPUs allowed */
2285 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002286 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002287
Nick Piggin147cbb42005-06-25 14:57:19 -07002288 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07002289
2290 /* Tally up the load of all CPUs in the group */
2291 avg_load = 0;
2292
2293 for_each_cpu_mask(i, group->cpumask) {
2294 /* Bias balancing toward cpus of our domain */
2295 if (local_group)
2296 load = source_load(i, load_idx);
2297 else
2298 load = target_load(i, load_idx);
2299
2300 avg_load += load;
2301 }
2302
2303 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002304 avg_load = sg_div_cpu_power(group,
2305 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002306
2307 if (local_group) {
2308 this_load = avg_load;
2309 this = group;
2310 } else if (avg_load < min_load) {
2311 min_load = avg_load;
2312 idlest = group;
2313 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002314 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002315
2316 if (!idlest || 100*this_load < imbalance*min_load)
2317 return NULL;
2318 return idlest;
2319}
2320
2321/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002322 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002323 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002324static int
Mike Travis7c16ec52008-04-04 18:11:11 -07002325find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
2326 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07002327{
2328 unsigned long load, min_load = ULONG_MAX;
2329 int idlest = -1;
2330 int i;
2331
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002332 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07002333 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002334
Mike Travis7c16ec52008-04-04 18:11:11 -07002335 for_each_cpu_mask(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002336 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002337
2338 if (load < min_load || (load == min_load && i == this_cpu)) {
2339 min_load = load;
2340 idlest = i;
2341 }
2342 }
2343
2344 return idlest;
2345}
2346
Nick Piggin476d1392005-06-25 14:57:29 -07002347/*
2348 * sched_balance_self: balance the current task (running on cpu) in domains
2349 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2350 * SD_BALANCE_EXEC.
2351 *
2352 * Balance, ie. select the least loaded group.
2353 *
2354 * Returns the target CPU number, or the same CPU if no balancing is needed.
2355 *
2356 * preempt must be disabled.
2357 */
2358static int sched_balance_self(int cpu, int flag)
2359{
2360 struct task_struct *t = current;
2361 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002362
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002363 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002364 /*
2365 * If power savings logic is enabled for a domain, stop there.
2366 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002367 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2368 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002369 if (tmp->flags & flag)
2370 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002371 }
Nick Piggin476d1392005-06-25 14:57:29 -07002372
2373 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07002374 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07002375 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002376 int new_cpu, weight;
2377
2378 if (!(sd->flags & flag)) {
2379 sd = sd->child;
2380 continue;
2381 }
Nick Piggin476d1392005-06-25 14:57:29 -07002382
2383 span = sd->span;
2384 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002385 if (!group) {
2386 sd = sd->child;
2387 continue;
2388 }
Nick Piggin476d1392005-06-25 14:57:29 -07002389
Mike Travis7c16ec52008-04-04 18:11:11 -07002390 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002391 if (new_cpu == -1 || new_cpu == cpu) {
2392 /* Now try balancing at a lower domain level of cpu */
2393 sd = sd->child;
2394 continue;
2395 }
Nick Piggin476d1392005-06-25 14:57:29 -07002396
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002397 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002398 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07002399 sd = NULL;
2400 weight = cpus_weight(span);
2401 for_each_domain(cpu, tmp) {
2402 if (weight <= cpus_weight(tmp->span))
2403 break;
2404 if (tmp->flags & flag)
2405 sd = tmp;
2406 }
2407 /* while loop will break here if sd == NULL */
2408 }
2409
2410 return cpu;
2411}
2412
2413#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
Ingo Molnar4e655512008-05-12 21:20:52 +02002415#ifdef CONFIG_CONTEXT_SWITCH_TRACER
2416
2417void ftrace_all_fair_tasks(void *__rq, void *__tr, void *__data)
2418{
Ingo Molnar4e655512008-05-12 21:20:52 +02002419 struct task_struct *p;
Ingo Molnar24cd5d12008-05-12 21:20:52 +02002420 struct sched_entity *se;
Ingo Molnar4e655512008-05-12 21:20:52 +02002421 struct rb_node *curr;
2422 struct rq *rq = __rq;
2423
2424 curr = first_fair(&rq->cfs);
2425 if (!curr)
2426 return;
2427
Ingo Molnar24cd5d12008-05-12 21:20:52 +02002428 if (rq->cfs.curr) {
2429 p = task_of(rq->cfs.curr);
2430 __trace_special(__tr, __data,
2431 p->pid, p->se.vruntime, p->se.sum_exec_runtime);
2432 }
2433 if (rq->cfs.next) {
2434 p = task_of(rq->cfs.next);
2435 __trace_special(__tr, __data,
2436 p->pid, p->se.vruntime, p->se.sum_exec_runtime);
2437 }
2438
Ingo Molnar4e655512008-05-12 21:20:52 +02002439 while (curr) {
2440 se = rb_entry(curr, struct sched_entity, run_node);
2441 if (!entity_is_task(se))
2442 continue;
2443
2444 p = task_of(se);
2445
2446 __trace_special(__tr, __data,
2447 p->pid, p->se.vruntime, p->se.sum_exec_runtime);
2448
2449 curr = rb_next(curr);
2450 }
2451}
2452
2453#endif
2454
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 Molnar4e655512008-05-12 21:20:52 +02002529 ftrace_wake_up_task(rq, p, rq->curr);
Ingo Molnarcc367732007-10-15 17:00:18 +02002530 schedstat_inc(p, se.nr_wakeups);
2531 if (sync)
2532 schedstat_inc(p, se.nr_wakeups_sync);
2533 if (orig_cpu != cpu)
2534 schedstat_inc(p, se.nr_wakeups_migrate);
2535 if (cpu == this_cpu)
2536 schedstat_inc(p, se.nr_wakeups_local);
2537 else
2538 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002539 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002540 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 success = 1;
2542
2543out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002544 check_preempt_curr(rq, p);
2545
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002547#ifdef CONFIG_SMP
2548 if (p->sched_class->task_wake_up)
2549 p->sched_class->task_wake_up(rq, p);
2550#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551out:
2552 task_rq_unlock(rq, &flags);
2553
2554 return success;
2555}
2556
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002557int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002559 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561EXPORT_SYMBOL(wake_up_process);
2562
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002563int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564{
2565 return try_to_wake_up(p, state, 0);
2566}
2567
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568/*
2569 * Perform scheduler related setup for a newly forked process p.
2570 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002571 *
2572 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002574static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575{
Ingo Molnardd41f592007-07-09 18:51:59 +02002576 p->se.exec_start = 0;
2577 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002578 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002579 p->se.last_wakeup = 0;
2580 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002581
2582#ifdef CONFIG_SCHEDSTATS
2583 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002584 p->se.sum_sleep_runtime = 0;
2585 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002586 p->se.block_start = 0;
2587 p->se.sleep_max = 0;
2588 p->se.block_max = 0;
2589 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002590 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002591 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002592#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002593
Peter Zijlstrafa717062008-01-25 21:08:27 +01002594 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002595 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002596 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002597
Avi Kivitye107be32007-07-26 13:40:43 +02002598#ifdef CONFIG_PREEMPT_NOTIFIERS
2599 INIT_HLIST_HEAD(&p->preempt_notifiers);
2600#endif
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 /*
2603 * We mark the process as running here, but have not actually
2604 * inserted it onto the runqueue yet. This guarantees that
2605 * nobody will actually run it, and a signal or other external
2606 * event cannot wake it up and insert it on the runqueue either.
2607 */
2608 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002609}
2610
2611/*
2612 * fork()/clone()-time setup:
2613 */
2614void sched_fork(struct task_struct *p, int clone_flags)
2615{
2616 int cpu = get_cpu();
2617
2618 __sched_fork(p);
2619
2620#ifdef CONFIG_SMP
2621 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2622#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002623 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002624
2625 /*
2626 * Make sure we do not leak PI boosting priority to the child:
2627 */
2628 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002629 if (!rt_prio(p->prio))
2630 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002631
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002632#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002633 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002634 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002636#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002637 p->oncpu = 0;
2638#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002640 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002641 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002643 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644}
2645
2646/*
2647 * wake_up_new_task - wake up a newly created task for the first time.
2648 *
2649 * This function will do some initial scheduler statistics housekeeping
2650 * that must be done for every newly created context, then puts the task
2651 * on the runqueue and wakes it.
2652 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002653void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654{
2655 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002656 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
2658 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002660 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
2662 p->prio = effective_prio(p);
2663
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002664 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002665 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002668 * Let the scheduling class do new task startup
2669 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002671 p->sched_class->task_new(rq, p);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02002672 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 }
Ingo Molnar4e655512008-05-12 21:20:52 +02002674 ftrace_wake_up_task(rq, p, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02002675 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002676#ifdef CONFIG_SMP
2677 if (p->sched_class->task_wake_up)
2678 p->sched_class->task_wake_up(rq, p);
2679#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002680 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681}
2682
Avi Kivitye107be32007-07-26 13:40:43 +02002683#ifdef CONFIG_PREEMPT_NOTIFIERS
2684
2685/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002686 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2687 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002688 */
2689void preempt_notifier_register(struct preempt_notifier *notifier)
2690{
2691 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2692}
2693EXPORT_SYMBOL_GPL(preempt_notifier_register);
2694
2695/**
2696 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002697 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002698 *
2699 * This is safe to call from within a preemption notifier.
2700 */
2701void preempt_notifier_unregister(struct preempt_notifier *notifier)
2702{
2703 hlist_del(&notifier->link);
2704}
2705EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2706
2707static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2708{
2709 struct preempt_notifier *notifier;
2710 struct hlist_node *node;
2711
2712 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2713 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2714}
2715
2716static void
2717fire_sched_out_preempt_notifiers(struct task_struct *curr,
2718 struct task_struct *next)
2719{
2720 struct preempt_notifier *notifier;
2721 struct hlist_node *node;
2722
2723 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2724 notifier->ops->sched_out(notifier, next);
2725}
2726
2727#else
2728
2729static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2730{
2731}
2732
2733static void
2734fire_sched_out_preempt_notifiers(struct task_struct *curr,
2735 struct task_struct *next)
2736{
2737}
2738
2739#endif
2740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002742 * prepare_task_switch - prepare to switch tasks
2743 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002744 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002745 * @next: the task we are going to switch to.
2746 *
2747 * This is called with the rq lock held and interrupts off. It must
2748 * be paired with a subsequent finish_task_switch after the context
2749 * switch.
2750 *
2751 * prepare_task_switch sets up locking and calls architecture specific
2752 * hooks.
2753 */
Avi Kivitye107be32007-07-26 13:40:43 +02002754static inline void
2755prepare_task_switch(struct rq *rq, struct task_struct *prev,
2756 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002757{
Avi Kivitye107be32007-07-26 13:40:43 +02002758 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002759 prepare_lock_switch(rq, next);
2760 prepare_arch_switch(next);
2761}
2762
2763/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002765 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 * @prev: the thread we just switched away from.
2767 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002768 * finish_task_switch must be called after the context switch, paired
2769 * with a prepare_task_switch call before the context switch.
2770 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2771 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 *
2773 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002774 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 * with the lock held can cause deadlocks; see schedule() for
2776 * details.)
2777 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002778static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 __releases(rq->lock)
2780{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002782 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 rq->prev_mm = NULL;
2785
2786 /*
2787 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002788 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002789 * schedule one last time. The schedule call will never return, and
2790 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002791 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 * still held, otherwise prev could be scheduled on another cpu, die
2793 * there before we look at prev->state, and then the reference would
2794 * be dropped twice.
2795 * Manfred Spraul <manfred@colorfullife.com>
2796 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002797 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002798 finish_arch_switch(prev);
2799 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002800#ifdef CONFIG_SMP
2801 if (current->sched_class->post_schedule)
2802 current->sched_class->post_schedule(rq);
2803#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002804
Avi Kivitye107be32007-07-26 13:40:43 +02002805 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 if (mm)
2807 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002808 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002809 /*
2810 * Remove function-return probe instances associated with this
2811 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002812 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002813 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816}
2817
2818/**
2819 * schedule_tail - first thing a freshly forked thread must call.
2820 * @prev: the thread we just switched away from.
2821 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002822asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 __releases(rq->lock)
2824{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002825 struct rq *rq = this_rq();
2826
Nick Piggin4866cde2005-06-25 14:57:23 -07002827 finish_task_switch(rq, prev);
2828#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2829 /* In this case, finish_task_switch does not reenable preemption */
2830 preempt_enable();
2831#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002833 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834}
2835
2836/*
2837 * context_switch - switch to the new MM and the new
2838 * thread's register state.
2839 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002840static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002841context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002842 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843{
Ingo Molnardd41f592007-07-09 18:51:59 +02002844 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
Avi Kivitye107be32007-07-26 13:40:43 +02002846 prepare_task_switch(rq, prev, next);
Ingo Molnar4e655512008-05-12 21:20:52 +02002847 ftrace_ctx_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002848 mm = next->mm;
2849 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002850 /*
2851 * For paravirt, this is coupled with an exit in switch_to to
2852 * combine the page table reload and the switch backend into
2853 * one hypercall.
2854 */
2855 arch_enter_lazy_cpu_mode();
2856
Ingo Molnardd41f592007-07-09 18:51:59 +02002857 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 next->active_mm = oldmm;
2859 atomic_inc(&oldmm->mm_count);
2860 enter_lazy_tlb(oldmm, next);
2861 } else
2862 switch_mm(oldmm, mm, next);
2863
Ingo Molnardd41f592007-07-09 18:51:59 +02002864 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 rq->prev_mm = oldmm;
2867 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002868 /*
2869 * Since the runqueue lock will be released by the next
2870 * task (which is an invalid locking op but in the case
2871 * of the scheduler it's an obvious special-case), so we
2872 * do an early lockdep release here:
2873 */
2874#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002875 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002876#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
2878 /* Here we just switch the register state and the stack. */
2879 switch_to(prev, next, prev);
2880
Ingo Molnardd41f592007-07-09 18:51:59 +02002881 barrier();
2882 /*
2883 * this_rq must be evaluated again because prev may have moved
2884 * CPUs since it called schedule(), thus the 'rq' on its stack
2885 * frame will be invalid.
2886 */
2887 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
2890/*
2891 * nr_running, nr_uninterruptible and nr_context_switches:
2892 *
2893 * externally visible scheduler statistics: current number of runnable
2894 * threads, current number of uninterruptible-sleeping threads, total
2895 * number of context switches performed since bootup.
2896 */
2897unsigned long nr_running(void)
2898{
2899 unsigned long i, sum = 0;
2900
2901 for_each_online_cpu(i)
2902 sum += cpu_rq(i)->nr_running;
2903
2904 return sum;
2905}
2906
2907unsigned long nr_uninterruptible(void)
2908{
2909 unsigned long i, sum = 0;
2910
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002911 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 sum += cpu_rq(i)->nr_uninterruptible;
2913
2914 /*
2915 * Since we read the counters lockless, it might be slightly
2916 * inaccurate. Do not allow it to go below zero though:
2917 */
2918 if (unlikely((long)sum < 0))
2919 sum = 0;
2920
2921 return sum;
2922}
2923
2924unsigned long long nr_context_switches(void)
2925{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002926 int i;
2927 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002929 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 sum += cpu_rq(i)->nr_switches;
2931
2932 return sum;
2933}
2934
2935unsigned long nr_iowait(void)
2936{
2937 unsigned long i, sum = 0;
2938
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002939 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2941
2942 return sum;
2943}
2944
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002945unsigned long nr_active(void)
2946{
2947 unsigned long i, running = 0, uninterruptible = 0;
2948
2949 for_each_online_cpu(i) {
2950 running += cpu_rq(i)->nr_running;
2951 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2952 }
2953
2954 if (unlikely((long)uninterruptible < 0))
2955 uninterruptible = 0;
2956
2957 return running + uninterruptible;
2958}
2959
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002961 * Update rq->cpu_load[] statistics. This function is usually called every
2962 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002963 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002964static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002965{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002966 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002967 int i, scale;
2968
2969 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002970
2971 /* Update our load: */
2972 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2973 unsigned long old_load, new_load;
2974
2975 /* scale is effectively 1 << i now, and >> i divides by scale */
2976
2977 old_load = this_rq->cpu_load[i];
2978 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002979 /*
2980 * Round up the averaging division if load is increasing. This
2981 * prevents us from getting stuck on 9 if the load is 10, for
2982 * example.
2983 */
2984 if (new_load > old_load)
2985 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002986 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2987 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002988}
2989
Ingo Molnardd41f592007-07-09 18:51:59 +02002990#ifdef CONFIG_SMP
2991
Ingo Molnar48f24c42006-07-03 00:25:40 -07002992/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 * double_rq_lock - safely lock two runqueues
2994 *
2995 * Note this does not disable interrupts like task_rq_lock,
2996 * you need to do so manually before calling.
2997 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002998static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 __acquires(rq1->lock)
3000 __acquires(rq2->lock)
3001{
Kirill Korotaev054b9102006-12-10 02:20:11 -08003002 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 if (rq1 == rq2) {
3004 spin_lock(&rq1->lock);
3005 __acquire(rq2->lock); /* Fake it out ;) */
3006 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003007 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 spin_lock(&rq1->lock);
3009 spin_lock(&rq2->lock);
3010 } else {
3011 spin_lock(&rq2->lock);
3012 spin_lock(&rq1->lock);
3013 }
3014 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003015 update_rq_clock(rq1);
3016 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017}
3018
3019/*
3020 * double_rq_unlock - safely unlock two runqueues
3021 *
3022 * Note this does not restore interrupts like task_rq_unlock,
3023 * you need to do so manually after calling.
3024 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003025static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 __releases(rq1->lock)
3027 __releases(rq2->lock)
3028{
3029 spin_unlock(&rq1->lock);
3030 if (rq1 != rq2)
3031 spin_unlock(&rq2->lock);
3032 else
3033 __release(rq2->lock);
3034}
3035
3036/*
3037 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
3038 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01003039static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 __releases(this_rq->lock)
3041 __acquires(busiest->lock)
3042 __acquires(this_rq->lock)
3043{
Steven Rostedte8fa1362008-01-25 21:08:05 +01003044 int ret = 0;
3045
Kirill Korotaev054b9102006-12-10 02:20:11 -08003046 if (unlikely(!irqs_disabled())) {
3047 /* printk() doesn't work good under rq->lock */
3048 spin_unlock(&this_rq->lock);
3049 BUG_ON(1);
3050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003052 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 spin_unlock(&this_rq->lock);
3054 spin_lock(&busiest->lock);
3055 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01003056 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 } else
3058 spin_lock(&busiest->lock);
3059 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01003060 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061}
3062
3063/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 * If dest_cpu is allowed for this process, migrate the task to it.
3065 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003066 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 * the cpu_allowed mask is restored.
3068 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003069static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003071 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003073 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
3075 rq = task_rq_lock(p, &flags);
3076 if (!cpu_isset(dest_cpu, p->cpus_allowed)
3077 || unlikely(cpu_is_offline(dest_cpu)))
3078 goto out;
3079
3080 /* force the process onto the specified CPU */
3081 if (migrate_task(p, dest_cpu, &req)) {
3082 /* Need to wait for migration thread (might exit: take ref). */
3083 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003084
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 get_task_struct(mt);
3086 task_rq_unlock(rq, &flags);
3087 wake_up_process(mt);
3088 put_task_struct(mt);
3089 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07003090
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 return;
3092 }
3093out:
3094 task_rq_unlock(rq, &flags);
3095}
3096
3097/*
Nick Piggin476d1392005-06-25 14:57:29 -07003098 * sched_exec - execve() is a valuable balancing opportunity, because at
3099 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 */
3101void sched_exec(void)
3102{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003104 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003106 if (new_cpu != this_cpu)
3107 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108}
3109
3110/*
3111 * pull_task - move a task from a remote runqueue to the local runqueue.
3112 * Both runqueues must be locked.
3113 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003114static void pull_task(struct rq *src_rq, struct task_struct *p,
3115 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003117 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003119 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 /*
3121 * Note that idle threads have a prio of MAX_PRIO, for this test
3122 * to be always true for them.
3123 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003124 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125}
3126
3127/*
3128 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
3129 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003130static
Ingo Molnar70b97a72006-07-03 00:25:42 -07003131int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003132 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003133 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134{
3135 /*
3136 * We do not migrate tasks that are:
3137 * 1) running (obviously), or
3138 * 2) cannot be migrated to this CPU due to cpus_allowed, or
3139 * 3) are cache-hot on their current CPU.
3140 */
Ingo Molnarcc367732007-10-15 17:00:18 +02003141 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
3142 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003144 }
Nick Piggin81026792005-06-25 14:57:07 -07003145 *all_pinned = 0;
3146
Ingo Molnarcc367732007-10-15 17:00:18 +02003147 if (task_running(rq, p)) {
3148 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07003149 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Ingo Molnarda84d962007-10-15 17:00:18 +02003152 /*
3153 * Aggressive migration if:
3154 * 1) task is cache cold, or
3155 * 2) too many balance attempts have failed.
3156 */
3157
Ingo Molnar6bc16652007-10-15 17:00:18 +02003158 if (!task_hot(p, rq->clock, sd) ||
3159 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003160#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02003161 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003162 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02003163 schedstat_inc(p, se.nr_forced_migrations);
3164 }
Ingo Molnarda84d962007-10-15 17:00:18 +02003165#endif
3166 return 1;
3167 }
3168
Ingo Molnarcc367732007-10-15 17:00:18 +02003169 if (task_hot(p, rq->clock, sd)) {
3170 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02003171 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 return 1;
3174}
3175
Peter Williamse1d14842007-10-24 18:23:51 +02003176static unsigned long
3177balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3178 unsigned long max_load_move, struct sched_domain *sd,
3179 enum cpu_idle_type idle, int *all_pinned,
3180 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003181{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003182 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02003183 struct task_struct *p;
3184 long rem_load_move = max_load_move;
3185
Peter Williamse1d14842007-10-24 18:23:51 +02003186 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003187 goto out;
3188
3189 pinned = 1;
3190
3191 /*
3192 * Start the load-balancing iterator:
3193 */
3194 p = iterator->start(iterator->arg);
3195next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003196 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003197 goto out;
3198 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003199 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02003200 * skip a task if it will be the highest priority task (i.e. smallest
3201 * prio value) on its new queue regardless of its load weight
3202 */
3203 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
3204 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003205 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003206 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003207 p = iterator->next(iterator->arg);
3208 goto next;
3209 }
3210
3211 pull_task(busiest, p, this_rq, this_cpu);
3212 pulled++;
3213 rem_load_move -= p->se.load.weight;
3214
3215 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003216 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003217 */
Peter Williamse1d14842007-10-24 18:23:51 +02003218 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003219 if (p->prio < *this_best_prio)
3220 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003221 p = iterator->next(iterator->arg);
3222 goto next;
3223 }
3224out:
3225 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003226 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003227 * so we can safely collect pull_task() stats here rather than
3228 * inside pull_task().
3229 */
3230 schedstat_add(sd, lb_gained[idle], pulled);
3231
3232 if (all_pinned)
3233 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003234
3235 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003236}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003237
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238/*
Peter Williams43010652007-08-09 11:16:46 +02003239 * move_tasks tries to move up to max_load_move weighted load from busiest to
3240 * this_rq, as part of a balancing operation within domain "sd".
3241 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 *
3243 * Called with both runqueues locked.
3244 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003245static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003246 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003247 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003248 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003250 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003251 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003252 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Ingo Molnardd41f592007-07-09 18:51:59 +02003254 do {
Peter Williams43010652007-08-09 11:16:46 +02003255 total_load_moved +=
3256 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003257 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003258 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003259 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02003260 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Peter Williams43010652007-08-09 11:16:46 +02003262 return total_load_moved > 0;
3263}
3264
Peter Williamse1d14842007-10-24 18:23:51 +02003265static int
3266iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3267 struct sched_domain *sd, enum cpu_idle_type idle,
3268 struct rq_iterator *iterator)
3269{
3270 struct task_struct *p = iterator->start(iterator->arg);
3271 int pinned = 0;
3272
3273 while (p) {
3274 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3275 pull_task(busiest, p, this_rq, this_cpu);
3276 /*
3277 * Right now, this is only the second place pull_task()
3278 * is called, so we can safely collect pull_task()
3279 * stats here rather than inside pull_task().
3280 */
3281 schedstat_inc(sd, lb_gained[idle]);
3282
3283 return 1;
3284 }
3285 p = iterator->next(iterator->arg);
3286 }
3287
3288 return 0;
3289}
3290
Peter Williams43010652007-08-09 11:16:46 +02003291/*
3292 * move_one_task tries to move exactly one task from busiest to this_rq, as
3293 * part of active balancing operations within "domain".
3294 * Returns 1 if successful and 0 otherwise.
3295 *
3296 * Called with both runqueues locked.
3297 */
3298static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3299 struct sched_domain *sd, enum cpu_idle_type idle)
3300{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003301 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003302
3303 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003304 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003305 return 1;
3306
3307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308}
3309
3310/*
3311 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003312 * domain. It calculates and returns the amount of weighted load which
3313 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 */
3315static struct sched_group *
3316find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003317 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003318 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319{
3320 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3321 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003322 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003323 unsigned long busiest_load_per_task, busiest_nr_running;
3324 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003325 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003326#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3327 int power_savings_balance = 1;
3328 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3329 unsigned long min_nr_running = ULONG_MAX;
3330 struct sched_group *group_min = NULL, *group_leader = NULL;
3331#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
3333 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003334 busiest_load_per_task = busiest_nr_running = 0;
3335 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003336 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003337 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003338 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003339 load_idx = sd->newidle_idx;
3340 else
3341 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342
3343 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003344 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 int local_group;
3346 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003347 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003348 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003349 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
3351 local_group = cpu_isset(this_cpu, group->cpumask);
3352
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003353 if (local_group)
3354 balance_cpu = first_cpu(group->cpumask);
3355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003357 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02003358 max_cpu_load = 0;
3359 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
3361 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003362 struct rq *rq;
3363
3364 if (!cpu_isset(i, *cpus))
3365 continue;
3366
3367 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003368
Suresh Siddha9439aab2007-07-19 21:28:35 +02003369 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003370 *sd_idle = 0;
3371
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003373 if (local_group) {
3374 if (idle_cpu(i) && !first_idle_cpu) {
3375 first_idle_cpu = 1;
3376 balance_cpu = i;
3377 }
3378
Nick Piggina2000572006-02-10 01:51:02 -08003379 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003380 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003381 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003382 if (load > max_cpu_load)
3383 max_cpu_load = load;
3384 if (min_cpu_load > load)
3385 min_cpu_load = load;
3386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387
3388 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003389 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003390 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 }
3392
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003393 /*
3394 * First idle cpu or the first cpu(busiest) in this sched group
3395 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003396 * domains. In the newly idle case, we will allow all the cpu's
3397 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003398 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003399 if (idle != CPU_NEWLY_IDLE && local_group &&
3400 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003401 *balance = 0;
3402 goto ret;
3403 }
3404
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003406 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
3408 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003409 avg_load = sg_div_cpu_power(group,
3410 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
Ken Chen908a7c12007-10-17 16:55:11 +02003412 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
3413 __group_imb = 1;
3414
Eric Dumazet5517d862007-05-08 00:32:57 -07003415 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003416
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 if (local_group) {
3418 this_load = avg_load;
3419 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003420 this_nr_running = sum_nr_running;
3421 this_load_per_task = sum_weighted_load;
3422 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003423 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 max_load = avg_load;
3425 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003426 busiest_nr_running = sum_nr_running;
3427 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003428 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003430
3431#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3432 /*
3433 * Busy processors will not participate in power savings
3434 * balance.
3435 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003436 if (idle == CPU_NOT_IDLE ||
3437 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3438 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003439
3440 /*
3441 * If the local group is idle or completely loaded
3442 * no need to do power savings balance at this domain
3443 */
3444 if (local_group && (this_nr_running >= group_capacity ||
3445 !this_nr_running))
3446 power_savings_balance = 0;
3447
Ingo Molnardd41f592007-07-09 18:51:59 +02003448 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003449 * If a group is already running at full capacity or idle,
3450 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003451 */
3452 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003453 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003454 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003455
Ingo Molnardd41f592007-07-09 18:51:59 +02003456 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003457 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003458 * This is the group from where we need to pick up the load
3459 * for saving power
3460 */
3461 if ((sum_nr_running < min_nr_running) ||
3462 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003463 first_cpu(group->cpumask) <
3464 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003465 group_min = group;
3466 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003467 min_load_per_task = sum_weighted_load /
3468 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003469 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003470
Ingo Molnardd41f592007-07-09 18:51:59 +02003471 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003472 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003473 * capacity but still has some space to pick up some load
3474 * from other group and save more power
3475 */
3476 if (sum_nr_running <= group_capacity - 1) {
3477 if (sum_nr_running > leader_nr_running ||
3478 (sum_nr_running == leader_nr_running &&
3479 first_cpu(group->cpumask) >
3480 first_cpu(group_leader->cpumask))) {
3481 group_leader = group;
3482 leader_nr_running = sum_nr_running;
3483 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003484 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003485group_next:
3486#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 group = group->next;
3488 } while (group != sd->groups);
3489
Peter Williams2dd73a42006-06-27 02:54:34 -07003490 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 goto out_balanced;
3492
3493 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3494
3495 if (this_load >= avg_load ||
3496 100*max_load <= sd->imbalance_pct*this_load)
3497 goto out_balanced;
3498
Peter Williams2dd73a42006-06-27 02:54:34 -07003499 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003500 if (group_imb)
3501 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3502
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 /*
3504 * We're trying to get all the cpus to the average_load, so we don't
3505 * want to push ourselves above the average load, nor do we wish to
3506 * reduce the max loaded cpu below the average load, as either of these
3507 * actions would just result in more rebalancing later, and ping-pong
3508 * tasks around. Thus we look for the minimum possible imbalance.
3509 * Negative imbalances (*we* are more loaded than anyone else) will
3510 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003511 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 * appear as very large values with unsigned longs.
3513 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003514 if (max_load <= busiest_load_per_task)
3515 goto out_balanced;
3516
3517 /*
3518 * In the presence of smp nice balancing, certain scenarios can have
3519 * max load less than avg load(as we skip the groups at or below
3520 * its cpu_power, while calculating max_load..)
3521 */
3522 if (max_load < avg_load) {
3523 *imbalance = 0;
3524 goto small_imbalance;
3525 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003526
3527 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003528 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003529
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003531 *imbalance = min(max_pull * busiest->__cpu_power,
3532 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 / SCHED_LOAD_SCALE;
3534
Peter Williams2dd73a42006-06-27 02:54:34 -07003535 /*
3536 * if *imbalance is less than the average load per runnable task
3537 * there is no gaurantee that any tasks will be moved so we'll have
3538 * a think about bumping its value to force at least one task to be
3539 * moved
3540 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003541 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003542 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003543 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
Peter Williams2dd73a42006-06-27 02:54:34 -07003545small_imbalance:
3546 pwr_move = pwr_now = 0;
3547 imbn = 2;
3548 if (this_nr_running) {
3549 this_load_per_task /= this_nr_running;
3550 if (busiest_load_per_task > this_load_per_task)
3551 imbn = 1;
3552 } else
3553 this_load_per_task = SCHED_LOAD_SCALE;
3554
Ingo Molnardd41f592007-07-09 18:51:59 +02003555 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3556 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003557 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 return busiest;
3559 }
3560
3561 /*
3562 * OK, we don't have enough imbalance to justify moving tasks,
3563 * however we may be able to increase total CPU power used by
3564 * moving them.
3565 */
3566
Eric Dumazet5517d862007-05-08 00:32:57 -07003567 pwr_now += busiest->__cpu_power *
3568 min(busiest_load_per_task, max_load);
3569 pwr_now += this->__cpu_power *
3570 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 pwr_now /= SCHED_LOAD_SCALE;
3572
3573 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003574 tmp = sg_div_cpu_power(busiest,
3575 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003577 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003578 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
3580 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003581 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003582 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003583 tmp = sg_div_cpu_power(this,
3584 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003586 tmp = sg_div_cpu_power(this,
3587 busiest_load_per_task * SCHED_LOAD_SCALE);
3588 pwr_move += this->__cpu_power *
3589 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 pwr_move /= SCHED_LOAD_SCALE;
3591
3592 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003593 if (pwr_move > pwr_now)
3594 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 }
3596
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 return busiest;
3598
3599out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003600#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003601 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003602 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003604 if (this == group_leader && group_leader != group_min) {
3605 *imbalance = min_load_per_task;
3606 return group_min;
3607 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003608#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003609ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 *imbalance = 0;
3611 return NULL;
3612}
3613
3614/*
3615 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3616 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003617static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003618find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003619 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003621 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003622 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 int i;
3624
3625 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003626 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003627
3628 if (!cpu_isset(i, *cpus))
3629 continue;
3630
Ingo Molnar48f24c42006-07-03 00:25:40 -07003631 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003632 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Ingo Molnardd41f592007-07-09 18:51:59 +02003634 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003635 continue;
3636
Ingo Molnardd41f592007-07-09 18:51:59 +02003637 if (wl > max_load) {
3638 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003639 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 }
3641 }
3642
3643 return busiest;
3644}
3645
3646/*
Nick Piggin77391d72005-06-25 14:57:30 -07003647 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3648 * so long as it is large enough.
3649 */
3650#define MAX_PINNED_INTERVAL 512
3651
3652/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3654 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003656static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003657 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003658 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659{
Peter Williams43010652007-08-09 11:16:46 +02003660 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003663 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003664 unsigned long flags;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003665 int unlock_aggregate;
Nick Piggin5969fe02005-09-10 00:26:19 -07003666
Mike Travis7c16ec52008-04-04 18:11:11 -07003667 cpus_setall(*cpus);
3668
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003669 unlock_aggregate = get_aggregate(sd);
3670
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003671 /*
3672 * When power savings policy is enabled for the parent domain, idle
3673 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003674 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003675 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003676 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003677 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003678 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003679 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680
Ingo Molnar2d723762007-10-15 17:00:12 +02003681 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003683redo:
3684 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003685 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003686
Chen, Kenneth W06066712006-12-10 02:20:35 -08003687 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003688 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003689
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 if (!group) {
3691 schedstat_inc(sd, lb_nobusyg[idle]);
3692 goto out_balanced;
3693 }
3694
Mike Travis7c16ec52008-04-04 18:11:11 -07003695 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 if (!busiest) {
3697 schedstat_inc(sd, lb_nobusyq[idle]);
3698 goto out_balanced;
3699 }
3700
Nick Piggindb935db2005-06-25 14:57:11 -07003701 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702
3703 schedstat_add(sd, lb_imbalance[idle], imbalance);
3704
Peter Williams43010652007-08-09 11:16:46 +02003705 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 if (busiest->nr_running > 1) {
3707 /*
3708 * Attempt to move tasks. If find_busiest_group has found
3709 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003710 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 * correctly treated as an imbalance.
3712 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003713 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003714 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003715 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003716 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003717 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003718 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003719
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003720 /*
3721 * some other cpu did the load balance for us.
3722 */
Peter Williams43010652007-08-09 11:16:46 +02003723 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003724 resched_cpu(this_cpu);
3725
Nick Piggin81026792005-06-25 14:57:07 -07003726 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003727 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003728 cpu_clear(cpu_of(busiest), *cpus);
3729 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003730 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003731 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 }
Nick Piggin81026792005-06-25 14:57:07 -07003734
Peter Williams43010652007-08-09 11:16:46 +02003735 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 schedstat_inc(sd, lb_failed[idle]);
3737 sd->nr_balance_failed++;
3738
3739 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003741 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003742
3743 /* don't kick the migration_thread, if the curr
3744 * task on busiest cpu can't be moved to this_cpu
3745 */
3746 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003747 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003748 all_pinned = 1;
3749 goto out_one_pinned;
3750 }
3751
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 if (!busiest->active_balance) {
3753 busiest->active_balance = 1;
3754 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003755 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003757 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003758 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 wake_up_process(busiest->migration_thread);
3760
3761 /*
3762 * We've kicked active balancing, reset the failure
3763 * counter.
3764 */
Nick Piggin39507452005-06-25 14:57:09 -07003765 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 }
Nick Piggin81026792005-06-25 14:57:07 -07003767 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 sd->nr_balance_failed = 0;
3769
Nick Piggin81026792005-06-25 14:57:07 -07003770 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 /* We were unbalanced, so reset the balancing interval */
3772 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003773 } else {
3774 /*
3775 * If we've begun active balancing, start to back off. This
3776 * case may not be covered by the all_pinned logic if there
3777 * is only 1 task on the busy runqueue (because we don't call
3778 * move_tasks).
3779 */
3780 if (sd->balance_interval < sd->max_interval)
3781 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 }
3783
Peter Williams43010652007-08-09 11:16:46 +02003784 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003785 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003786 ld_moved = -1;
3787
3788 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
3790out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 schedstat_inc(sd, lb_balanced[idle]);
3792
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003793 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003794
3795out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003797 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3798 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 sd->balance_interval *= 2;
3800
Ingo Molnar48f24c42006-07-03 00:25:40 -07003801 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003802 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003803 ld_moved = -1;
3804 else
3805 ld_moved = 0;
3806out:
3807 if (unlock_aggregate)
3808 put_aggregate(sd);
3809 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810}
3811
3812/*
3813 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3814 * tasks if there is an imbalance.
3815 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003816 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 * this_rq is locked.
3818 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003819static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003820load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3821 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822{
3823 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003824 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003826 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003827 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003828 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003829
3830 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003831
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003832 /*
3833 * When power savings policy is enabled for the parent domain, idle
3834 * sibling can pick up load irrespective of busy siblings. In this case,
3835 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003836 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003837 */
3838 if (sd->flags & SD_SHARE_CPUPOWER &&
3839 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003840 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Ingo Molnar2d723762007-10-15 17:00:12 +02003842 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003843redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003844 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003845 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003847 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003848 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 }
3850
Mike Travis7c16ec52008-04-04 18:11:11 -07003851 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003852 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003853 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003854 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 }
3856
Nick Piggindb935db2005-06-25 14:57:11 -07003857 BUG_ON(busiest == this_rq);
3858
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003859 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003860
Peter Williams43010652007-08-09 11:16:46 +02003861 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003862 if (busiest->nr_running > 1) {
3863 /* Attempt to move tasks */
3864 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003865 /* this_rq->clock is already updated */
3866 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003867 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003868 imbalance, sd, CPU_NEWLY_IDLE,
3869 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003870 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003871
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003872 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003873 cpu_clear(cpu_of(busiest), *cpus);
3874 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003875 goto redo;
3876 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003877 }
3878
Peter Williams43010652007-08-09 11:16:46 +02003879 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003880 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003881 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3882 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003883 return -1;
3884 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003885 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
Peter Williams43010652007-08-09 11:16:46 +02003887 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003888
3889out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003890 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003891 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003892 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003893 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003894 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003895
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003896 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897}
3898
3899/*
3900 * idle_balance is called by schedule() if this_cpu is about to become
3901 * idle. Attempts to pull tasks from other CPUs.
3902 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003903static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904{
3905 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003906 int pulled_task = -1;
3907 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003908 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
3910 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003911 unsigned long interval;
3912
3913 if (!(sd->flags & SD_LOAD_BALANCE))
3914 continue;
3915
3916 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003917 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003918 pulled_task = load_balance_newidle(this_cpu, this_rq,
3919 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003920
3921 interval = msecs_to_jiffies(sd->balance_interval);
3922 if (time_after(next_balance, sd->last_balance + interval))
3923 next_balance = sd->last_balance + interval;
3924 if (pulled_task)
3925 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003927 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003928 /*
3929 * We are going idle. next_balance may be set based on
3930 * a busy processor. So reset next_balance.
3931 */
3932 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934}
3935
3936/*
3937 * active_load_balance is run by migration threads. It pushes running tasks
3938 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3939 * running on each physical CPU where possible, and avoids physical /
3940 * logical imbalances.
3941 *
3942 * Called with busiest_rq locked.
3943 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003944static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945{
Nick Piggin39507452005-06-25 14:57:09 -07003946 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003947 struct sched_domain *sd;
3948 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003949
Ingo Molnar48f24c42006-07-03 00:25:40 -07003950 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003951 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003952 return;
3953
3954 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955
3956 /*
Nick Piggin39507452005-06-25 14:57:09 -07003957 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003958 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003959 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 */
Nick Piggin39507452005-06-25 14:57:09 -07003961 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962
Nick Piggin39507452005-06-25 14:57:09 -07003963 /* move a task from busiest_rq to target_rq */
3964 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003965 update_rq_clock(busiest_rq);
3966 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967
Nick Piggin39507452005-06-25 14:57:09 -07003968 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003969 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003970 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003971 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003972 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974
Ingo Molnar48f24c42006-07-03 00:25:40 -07003975 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003976 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
Peter Williams43010652007-08-09 11:16:46 +02003978 if (move_one_task(target_rq, target_cpu, busiest_rq,
3979 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003980 schedstat_inc(sd, alb_pushed);
3981 else
3982 schedstat_inc(sd, alb_failed);
3983 }
Nick Piggin39507452005-06-25 14:57:09 -07003984 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985}
3986
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003987#ifdef CONFIG_NO_HZ
3988static struct {
3989 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003990 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003991} nohz ____cacheline_aligned = {
3992 .load_balancer = ATOMIC_INIT(-1),
3993 .cpu_mask = CPU_MASK_NONE,
3994};
3995
Christoph Lameter7835b982006-12-10 02:20:22 -08003996/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003997 * This routine will try to nominate the ilb (idle load balancing)
3998 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3999 * load balancing on behalf of all those cpus. If all the cpus in the system
4000 * go into this tickless mode, then there will be no ilb owner (as there is
4001 * no need for one) and all the cpus will sleep till the next wakeup event
4002 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08004003 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004004 * For the ilb owner, tick is not stopped. And this tick will be used
4005 * for idle load balancing. ilb owner will still be part of
4006 * nohz.cpu_mask..
4007 *
4008 * While stopping the tick, this cpu will become the ilb owner if there
4009 * is no other owner. And will be the owner till that cpu becomes busy
4010 * or if all cpus in the system stop their ticks at which point
4011 * there is no need for ilb owner.
4012 *
4013 * When the ilb owner becomes busy, it nominates another owner, during the
4014 * next busy scheduler_tick()
4015 */
4016int select_nohz_load_balancer(int stop_tick)
4017{
4018 int cpu = smp_processor_id();
4019
4020 if (stop_tick) {
4021 cpu_set(cpu, nohz.cpu_mask);
4022 cpu_rq(cpu)->in_nohz_recently = 1;
4023
4024 /*
4025 * If we are going offline and still the leader, give up!
4026 */
4027 if (cpu_is_offline(cpu) &&
4028 atomic_read(&nohz.load_balancer) == cpu) {
4029 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4030 BUG();
4031 return 0;
4032 }
4033
4034 /* time for ilb owner also to sleep */
4035 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4036 if (atomic_read(&nohz.load_balancer) == cpu)
4037 atomic_set(&nohz.load_balancer, -1);
4038 return 0;
4039 }
4040
4041 if (atomic_read(&nohz.load_balancer) == -1) {
4042 /* make me the ilb owner */
4043 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
4044 return 1;
4045 } else if (atomic_read(&nohz.load_balancer) == cpu)
4046 return 1;
4047 } else {
4048 if (!cpu_isset(cpu, nohz.cpu_mask))
4049 return 0;
4050
4051 cpu_clear(cpu, nohz.cpu_mask);
4052
4053 if (atomic_read(&nohz.load_balancer) == cpu)
4054 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4055 BUG();
4056 }
4057 return 0;
4058}
4059#endif
4060
4061static DEFINE_SPINLOCK(balancing);
4062
4063/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004064 * It checks each scheduling domain to see if it is due to be balanced,
4065 * and initiates a balancing operation if so.
4066 *
4067 * Balancing parameters are set up in arch_init_sched_domains.
4068 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004069static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08004070{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004071 int balance = 1;
4072 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08004073 unsigned long interval;
4074 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004075 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08004076 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004077 int update_next_balance = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07004078 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004080 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 if (!(sd->flags & SD_LOAD_BALANCE))
4082 continue;
4083
4084 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004085 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 interval *= sd->busy_factor;
4087
4088 /* scale ms to jiffies */
4089 interval = msecs_to_jiffies(interval);
4090 if (unlikely(!interval))
4091 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02004092 if (interval > HZ*NR_CPUS/10)
4093 interval = HZ*NR_CPUS/10;
4094
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095
Christoph Lameter08c183f2006-12-10 02:20:29 -08004096 if (sd->flags & SD_SERIALIZE) {
4097 if (!spin_trylock(&balancing))
4098 goto out;
4099 }
4100
Christoph Lameterc9819f42006-12-10 02:20:25 -08004101 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07004102 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004103 /*
4104 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07004105 * longer idle, or one of our SMT siblings is
4106 * not idle.
4107 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004108 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004110 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08004112 if (sd->flags & SD_SERIALIZE)
4113 spin_unlock(&balancing);
4114out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02004115 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08004116 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004117 update_next_balance = 1;
4118 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004119
4120 /*
4121 * Stop the load balance at this level. There is another
4122 * CPU in our sched group which is doing load balancing more
4123 * actively.
4124 */
4125 if (!balance)
4126 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004128
4129 /*
4130 * next_balance will be updated only when there is a need.
4131 * When the cpu is attached to null domain for ex, it will not be
4132 * updated.
4133 */
4134 if (likely(update_next_balance))
4135 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004136}
4137
4138/*
4139 * run_rebalance_domains is triggered when needed from the scheduler tick.
4140 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4141 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4142 */
4143static void run_rebalance_domains(struct softirq_action *h)
4144{
Ingo Molnardd41f592007-07-09 18:51:59 +02004145 int this_cpu = smp_processor_id();
4146 struct rq *this_rq = cpu_rq(this_cpu);
4147 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4148 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004149
Ingo Molnardd41f592007-07-09 18:51:59 +02004150 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004151
4152#ifdef CONFIG_NO_HZ
4153 /*
4154 * If this cpu is the owner for idle load balancing, then do the
4155 * balancing on behalf of the other idle cpus whose ticks are
4156 * stopped.
4157 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004158 if (this_rq->idle_at_tick &&
4159 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004160 cpumask_t cpus = nohz.cpu_mask;
4161 struct rq *rq;
4162 int balance_cpu;
4163
Ingo Molnardd41f592007-07-09 18:51:59 +02004164 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004165 for_each_cpu_mask(balance_cpu, cpus) {
4166 /*
4167 * If this cpu gets work to do, stop the load balancing
4168 * work being done for other cpus. Next load
4169 * balancing owner will pick it up.
4170 */
4171 if (need_resched())
4172 break;
4173
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004174 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004175
4176 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004177 if (time_after(this_rq->next_balance, rq->next_balance))
4178 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004179 }
4180 }
4181#endif
4182}
4183
4184/*
4185 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4186 *
4187 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4188 * idle load balancing owner or decide to stop the periodic load balancing,
4189 * if the whole system is idle.
4190 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004191static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004192{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004193#ifdef CONFIG_NO_HZ
4194 /*
4195 * If we were in the nohz mode recently and busy at the current
4196 * scheduler tick, then check if we need to nominate new idle
4197 * load balancer.
4198 */
4199 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4200 rq->in_nohz_recently = 0;
4201
4202 if (atomic_read(&nohz.load_balancer) == cpu) {
4203 cpu_clear(cpu, nohz.cpu_mask);
4204 atomic_set(&nohz.load_balancer, -1);
4205 }
4206
4207 if (atomic_read(&nohz.load_balancer) == -1) {
4208 /*
4209 * simple selection for now: Nominate the
4210 * first cpu in the nohz list to be the next
4211 * ilb owner.
4212 *
4213 * TBD: Traverse the sched domains and nominate
4214 * the nearest cpu in the nohz.cpu_mask.
4215 */
4216 int ilb = first_cpu(nohz.cpu_mask);
4217
Mike Travis434d53b2008-04-04 18:11:04 -07004218 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004219 resched_cpu(ilb);
4220 }
4221 }
4222
4223 /*
4224 * If this cpu is idle and doing idle load balancing for all the
4225 * cpus with ticks stopped, is it time for that to stop?
4226 */
4227 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
4228 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4229 resched_cpu(cpu);
4230 return;
4231 }
4232
4233 /*
4234 * If this cpu is idle and the idle load balancing is done by
4235 * someone else, then no need raise the SCHED_SOFTIRQ
4236 */
4237 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
4238 cpu_isset(cpu, nohz.cpu_mask))
4239 return;
4240#endif
4241 if (time_after_eq(jiffies, rq->next_balance))
4242 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243}
Ingo Molnardd41f592007-07-09 18:51:59 +02004244
4245#else /* CONFIG_SMP */
4246
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247/*
4248 * on UP we do not need to balance between CPUs:
4249 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004250static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251{
4252}
Ingo Molnardd41f592007-07-09 18:51:59 +02004253
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254#endif
4255
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256DEFINE_PER_CPU(struct kernel_stat, kstat);
4257
4258EXPORT_PER_CPU_SYMBOL(kstat);
4259
4260/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02004261 * Return p->sum_exec_runtime plus any more ns on the sched_clock
4262 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02004264unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004267 u64 ns, delta_exec;
4268 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004269
Ingo Molnar41b86e92007-07-09 18:51:58 +02004270 rq = task_rq_lock(p, &flags);
4271 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004272 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02004273 update_rq_clock(rq);
4274 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004275 if ((s64)delta_exec > 0)
4276 ns += delta_exec;
4277 }
4278 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004279
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 return ns;
4281}
4282
4283/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 * Account user cpu time to a process.
4285 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 * @cputime: the cpu time spent in user space since the last update
4287 */
4288void account_user_time(struct task_struct *p, cputime_t cputime)
4289{
4290 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4291 cputime64_t tmp;
4292
4293 p->utime = cputime_add(p->utime, cputime);
4294
4295 /* Add user time to cpustat. */
4296 tmp = cputime_to_cputime64(cputime);
4297 if (TASK_NICE(p) > 0)
4298 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4299 else
4300 cpustat->user = cputime64_add(cpustat->user, tmp);
4301}
4302
4303/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004304 * Account guest cpu time to a process.
4305 * @p: the process that the cpu time gets accounted to
4306 * @cputime: the cpu time spent in virtual machine since the last update
4307 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004308static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004309{
4310 cputime64_t tmp;
4311 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4312
4313 tmp = cputime_to_cputime64(cputime);
4314
4315 p->utime = cputime_add(p->utime, cputime);
4316 p->gtime = cputime_add(p->gtime, cputime);
4317
4318 cpustat->user = cputime64_add(cpustat->user, tmp);
4319 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4320}
4321
4322/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004323 * Account scaled user cpu time to a process.
4324 * @p: the process that the cpu time gets accounted to
4325 * @cputime: the cpu time spent in user space since the last update
4326 */
4327void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4328{
4329 p->utimescaled = cputime_add(p->utimescaled, cputime);
4330}
4331
4332/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 * Account system cpu time to a process.
4334 * @p: the process that the cpu time gets accounted to
4335 * @hardirq_offset: the offset to subtract from hardirq_count()
4336 * @cputime: the cpu time spent in kernel space since the last update
4337 */
4338void account_system_time(struct task_struct *p, int hardirq_offset,
4339 cputime_t cputime)
4340{
4341 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004342 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 cputime64_t tmp;
4344
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004345 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
4346 account_guest_time(p, cputime);
4347 return;
4348 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004349
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 p->stime = cputime_add(p->stime, cputime);
4351
4352 /* Add system time to cpustat. */
4353 tmp = cputime_to_cputime64(cputime);
4354 if (hardirq_count() - hardirq_offset)
4355 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4356 else if (softirq_count())
4357 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004358 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004360 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4362 else
4363 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4364 /* Account for system time used */
4365 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366}
4367
4368/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004369 * Account scaled system cpu time to a process.
4370 * @p: the process that the cpu time gets accounted to
4371 * @hardirq_offset: the offset to subtract from hardirq_count()
4372 * @cputime: the cpu time spent in kernel space since the last update
4373 */
4374void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4375{
4376 p->stimescaled = cputime_add(p->stimescaled, cputime);
4377}
4378
4379/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 * Account for involuntary wait time.
4381 * @p: the process from which the cpu time has been stolen
4382 * @steal: the cpu time spent in involuntary wait
4383 */
4384void account_steal_time(struct task_struct *p, cputime_t steal)
4385{
4386 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4387 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004388 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
4390 if (p == rq->idle) {
4391 p->stime = cputime_add(p->stime, steal);
4392 if (atomic_read(&rq->nr_iowait) > 0)
4393 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4394 else
4395 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004396 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4398}
4399
Christoph Lameter7835b982006-12-10 02:20:22 -08004400/*
4401 * This function gets called by the timer code, with HZ frequency.
4402 * We call it with interrupts disabled.
4403 *
4404 * It also gets called by the fork code, when changing the parent's
4405 * timeslices.
4406 */
4407void scheduler_tick(void)
4408{
Christoph Lameter7835b982006-12-10 02:20:22 -08004409 int cpu = smp_processor_id();
4410 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004411 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004412
4413 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004414
Ingo Molnardd41f592007-07-09 18:51:59 +02004415 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004416 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004417 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004418 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004419 spin_unlock(&rq->lock);
4420
Christoph Lametere418e1c2006-12-10 02:20:23 -08004421#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004422 rq->idle_at_tick = idle_cpu(cpu);
4423 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004424#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425}
4426
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004427#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
4428 defined(CONFIG_PREEMPT_TRACER))
4429
4430static inline unsigned long get_parent_ip(unsigned long addr)
4431{
4432 if (in_lock_functions(addr)) {
4433 addr = CALLER_ADDR2;
4434 if (in_lock_functions(addr))
4435 addr = CALLER_ADDR3;
4436 }
4437 return addr;
4438}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439
Srinivasa Ds43627582008-02-23 15:24:04 -08004440void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004442#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 /*
4444 * Underflow?
4445 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004446 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4447 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004448#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004450#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 /*
4452 * Spinlock count overflowing soon?
4453 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004454 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4455 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004456#endif
4457 if (preempt_count() == val)
4458 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459}
4460EXPORT_SYMBOL(add_preempt_count);
4461
Srinivasa Ds43627582008-02-23 15:24:04 -08004462void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004464#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 /*
4466 * Underflow?
4467 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004468 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4469 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 /*
4471 * Is the spinlock portion underflowing?
4472 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004473 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4474 !(preempt_count() & PREEMPT_MASK)))
4475 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004476#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004477
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004478 if (preempt_count() == val)
4479 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 preempt_count() -= val;
4481}
4482EXPORT_SYMBOL(sub_preempt_count);
4483
4484#endif
4485
4486/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004487 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004489static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490{
Satyam Sharma838225b2007-10-24 18:23:50 +02004491 struct pt_regs *regs = get_irq_regs();
4492
4493 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4494 prev->comm, prev->pid, preempt_count());
4495
Ingo Molnardd41f592007-07-09 18:51:59 +02004496 debug_show_held_locks(prev);
4497 if (irqs_disabled())
4498 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004499
4500 if (regs)
4501 show_regs(regs);
4502 else
4503 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004504}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505
Ingo Molnardd41f592007-07-09 18:51:59 +02004506/*
4507 * Various schedule()-time debugging checks and statistics:
4508 */
4509static inline void schedule_debug(struct task_struct *prev)
4510{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004512 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 * schedule() atomically, we ignore that path for now.
4514 * Otherwise, whine if we are scheduling when we should not be.
4515 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004516 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
4517 __schedule_bug(prev);
4518
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4520
Ingo Molnar2d723762007-10-15 17:00:12 +02004521 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004522#ifdef CONFIG_SCHEDSTATS
4523 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004524 schedstat_inc(this_rq(), bkl_count);
4525 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004526 }
4527#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004528}
4529
4530/*
4531 * Pick up the highest-prio task:
4532 */
4533static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004534pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004535{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004536 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004537 struct task_struct *p;
4538
4539 /*
4540 * Optimization: we know that if all tasks are in
4541 * the fair class we can call that function directly:
4542 */
4543 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004544 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004545 if (likely(p))
4546 return p;
4547 }
4548
4549 class = sched_class_highest;
4550 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004551 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004552 if (p)
4553 return p;
4554 /*
4555 * Will never be NULL as the idle class always
4556 * returns a non-NULL p:
4557 */
4558 class = class->next;
4559 }
4560}
4561
4562/*
4563 * schedule() is the main scheduler function.
4564 */
4565asmlinkage void __sched schedule(void)
4566{
4567 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004568 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004569 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02004570 int cpu;
4571
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572need_resched:
4573 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004574 cpu = smp_processor_id();
4575 rq = cpu_rq(cpu);
4576 rcu_qsctr_inc(cpu);
4577 prev = rq->curr;
4578 switch_count = &prev->nivcsw;
4579
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 release_kernel_lock(prev);
4581need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582
Ingo Molnardd41f592007-07-09 18:51:59 +02004583 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004585 hrtick_clear(rq);
4586
Ingo Molnar1e819952007-10-15 17:00:13 +02004587 /*
4588 * Do the rq-clock update outside the rq lock:
4589 */
4590 local_irq_disable();
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004591 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004592 spin_lock(&rq->lock);
4593 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594
Ingo Molnardd41f592007-07-09 18:51:59 +02004595 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
4596 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
Roel Kluin23e3c3c2008-03-13 17:41:59 +01004597 signal_pending(prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004598 prev->state = TASK_RUNNING;
4599 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004600 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004601 }
4602 switch_count = &prev->nvcsw;
4603 }
4604
Steven Rostedt9a897c52008-01-25 21:08:22 +01004605#ifdef CONFIG_SMP
4606 if (prev->sched_class->pre_schedule)
4607 prev->sched_class->pre_schedule(rq, prev);
4608#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004609
Ingo Molnardd41f592007-07-09 18:51:59 +02004610 if (unlikely(!rq->nr_running))
4611 idle_balance(cpu, rq);
4612
Ingo Molnar31ee5292007-08-09 11:16:49 +02004613 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004614 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004617 sched_info_switch(prev, next);
4618
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 rq->nr_switches++;
4620 rq->curr = next;
4621 ++*switch_count;
4622
Ingo Molnardd41f592007-07-09 18:51:59 +02004623 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004624 /*
4625 * the context switch might have flipped the stack from under
4626 * us, hence refresh the local variables.
4627 */
4628 cpu = smp_processor_id();
4629 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 } else
4631 spin_unlock_irq(&rq->lock);
4632
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004633 hrtick_set(rq);
4634
4635 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004637
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 preempt_enable_no_resched();
4639 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4640 goto need_resched;
4641}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642EXPORT_SYMBOL(schedule);
4643
4644#ifdef CONFIG_PREEMPT
4645/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004646 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004647 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 * occur there and call schedule directly.
4649 */
4650asmlinkage void __sched preempt_schedule(void)
4651{
4652 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004653
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 /*
4655 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004656 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004658 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 return;
4660
Andi Kleen3a5c3592007-10-15 17:00:14 +02004661 do {
4662 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004663 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004664 sub_preempt_count(PREEMPT_ACTIVE);
4665
4666 /*
4667 * Check again in case we missed a preemption opportunity
4668 * between schedule and now.
4669 */
4670 barrier();
4671 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673EXPORT_SYMBOL(preempt_schedule);
4674
4675/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004676 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 * off of irq context.
4678 * Note, that this is called and return with irqs disabled. This will
4679 * protect us against recursive calling from irq.
4680 */
4681asmlinkage void __sched preempt_schedule_irq(void)
4682{
4683 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004684
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004685 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 BUG_ON(ti->preempt_count || !irqs_disabled());
4687
Andi Kleen3a5c3592007-10-15 17:00:14 +02004688 do {
4689 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004690 local_irq_enable();
4691 schedule();
4692 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004693 sub_preempt_count(PREEMPT_ACTIVE);
4694
4695 /*
4696 * Check again in case we missed a preemption opportunity
4697 * between schedule and now.
4698 */
4699 barrier();
4700 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701}
4702
4703#endif /* CONFIG_PREEMPT */
4704
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004705int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4706 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004708 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710EXPORT_SYMBOL(default_wake_function);
4711
4712/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004713 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4714 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 * number) then we wake all the non-exclusive tasks and one exclusive task.
4716 *
4717 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004718 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4720 */
4721static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4722 int nr_exclusive, int sync, void *key)
4723{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004724 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004726 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004727 unsigned flags = curr->flags;
4728
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004730 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 break;
4732 }
4733}
4734
4735/**
4736 * __wake_up - wake up threads blocked on a waitqueue.
4737 * @q: the waitqueue
4738 * @mode: which threads
4739 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004740 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004742void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004743 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744{
4745 unsigned long flags;
4746
4747 spin_lock_irqsave(&q->lock, flags);
4748 __wake_up_common(q, mode, nr_exclusive, 0, key);
4749 spin_unlock_irqrestore(&q->lock, flags);
4750}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751EXPORT_SYMBOL(__wake_up);
4752
4753/*
4754 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4755 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004756void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757{
4758 __wake_up_common(q, mode, 1, 0, NULL);
4759}
4760
4761/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004762 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 * @q: the waitqueue
4764 * @mode: which threads
4765 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4766 *
4767 * The sync wakeup differs that the waker knows that it will schedule
4768 * away soon, so while the target thread will be woken up, it will not
4769 * be migrated to another CPU - ie. the two threads are 'synchronized'
4770 * with each other. This can prevent needless bouncing between CPUs.
4771 *
4772 * On UP it can prevent extra preemption.
4773 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004774void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004775__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776{
4777 unsigned long flags;
4778 int sync = 1;
4779
4780 if (unlikely(!q))
4781 return;
4782
4783 if (unlikely(!nr_exclusive))
4784 sync = 0;
4785
4786 spin_lock_irqsave(&q->lock, flags);
4787 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4788 spin_unlock_irqrestore(&q->lock, flags);
4789}
4790EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4791
Ingo Molnarb15136e2007-10-24 18:23:48 +02004792void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793{
4794 unsigned long flags;
4795
4796 spin_lock_irqsave(&x->wait.lock, flags);
4797 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004798 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 spin_unlock_irqrestore(&x->wait.lock, flags);
4800}
4801EXPORT_SYMBOL(complete);
4802
Ingo Molnarb15136e2007-10-24 18:23:48 +02004803void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804{
4805 unsigned long flags;
4806
4807 spin_lock_irqsave(&x->wait.lock, flags);
4808 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004809 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 spin_unlock_irqrestore(&x->wait.lock, flags);
4811}
4812EXPORT_SYMBOL(complete_all);
4813
Andi Kleen8cbbe862007-10-15 17:00:14 +02004814static inline long __sched
4815do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 if (!x->done) {
4818 DECLARE_WAITQUEUE(wait, current);
4819
4820 wait.flags |= WQ_FLAG_EXCLUSIVE;
4821 __add_wait_queue_tail(&x->wait, &wait);
4822 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004823 if ((state == TASK_INTERRUPTIBLE &&
4824 signal_pending(current)) ||
4825 (state == TASK_KILLABLE &&
4826 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004827 __remove_wait_queue(&x->wait, &wait);
4828 return -ERESTARTSYS;
4829 }
4830 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004832 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004834 if (!timeout) {
4835 __remove_wait_queue(&x->wait, &wait);
4836 return timeout;
4837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 } while (!x->done);
4839 __remove_wait_queue(&x->wait, &wait);
4840 }
4841 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004842 return timeout;
4843}
4844
4845static long __sched
4846wait_for_common(struct completion *x, long timeout, int state)
4847{
4848 might_sleep();
4849
4850 spin_lock_irq(&x->wait.lock);
4851 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004853 return timeout;
4854}
4855
Ingo Molnarb15136e2007-10-24 18:23:48 +02004856void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004857{
4858 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859}
4860EXPORT_SYMBOL(wait_for_completion);
4861
Ingo Molnarb15136e2007-10-24 18:23:48 +02004862unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4864{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004865 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866}
4867EXPORT_SYMBOL(wait_for_completion_timeout);
4868
Andi Kleen8cbbe862007-10-15 17:00:14 +02004869int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870{
Andi Kleen51e97992007-10-18 21:32:55 +02004871 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4872 if (t == -ERESTARTSYS)
4873 return t;
4874 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875}
4876EXPORT_SYMBOL(wait_for_completion_interruptible);
4877
Ingo Molnarb15136e2007-10-24 18:23:48 +02004878unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879wait_for_completion_interruptible_timeout(struct completion *x,
4880 unsigned long timeout)
4881{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004882 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883}
4884EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4885
Matthew Wilcox009e5772007-12-06 12:29:54 -05004886int __sched wait_for_completion_killable(struct completion *x)
4887{
4888 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4889 if (t == -ERESTARTSYS)
4890 return t;
4891 return 0;
4892}
4893EXPORT_SYMBOL(wait_for_completion_killable);
4894
Andi Kleen8cbbe862007-10-15 17:00:14 +02004895static long __sched
4896sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004897{
4898 unsigned long flags;
4899 wait_queue_t wait;
4900
4901 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902
Andi Kleen8cbbe862007-10-15 17:00:14 +02004903 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904
Andi Kleen8cbbe862007-10-15 17:00:14 +02004905 spin_lock_irqsave(&q->lock, flags);
4906 __add_wait_queue(q, &wait);
4907 spin_unlock(&q->lock);
4908 timeout = schedule_timeout(timeout);
4909 spin_lock_irq(&q->lock);
4910 __remove_wait_queue(q, &wait);
4911 spin_unlock_irqrestore(&q->lock, flags);
4912
4913 return timeout;
4914}
4915
4916void __sched interruptible_sleep_on(wait_queue_head_t *q)
4917{
4918 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920EXPORT_SYMBOL(interruptible_sleep_on);
4921
Ingo Molnar0fec1712007-07-09 18:52:01 +02004922long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004923interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004925 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4928
Ingo Molnar0fec1712007-07-09 18:52:01 +02004929void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004931 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933EXPORT_SYMBOL(sleep_on);
4934
Ingo Molnar0fec1712007-07-09 18:52:01 +02004935long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004937 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939EXPORT_SYMBOL(sleep_on_timeout);
4940
Ingo Molnarb29739f2006-06-27 02:54:51 -07004941#ifdef CONFIG_RT_MUTEXES
4942
4943/*
4944 * rt_mutex_setprio - set the current priority of a task
4945 * @p: task
4946 * @prio: prio value (kernel-internal form)
4947 *
4948 * This function changes the 'effective' priority of a task. It does
4949 * not touch ->normal_prio like __setscheduler().
4950 *
4951 * Used by the rt_mutex code to implement priority inheritance logic.
4952 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004953void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004954{
4955 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004956 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004957 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004958 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004959
4960 BUG_ON(prio < 0 || prio > MAX_PRIO);
4961
4962 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004963 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004964
Andrew Mortond5f9f942007-05-08 20:27:06 -07004965 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004966 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004967 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004968 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004969 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004970 if (running)
4971 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004972
4973 if (rt_prio(prio))
4974 p->sched_class = &rt_sched_class;
4975 else
4976 p->sched_class = &fair_sched_class;
4977
Ingo Molnarb29739f2006-06-27 02:54:51 -07004978 p->prio = prio;
4979
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004980 if (running)
4981 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004982 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004983 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004984
4985 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004986 }
4987 task_rq_unlock(rq, &flags);
4988}
4989
4990#endif
4991
Ingo Molnar36c8b582006-07-03 00:25:41 -07004992void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993{
Ingo Molnardd41f592007-07-09 18:51:59 +02004994 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004996 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997
4998 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4999 return;
5000 /*
5001 * We have to be careful, if called from sys_setpriority(),
5002 * the task might be in the middle of scheduling on another CPU.
5003 */
5004 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005005 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 /*
5007 * The RT priorities are set via sched_setscheduler(), but we still
5008 * allow the 'normal' nice value to be set - but as expected
5009 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02005010 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 */
Ingo Molnare05606d2007-07-09 18:51:59 +02005012 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 p->static_prio = NICE_TO_PRIO(nice);
5014 goto out_unlock;
5015 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005016 on_rq = p->se.on_rq;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02005017 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02005018 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07005021 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005022 old_prio = p->prio;
5023 p->prio = effective_prio(p);
5024 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025
Ingo Molnardd41f592007-07-09 18:51:59 +02005026 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02005027 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07005029 * If the task increased its priority or is running and
5030 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07005032 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 resched_task(rq->curr);
5034 }
5035out_unlock:
5036 task_rq_unlock(rq, &flags);
5037}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038EXPORT_SYMBOL(set_user_nice);
5039
Matt Mackalle43379f2005-05-01 08:59:00 -07005040/*
5041 * can_nice - check if a task can reduce its nice value
5042 * @p: task
5043 * @nice: nice value
5044 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005045int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07005046{
Matt Mackall024f4742005-08-18 11:24:19 -07005047 /* convert nice value [19,-20] to rlimit style value [1,40] */
5048 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005049
Matt Mackalle43379f2005-05-01 08:59:00 -07005050 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
5051 capable(CAP_SYS_NICE));
5052}
5053
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054#ifdef __ARCH_WANT_SYS_NICE
5055
5056/*
5057 * sys_nice - change the priority of the current process.
5058 * @increment: priority increment
5059 *
5060 * sys_setpriority is a more generic, but much slower function that
5061 * does similar things.
5062 */
5063asmlinkage long sys_nice(int increment)
5064{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005065 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
5067 /*
5068 * Setpriority might change our priority at the same moment.
5069 * We don't have to worry. Conceptually one call occurs first
5070 * and we have a single winner.
5071 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005072 if (increment < -40)
5073 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074 if (increment > 40)
5075 increment = 40;
5076
5077 nice = PRIO_TO_NICE(current->static_prio) + increment;
5078 if (nice < -20)
5079 nice = -20;
5080 if (nice > 19)
5081 nice = 19;
5082
Matt Mackalle43379f2005-05-01 08:59:00 -07005083 if (increment < 0 && !can_nice(current, nice))
5084 return -EPERM;
5085
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 retval = security_task_setnice(current, nice);
5087 if (retval)
5088 return retval;
5089
5090 set_user_nice(current, nice);
5091 return 0;
5092}
5093
5094#endif
5095
5096/**
5097 * task_prio - return the priority value of a given task.
5098 * @p: the task in question.
5099 *
5100 * This is the priority value as seen by users in /proc.
5101 * RT tasks are offset by -200. Normal tasks are centered
5102 * around 0, value goes from -16 to +15.
5103 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005104int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105{
5106 return p->prio - MAX_RT_PRIO;
5107}
5108
5109/**
5110 * task_nice - return the nice value of a given task.
5111 * @p: the task in question.
5112 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005113int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114{
5115 return TASK_NICE(p);
5116}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005117EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118
5119/**
5120 * idle_cpu - is a given cpu idle currently?
5121 * @cpu: the processor in question.
5122 */
5123int idle_cpu(int cpu)
5124{
5125 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5126}
5127
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128/**
5129 * idle_task - return the idle task for a given cpu.
5130 * @cpu: the processor in question.
5131 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005132struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133{
5134 return cpu_rq(cpu)->idle;
5135}
5136
5137/**
5138 * find_process_by_pid - find a process with a matching PID value.
5139 * @pid: the pid in question.
5140 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005141static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005143 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144}
5145
5146/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005147static void
5148__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149{
Ingo Molnardd41f592007-07-09 18:51:59 +02005150 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005151
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005153 switch (p->policy) {
5154 case SCHED_NORMAL:
5155 case SCHED_BATCH:
5156 case SCHED_IDLE:
5157 p->sched_class = &fair_sched_class;
5158 break;
5159 case SCHED_FIFO:
5160 case SCHED_RR:
5161 p->sched_class = &rt_sched_class;
5162 break;
5163 }
5164
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005166 p->normal_prio = normal_prio(p);
5167 /* we are holding p->pi_lock already */
5168 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005169 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170}
5171
5172/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005173 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 * @p: the task in question.
5175 * @policy: new policy.
5176 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005177 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005178 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005180int sched_setscheduler(struct task_struct *p, int policy,
5181 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005183 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005185 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005186 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
Steven Rostedt66e53932006-06-27 02:54:44 -07005188 /* may grab non-irq protected spin_locks */
5189 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190recheck:
5191 /* double check policy once rq lock held */
5192 if (policy < 0)
5193 policy = oldpolicy = p->policy;
5194 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005195 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5196 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005197 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 /*
5199 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005200 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5201 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202 */
5203 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005204 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005205 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005207 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 return -EINVAL;
5209
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005210 /*
5211 * Allow unprivileged RT tasks to decrease priority:
5212 */
5213 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005214 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005215 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005216
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005217 if (!lock_task_sighand(p, &flags))
5218 return -ESRCH;
5219 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5220 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005221
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005222 /* can't set/change the rt policy */
5223 if (policy != p->policy && !rlim_rtprio)
5224 return -EPERM;
5225
5226 /* can't increase priority */
5227 if (param->sched_priority > p->rt_priority &&
5228 param->sched_priority > rlim_rtprio)
5229 return -EPERM;
5230 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005231 /*
5232 * Like positive nice levels, dont allow tasks to
5233 * move out of SCHED_IDLE either:
5234 */
5235 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5236 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005237
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005238 /* can't change other user's priorities */
5239 if ((current->euid != p->euid) &&
5240 (current->euid != p->uid))
5241 return -EPERM;
5242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005244#ifdef CONFIG_RT_GROUP_SCHED
5245 /*
5246 * Do not allow realtime tasks into groups that have no runtime
5247 * assigned.
5248 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02005249 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005250 return -EPERM;
5251#endif
5252
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253 retval = security_task_setscheduler(p, policy, param);
5254 if (retval)
5255 return retval;
5256 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005257 * make sure no PI-waiters arrive (or leave) while we are
5258 * changing the priority of the task:
5259 */
5260 spin_lock_irqsave(&p->pi_lock, flags);
5261 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262 * To be able to change p->policy safely, the apropriate
5263 * runqueue lock must be held.
5264 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005265 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 /* recheck policy now with rq lock held */
5267 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5268 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005269 __task_rq_unlock(rq);
5270 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 goto recheck;
5272 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005273 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005274 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005275 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005276 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005277 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005278 if (running)
5279 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005280
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005282 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005283
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005284 if (running)
5285 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005286 if (on_rq) {
5287 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005288
5289 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005291 __task_rq_unlock(rq);
5292 spin_unlock_irqrestore(&p->pi_lock, flags);
5293
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005294 rt_mutex_adjust_pi(p);
5295
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 return 0;
5297}
5298EXPORT_SYMBOL_GPL(sched_setscheduler);
5299
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005300static int
5301do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 struct sched_param lparam;
5304 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005305 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306
5307 if (!param || pid < 0)
5308 return -EINVAL;
5309 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5310 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005311
5312 rcu_read_lock();
5313 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005315 if (p != NULL)
5316 retval = sched_setscheduler(p, policy, &lparam);
5317 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005318
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319 return retval;
5320}
5321
5322/**
5323 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5324 * @pid: the pid in question.
5325 * @policy: new policy.
5326 * @param: structure containing the new RT priority.
5327 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005328asmlinkage long
5329sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330{
Jason Baronc21761f2006-01-18 17:43:03 -08005331 /* negative values for policy are not valid */
5332 if (policy < 0)
5333 return -EINVAL;
5334
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335 return do_sched_setscheduler(pid, policy, param);
5336}
5337
5338/**
5339 * sys_sched_setparam - set/change the RT priority of a thread
5340 * @pid: the pid in question.
5341 * @param: structure containing the new RT priority.
5342 */
5343asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5344{
5345 return do_sched_setscheduler(pid, -1, param);
5346}
5347
5348/**
5349 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5350 * @pid: the pid in question.
5351 */
5352asmlinkage long sys_sched_getscheduler(pid_t pid)
5353{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005354 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005355 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356
5357 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005358 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359
5360 retval = -ESRCH;
5361 read_lock(&tasklist_lock);
5362 p = find_process_by_pid(pid);
5363 if (p) {
5364 retval = security_task_getscheduler(p);
5365 if (!retval)
5366 retval = p->policy;
5367 }
5368 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 return retval;
5370}
5371
5372/**
5373 * sys_sched_getscheduler - get the RT priority of a thread
5374 * @pid: the pid in question.
5375 * @param: structure containing the RT priority.
5376 */
5377asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5378{
5379 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005380 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005381 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382
5383 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005384 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
5386 read_lock(&tasklist_lock);
5387 p = find_process_by_pid(pid);
5388 retval = -ESRCH;
5389 if (!p)
5390 goto out_unlock;
5391
5392 retval = security_task_getscheduler(p);
5393 if (retval)
5394 goto out_unlock;
5395
5396 lp.sched_priority = p->rt_priority;
5397 read_unlock(&tasklist_lock);
5398
5399 /*
5400 * This one might sleep, we cannot do it with a spinlock held ...
5401 */
5402 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5403
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 return retval;
5405
5406out_unlock:
5407 read_unlock(&tasklist_lock);
5408 return retval;
5409}
5410
Mike Travisb53e9212008-04-04 18:11:08 -07005411long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07005414 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005415 struct task_struct *p;
5416 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005418 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419 read_lock(&tasklist_lock);
5420
5421 p = find_process_by_pid(pid);
5422 if (!p) {
5423 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005424 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425 return -ESRCH;
5426 }
5427
5428 /*
5429 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005430 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 * usage count and then drop tasklist_lock.
5432 */
5433 get_task_struct(p);
5434 read_unlock(&tasklist_lock);
5435
5436 retval = -EPERM;
5437 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5438 !capable(CAP_SYS_NICE))
5439 goto out_unlock;
5440
David Quigleye7834f82006-06-23 02:03:59 -07005441 retval = security_task_setscheduler(p, 0, NULL);
5442 if (retval)
5443 goto out_unlock;
5444
Mike Travisf9a86fc2008-04-04 18:11:07 -07005445 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005447 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005448 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
Paul Menage8707d8b2007-10-18 23:40:22 -07005450 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005451 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005452 if (!cpus_subset(new_mask, cpus_allowed)) {
5453 /*
5454 * We must have raced with a concurrent cpuset
5455 * update. Just reset the cpus_allowed to the
5456 * cpuset's cpus_allowed
5457 */
5458 new_mask = cpus_allowed;
5459 goto again;
5460 }
5461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462out_unlock:
5463 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005464 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465 return retval;
5466}
5467
5468static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5469 cpumask_t *new_mask)
5470{
5471 if (len < sizeof(cpumask_t)) {
5472 memset(new_mask, 0, sizeof(cpumask_t));
5473 } else if (len > sizeof(cpumask_t)) {
5474 len = sizeof(cpumask_t);
5475 }
5476 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5477}
5478
5479/**
5480 * sys_sched_setaffinity - set the cpu affinity of a process
5481 * @pid: pid of the process
5482 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5483 * @user_mask_ptr: user-space pointer to the new cpu mask
5484 */
5485asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5486 unsigned long __user *user_mask_ptr)
5487{
5488 cpumask_t new_mask;
5489 int retval;
5490
5491 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5492 if (retval)
5493 return retval;
5494
Mike Travisb53e9212008-04-04 18:11:08 -07005495 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496}
5497
5498/*
5499 * Represents all cpu's present in the system
5500 * In systems capable of hotplug, this map could dynamically grow
5501 * as new cpu's are detected in the system via any platform specific
5502 * method, such as ACPI for e.g.
5503 */
5504
Andi Kleen4cef0c62006-01-11 22:44:57 +01005505cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506EXPORT_SYMBOL(cpu_present_map);
5507
5508#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01005509cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005510EXPORT_SYMBOL(cpu_online_map);
5511
Andi Kleen4cef0c62006-01-11 22:44:57 +01005512cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005513EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514#endif
5515
5516long sched_getaffinity(pid_t pid, cpumask_t *mask)
5517{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005518 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005521 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522 read_lock(&tasklist_lock);
5523
5524 retval = -ESRCH;
5525 p = find_process_by_pid(pid);
5526 if (!p)
5527 goto out_unlock;
5528
David Quigleye7834f82006-06-23 02:03:59 -07005529 retval = security_task_getscheduler(p);
5530 if (retval)
5531 goto out_unlock;
5532
Jack Steiner2f7016d2006-02-01 03:05:18 -08005533 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534
5535out_unlock:
5536 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005537 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538
Ulrich Drepper9531b622007-08-09 11:16:46 +02005539 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540}
5541
5542/**
5543 * sys_sched_getaffinity - get the cpu affinity of a process
5544 * @pid: pid of the process
5545 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5546 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5547 */
5548asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5549 unsigned long __user *user_mask_ptr)
5550{
5551 int ret;
5552 cpumask_t mask;
5553
5554 if (len < sizeof(cpumask_t))
5555 return -EINVAL;
5556
5557 ret = sched_getaffinity(pid, &mask);
5558 if (ret < 0)
5559 return ret;
5560
5561 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5562 return -EFAULT;
5563
5564 return sizeof(cpumask_t);
5565}
5566
5567/**
5568 * sys_sched_yield - yield the current processor to other threads.
5569 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005570 * This function yields the current CPU to other tasks. If there are no
5571 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 */
5573asmlinkage long sys_sched_yield(void)
5574{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005575 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576
Ingo Molnar2d723762007-10-15 17:00:12 +02005577 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005578 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579
5580 /*
5581 * Since we are going to call schedule() anyway, there's
5582 * no need to preempt or enable interrupts:
5583 */
5584 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005585 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586 _raw_spin_unlock(&rq->lock);
5587 preempt_enable_no_resched();
5588
5589 schedule();
5590
5591 return 0;
5592}
5593
Andrew Mortone7b38402006-06-30 01:56:00 -07005594static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005596#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5597 __might_sleep(__FILE__, __LINE__);
5598#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005599 /*
5600 * The BKS might be reacquired before we have dropped
5601 * PREEMPT_ACTIVE, which could trigger a second
5602 * cond_resched() call.
5603 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604 do {
5605 add_preempt_count(PREEMPT_ACTIVE);
5606 schedule();
5607 sub_preempt_count(PREEMPT_ACTIVE);
5608 } while (need_resched());
5609}
5610
Herbert Xu02b67cc32008-01-25 21:08:28 +01005611int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612{
Ingo Molnar94142322006-12-29 16:48:13 -08005613 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5614 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615 __cond_resched();
5616 return 1;
5617 }
5618 return 0;
5619}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005620EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621
5622/*
5623 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5624 * call schedule, and on return reacquire the lock.
5625 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005626 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627 * operations here to prevent schedule() from being called twice (once via
5628 * spin_unlock(), once by hand).
5629 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005630int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631{
Nick Piggin95c354f2008-01-30 13:31:20 +01005632 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005633 int ret = 0;
5634
Nick Piggin95c354f2008-01-30 13:31:20 +01005635 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005637 if (resched && need_resched())
5638 __cond_resched();
5639 else
5640 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005641 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005644 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646EXPORT_SYMBOL(cond_resched_lock);
5647
5648int __sched cond_resched_softirq(void)
5649{
5650 BUG_ON(!in_softirq());
5651
Ingo Molnar94142322006-12-29 16:48:13 -08005652 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005653 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654 __cond_resched();
5655 local_bh_disable();
5656 return 1;
5657 }
5658 return 0;
5659}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660EXPORT_SYMBOL(cond_resched_softirq);
5661
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662/**
5663 * yield - yield the current processor to other threads.
5664 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005665 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666 * thread runnable and calls sys_sched_yield().
5667 */
5668void __sched yield(void)
5669{
5670 set_current_state(TASK_RUNNING);
5671 sys_sched_yield();
5672}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673EXPORT_SYMBOL(yield);
5674
5675/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005676 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677 * that process accounting knows that this is a task in IO wait state.
5678 *
5679 * But don't do that if it is a deliberate, throttling IO wait (this task
5680 * has set its backing_dev_info: the queue against which it should throttle)
5681 */
5682void __sched io_schedule(void)
5683{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005684 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005686 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 atomic_inc(&rq->nr_iowait);
5688 schedule();
5689 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005690 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692EXPORT_SYMBOL(io_schedule);
5693
5694long __sched io_schedule_timeout(long timeout)
5695{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005696 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697 long ret;
5698
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005699 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700 atomic_inc(&rq->nr_iowait);
5701 ret = schedule_timeout(timeout);
5702 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005703 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704 return ret;
5705}
5706
5707/**
5708 * sys_sched_get_priority_max - return maximum RT priority.
5709 * @policy: scheduling class.
5710 *
5711 * this syscall returns the maximum rt_priority that can be used
5712 * by a given scheduling class.
5713 */
5714asmlinkage long sys_sched_get_priority_max(int policy)
5715{
5716 int ret = -EINVAL;
5717
5718 switch (policy) {
5719 case SCHED_FIFO:
5720 case SCHED_RR:
5721 ret = MAX_USER_RT_PRIO-1;
5722 break;
5723 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005724 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005725 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726 ret = 0;
5727 break;
5728 }
5729 return ret;
5730}
5731
5732/**
5733 * sys_sched_get_priority_min - return minimum RT priority.
5734 * @policy: scheduling class.
5735 *
5736 * this syscall returns the minimum rt_priority that can be used
5737 * by a given scheduling class.
5738 */
5739asmlinkage long sys_sched_get_priority_min(int policy)
5740{
5741 int ret = -EINVAL;
5742
5743 switch (policy) {
5744 case SCHED_FIFO:
5745 case SCHED_RR:
5746 ret = 1;
5747 break;
5748 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005749 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005750 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751 ret = 0;
5752 }
5753 return ret;
5754}
5755
5756/**
5757 * sys_sched_rr_get_interval - return the default timeslice of a process.
5758 * @pid: pid of the process.
5759 * @interval: userspace pointer to the timeslice value.
5760 *
5761 * this syscall writes the default timeslice value of a given process
5762 * into the user-space timespec buffer. A value of '0' means infinity.
5763 */
5764asmlinkage
5765long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5766{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005767 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005768 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005769 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771
5772 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005773 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774
5775 retval = -ESRCH;
5776 read_lock(&tasklist_lock);
5777 p = find_process_by_pid(pid);
5778 if (!p)
5779 goto out_unlock;
5780
5781 retval = security_task_getscheduler(p);
5782 if (retval)
5783 goto out_unlock;
5784
Ingo Molnar77034932007-12-04 17:04:39 +01005785 /*
5786 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5787 * tasks that are on an otherwise idle runqueue:
5788 */
5789 time_slice = 0;
5790 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005791 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005792 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005793 struct sched_entity *se = &p->se;
5794 unsigned long flags;
5795 struct rq *rq;
5796
5797 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005798 if (rq->cfs.load.weight)
5799 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005800 task_rq_unlock(rq, &flags);
5801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005803 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005806
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807out_unlock:
5808 read_unlock(&tasklist_lock);
5809 return retval;
5810}
5811
Steven Rostedt7c731e02008-05-12 21:20:41 +02005812static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005813
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005814void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005817 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005820 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005821 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005822#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005824 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005826 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827#else
5828 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005829 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005831 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832#endif
5833#ifdef CONFIG_DEBUG_STACK_USAGE
5834 {
Al Viro10ebffd2005-11-13 16:06:56 -08005835 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 while (!*n)
5837 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005838 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839 }
5840#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005841 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005842 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005844 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845}
5846
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005847void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005849 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850
Ingo Molnar4bd77322007-07-11 21:21:47 +02005851#if BITS_PER_LONG == 32
5852 printk(KERN_INFO
5853 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005855 printk(KERN_INFO
5856 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857#endif
5858 read_lock(&tasklist_lock);
5859 do_each_thread(g, p) {
5860 /*
5861 * reset the NMI-timeout, listing all files on a slow
5862 * console might take alot of time:
5863 */
5864 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005865 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005866 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867 } while_each_thread(g, p);
5868
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005869 touch_all_softlockup_watchdogs();
5870
Ingo Molnardd41f592007-07-09 18:51:59 +02005871#ifdef CONFIG_SCHED_DEBUG
5872 sysrq_sched_debug_show();
5873#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005875 /*
5876 * Only show locks if all tasks are dumped:
5877 */
5878 if (state_filter == -1)
5879 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880}
5881
Ingo Molnar1df21052007-07-09 18:51:58 +02005882void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5883{
Ingo Molnardd41f592007-07-09 18:51:59 +02005884 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005885}
5886
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005887/**
5888 * init_idle - set up an idle thread for a given CPU
5889 * @idle: task in question
5890 * @cpu: cpu the idle task belongs to
5891 *
5892 * NOTE: this function does not set the idle thread's NEED_RESCHED
5893 * flag, to make booting more robust.
5894 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005895void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005897 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898 unsigned long flags;
5899
Ingo Molnardd41f592007-07-09 18:51:59 +02005900 __sched_fork(idle);
5901 idle->se.exec_start = sched_clock();
5902
Ingo Molnarb29739f2006-06-27 02:54:51 -07005903 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005905 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906
5907 spin_lock_irqsave(&rq->lock, flags);
5908 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005909#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5910 idle->oncpu = 1;
5911#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912 spin_unlock_irqrestore(&rq->lock, flags);
5913
5914 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005915#if defined(CONFIG_PREEMPT)
5916 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5917#else
Al Viroa1261f52005-11-13 16:06:55 -08005918 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005919#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005920 /*
5921 * The idle tasks have their own, simple scheduling class:
5922 */
5923 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924}
5925
5926/*
5927 * In a system that switches off the HZ timer nohz_cpu_mask
5928 * indicates which cpus entered this state. This is used
5929 * in the rcu update to wait only for active cpus. For system
5930 * which do not switch off the HZ timer nohz_cpu_mask should
5931 * always be CPU_MASK_NONE.
5932 */
5933cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5934
Ingo Molnar19978ca2007-11-09 22:39:38 +01005935/*
5936 * Increase the granularity value when there are more CPUs,
5937 * because with more CPUs the 'effective latency' as visible
5938 * to users decreases. But the relationship is not linear,
5939 * so pick a second-best guess by going with the log2 of the
5940 * number of CPUs.
5941 *
5942 * This idea comes from the SD scheduler of Con Kolivas:
5943 */
5944static inline void sched_init_granularity(void)
5945{
5946 unsigned int factor = 1 + ilog2(num_online_cpus());
5947 const unsigned long limit = 200000000;
5948
5949 sysctl_sched_min_granularity *= factor;
5950 if (sysctl_sched_min_granularity > limit)
5951 sysctl_sched_min_granularity = limit;
5952
5953 sysctl_sched_latency *= factor;
5954 if (sysctl_sched_latency > limit)
5955 sysctl_sched_latency = limit;
5956
5957 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005958}
5959
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960#ifdef CONFIG_SMP
5961/*
5962 * This is how migration works:
5963 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005964 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965 * runqueue and wake up that CPU's migration thread.
5966 * 2) we down() the locked semaphore => thread blocks.
5967 * 3) migration thread wakes up (implicitly it forces the migrated
5968 * thread off the CPU)
5969 * 4) it gets the migration request and checks whether the migrated
5970 * task is still in the wrong runqueue.
5971 * 5) if it's in the wrong runqueue then the migration thread removes
5972 * it and puts it into the right queue.
5973 * 6) migration thread up()s the semaphore.
5974 * 7) we wake up and the migration is done.
5975 */
5976
5977/*
5978 * Change a given task's CPU affinity. Migrate the thread to a
5979 * proper CPU and schedule it away if the CPU it's executing on
5980 * is removed from the allowed bitmask.
5981 *
5982 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005983 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984 * call is not atomic; no spinlocks may be held.
5985 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005986int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005988 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005990 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005991 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992
5993 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005994 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995 ret = -EINVAL;
5996 goto out;
5997 }
5998
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005999 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006000 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006001 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006002 p->cpus_allowed = *new_mask;
6003 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006004 }
6005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006007 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008 goto out;
6009
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006010 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011 /* Need help from migration thread: drop lock and wait. */
6012 task_rq_unlock(rq, &flags);
6013 wake_up_process(rq->migration_thread);
6014 wait_for_completion(&req.done);
6015 tlb_migrate_finish(p->mm);
6016 return 0;
6017 }
6018out:
6019 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006020
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021 return ret;
6022}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006023EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024
6025/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006026 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027 * this because either it can't run here any more (set_cpus_allowed()
6028 * away from this CPU, or CPU going down), or because we're
6029 * attempting to rebalance this task on exec (sched_exec).
6030 *
6031 * So we race with normal scheduler movements, but that's OK, as long
6032 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07006033 *
6034 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07006036static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006038 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02006039 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040
6041 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07006042 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043
6044 rq_src = cpu_rq(src_cpu);
6045 rq_dest = cpu_rq(dest_cpu);
6046
6047 double_rq_lock(rq_src, rq_dest);
6048 /* Already moved. */
6049 if (task_cpu(p) != src_cpu)
6050 goto out;
6051 /* Affinity changed (again). */
6052 if (!cpu_isset(dest_cpu, p->cpus_allowed))
6053 goto out;
6054
Ingo Molnardd41f592007-07-09 18:51:59 +02006055 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006056 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006057 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006058
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006060 if (on_rq) {
6061 activate_task(rq_dest, p, 0);
6062 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07006064 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065out:
6066 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07006067 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068}
6069
6070/*
6071 * migration_thread - this is a highprio system thread that performs
6072 * thread migration by bumping thread off CPU then 'pushing' onto
6073 * another runqueue.
6074 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006075static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006078 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
6080 rq = cpu_rq(cpu);
6081 BUG_ON(rq->migration_thread != current);
6082
6083 set_current_state(TASK_INTERRUPTIBLE);
6084 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006085 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006086 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088 spin_lock_irq(&rq->lock);
6089
6090 if (cpu_is_offline(cpu)) {
6091 spin_unlock_irq(&rq->lock);
6092 goto wait_to_die;
6093 }
6094
6095 if (rq->active_balance) {
6096 active_load_balance(rq, cpu);
6097 rq->active_balance = 0;
6098 }
6099
6100 head = &rq->migration_queue;
6101
6102 if (list_empty(head)) {
6103 spin_unlock_irq(&rq->lock);
6104 schedule();
6105 set_current_state(TASK_INTERRUPTIBLE);
6106 continue;
6107 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07006108 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109 list_del_init(head->next);
6110
Nick Piggin674311d2005-06-25 14:57:27 -07006111 spin_unlock(&rq->lock);
6112 __migrate_task(req->task, cpu, req->dest_cpu);
6113 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114
6115 complete(&req->done);
6116 }
6117 __set_current_state(TASK_RUNNING);
6118 return 0;
6119
6120wait_to_die:
6121 /* Wait for kthread_stop */
6122 set_current_state(TASK_INTERRUPTIBLE);
6123 while (!kthread_should_stop()) {
6124 schedule();
6125 set_current_state(TASK_INTERRUPTIBLE);
6126 }
6127 __set_current_state(TASK_RUNNING);
6128 return 0;
6129}
6130
6131#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006132
6133static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
6134{
6135 int ret;
6136
6137 local_irq_disable();
6138 ret = __migrate_task(p, src_cpu, dest_cpu);
6139 local_irq_enable();
6140 return ret;
6141}
6142
Kirill Korotaev054b9102006-12-10 02:20:11 -08006143/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006144 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08006145 * NOTE: interrupts should be disabled by the caller
6146 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006147static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148{
Kirill Korotaevefc30812006-06-27 02:54:32 -07006149 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006151 struct rq *rq;
6152 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153
Andi Kleen3a5c3592007-10-15 17:00:14 +02006154 do {
6155 /* On same node? */
6156 mask = node_to_cpumask(cpu_to_node(dead_cpu));
6157 cpus_and(mask, mask, p->cpus_allowed);
6158 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006159
Andi Kleen3a5c3592007-10-15 17:00:14 +02006160 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07006161 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006162 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163
Andi Kleen3a5c3592007-10-15 17:00:14 +02006164 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07006165 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07006166 cpumask_t cpus_allowed;
6167
6168 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd6462007-10-18 23:40:46 -07006169 /*
6170 * Try to stay on the same cpuset, where the
6171 * current cpuset may be a subset of all cpus.
6172 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006173 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd6462007-10-18 23:40:46 -07006174 * called within calls to cpuset_lock/cpuset_unlock.
6175 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02006176 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd6462007-10-18 23:40:46 -07006177 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006178 dest_cpu = any_online_cpu(p->cpus_allowed);
6179 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180
Andi Kleen3a5c3592007-10-15 17:00:14 +02006181 /*
6182 * Don't tell them about moving exiting tasks or
6183 * kernel threads (both mm NULL), since they never
6184 * leave kernel.
6185 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006186 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006187 printk(KERN_INFO "process %d (%s) no "
6188 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006189 task_pid_nr(p), p->comm, dead_cpu);
6190 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006191 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006192 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193}
6194
6195/*
6196 * While a dead CPU has no uninterruptible tasks queued at this point,
6197 * it might still have a nonzero ->nr_uninterruptible counter, because
6198 * for performance reasons the counter is not stricly tracking tasks to
6199 * their home CPUs. So we just add the counter to another CPU's counter,
6200 * to keep the global sum constant after CPU-down:
6201 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006202static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203{
Mike Travis7c16ec52008-04-04 18:11:11 -07006204 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205 unsigned long flags;
6206
6207 local_irq_save(flags);
6208 double_rq_lock(rq_src, rq_dest);
6209 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6210 rq_src->nr_uninterruptible = 0;
6211 double_rq_unlock(rq_src, rq_dest);
6212 local_irq_restore(flags);
6213}
6214
6215/* Run through task list and migrate tasks from the dead cpu. */
6216static void migrate_live_tasks(int src_cpu)
6217{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006218 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006220 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221
Ingo Molnar48f24c42006-07-03 00:25:40 -07006222 do_each_thread(t, p) {
6223 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224 continue;
6225
Ingo Molnar48f24c42006-07-03 00:25:40 -07006226 if (task_cpu(p) == src_cpu)
6227 move_task_off_dead_cpu(src_cpu, p);
6228 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006230 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231}
6232
Ingo Molnardd41f592007-07-09 18:51:59 +02006233/*
6234 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006235 * It does so by boosting its priority to highest possible.
6236 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237 */
6238void sched_idle_next(void)
6239{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006240 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006241 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242 struct task_struct *p = rq->idle;
6243 unsigned long flags;
6244
6245 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006246 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247
Ingo Molnar48f24c42006-07-03 00:25:40 -07006248 /*
6249 * Strictly not necessary since rest of the CPUs are stopped by now
6250 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251 */
6252 spin_lock_irqsave(&rq->lock, flags);
6253
Ingo Molnardd41f592007-07-09 18:51:59 +02006254 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006255
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006256 update_rq_clock(rq);
6257 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258
6259 spin_unlock_irqrestore(&rq->lock, flags);
6260}
6261
Ingo Molnar48f24c42006-07-03 00:25:40 -07006262/*
6263 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264 * offline.
6265 */
6266void idle_task_exit(void)
6267{
6268 struct mm_struct *mm = current->active_mm;
6269
6270 BUG_ON(cpu_online(smp_processor_id()));
6271
6272 if (mm != &init_mm)
6273 switch_mm(mm, &init_mm, current);
6274 mmdrop(mm);
6275}
6276
Kirill Korotaev054b9102006-12-10 02:20:11 -08006277/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006278static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006280 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281
6282 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006283 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284
6285 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006286 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287
Ingo Molnar48f24c42006-07-03 00:25:40 -07006288 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289
6290 /*
6291 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006292 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293 * fine.
6294 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006295 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006296 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006297 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298
Ingo Molnar48f24c42006-07-03 00:25:40 -07006299 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300}
6301
6302/* release_task() removes task from tasklist, so we won't find dead tasks. */
6303static void migrate_dead_tasks(unsigned int dead_cpu)
6304{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006305 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006306 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307
Ingo Molnardd41f592007-07-09 18:51:59 +02006308 for ( ; ; ) {
6309 if (!rq->nr_running)
6310 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006311 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006312 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006313 if (!next)
6314 break;
6315 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006316
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317 }
6318}
6319#endif /* CONFIG_HOTPLUG_CPU */
6320
Nick Piggine692ab52007-07-26 13:40:43 +02006321#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6322
6323static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006324 {
6325 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006326 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006327 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006328 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006329};
6330
6331static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006332 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006333 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006334 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006335 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006336 .child = sd_ctl_dir,
6337 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006338 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006339};
6340
6341static struct ctl_table *sd_alloc_ctl_entry(int n)
6342{
6343 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006344 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006345
Nick Piggine692ab52007-07-26 13:40:43 +02006346 return entry;
6347}
6348
Milton Miller6382bc92007-10-15 17:00:19 +02006349static void sd_free_ctl_entry(struct ctl_table **tablep)
6350{
Milton Millercd7900762007-10-17 16:55:11 +02006351 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006352
Milton Millercd7900762007-10-17 16:55:11 +02006353 /*
6354 * In the intermediate directories, both the child directory and
6355 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006356 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02006357 * static strings and all have proc handlers.
6358 */
6359 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006360 if (entry->child)
6361 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02006362 if (entry->proc_handler == NULL)
6363 kfree(entry->procname);
6364 }
Milton Miller6382bc92007-10-15 17:00:19 +02006365
6366 kfree(*tablep);
6367 *tablep = NULL;
6368}
6369
Nick Piggine692ab52007-07-26 13:40:43 +02006370static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006371set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006372 const char *procname, void *data, int maxlen,
6373 mode_t mode, proc_handler *proc_handler)
6374{
Nick Piggine692ab52007-07-26 13:40:43 +02006375 entry->procname = procname;
6376 entry->data = data;
6377 entry->maxlen = maxlen;
6378 entry->mode = mode;
6379 entry->proc_handler = proc_handler;
6380}
6381
6382static struct ctl_table *
6383sd_alloc_ctl_domain_table(struct sched_domain *sd)
6384{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006385 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02006386
Milton Millerad1cdc12007-10-15 17:00:19 +02006387 if (table == NULL)
6388 return NULL;
6389
Alexey Dobriyane0361852007-08-09 11:16:46 +02006390 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006391 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006392 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006393 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006394 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006395 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006396 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006397 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006398 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006399 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006400 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006401 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006402 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006403 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006404 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006405 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006406 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006407 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006408 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006409 &sd->cache_nice_tries,
6410 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006411 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006412 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02006413 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006414
6415 return table;
6416}
6417
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006418static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006419{
6420 struct ctl_table *entry, *table;
6421 struct sched_domain *sd;
6422 int domain_num = 0, i;
6423 char buf[32];
6424
6425 for_each_domain(cpu, sd)
6426 domain_num++;
6427 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006428 if (table == NULL)
6429 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006430
6431 i = 0;
6432 for_each_domain(cpu, sd) {
6433 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006434 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006435 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006436 entry->child = sd_alloc_ctl_domain_table(sd);
6437 entry++;
6438 i++;
6439 }
6440 return table;
6441}
6442
6443static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006444static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006445{
6446 int i, cpu_num = num_online_cpus();
6447 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6448 char buf[32];
6449
Milton Miller73785472007-10-24 18:23:48 +02006450 WARN_ON(sd_ctl_dir[0].child);
6451 sd_ctl_dir[0].child = entry;
6452
Milton Millerad1cdc12007-10-15 17:00:19 +02006453 if (entry == NULL)
6454 return;
6455
Milton Miller97b6ea72007-10-15 17:00:19 +02006456 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006457 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006458 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006459 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006460 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006461 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006462 }
Milton Miller73785472007-10-24 18:23:48 +02006463
6464 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006465 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6466}
Milton Miller6382bc92007-10-15 17:00:19 +02006467
Milton Miller73785472007-10-24 18:23:48 +02006468/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006469static void unregister_sched_domain_sysctl(void)
6470{
Milton Miller73785472007-10-24 18:23:48 +02006471 if (sd_sysctl_header)
6472 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006473 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006474 if (sd_ctl_dir[0].child)
6475 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006476}
Nick Piggine692ab52007-07-26 13:40:43 +02006477#else
Milton Miller6382bc92007-10-15 17:00:19 +02006478static void register_sched_domain_sysctl(void)
6479{
6480}
6481static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006482{
6483}
6484#endif
6485
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486/*
6487 * migration_call - callback that gets triggered when a CPU is added.
6488 * Here we can start up the necessary migration thread for the new CPU.
6489 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006490static int __cpuinit
6491migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006494 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006496 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497
6498 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006499
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006501 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006502 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503 if (IS_ERR(p))
6504 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505 kthread_bind(p, cpu);
6506 /* Must be high prio: stop_machine expects to yield to it. */
6507 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006508 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509 task_rq_unlock(rq, &flags);
6510 cpu_rq(cpu)->migration_thread = p;
6511 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006512
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006514 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006515 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006517
6518 /* Update our root-domain */
6519 rq = cpu_rq(cpu);
6520 spin_lock_irqsave(&rq->lock, flags);
6521 if (rq->rd) {
6522 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6523 cpu_set(cpu, rq->rd->online);
6524 }
6525 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006527
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528#ifdef CONFIG_HOTPLUG_CPU
6529 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006530 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006531 if (!cpu_rq(cpu)->migration_thread)
6532 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006533 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006534 kthread_bind(cpu_rq(cpu)->migration_thread,
6535 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536 kthread_stop(cpu_rq(cpu)->migration_thread);
6537 cpu_rq(cpu)->migration_thread = NULL;
6538 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006539
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006541 case CPU_DEAD_FROZEN:
Cliff Wickman470fd6462007-10-18 23:40:46 -07006542 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543 migrate_live_tasks(cpu);
6544 rq = cpu_rq(cpu);
6545 kthread_stop(rq->migration_thread);
6546 rq->migration_thread = NULL;
6547 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006548 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006549 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006550 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006552 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6553 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006555 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd6462007-10-18 23:40:46 -07006556 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 migrate_nr_uninterruptible(rq);
6558 BUG_ON(rq->nr_running != 0);
6559
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006560 /*
6561 * No need to migrate the tasks: it was best-effort if
6562 * they didn't take sched_hotcpu_mutex. Just wake up
6563 * the requestors.
6564 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565 spin_lock_irq(&rq->lock);
6566 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006567 struct migration_req *req;
6568
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006570 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571 list_del_init(&req->list);
6572 complete(&req->done);
6573 }
6574 spin_unlock_irq(&rq->lock);
6575 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006576
Gregory Haskins08f503b2008-03-10 17:59:11 -04006577 case CPU_DYING:
6578 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006579 /* Update our root-domain */
6580 rq = cpu_rq(cpu);
6581 spin_lock_irqsave(&rq->lock, flags);
6582 if (rq->rd) {
6583 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6584 cpu_clear(cpu, rq->rd->online);
6585 }
6586 spin_unlock_irqrestore(&rq->lock, flags);
6587 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588#endif
6589 }
6590 return NOTIFY_OK;
6591}
6592
6593/* Register at highest priority so that task migration (migrate_all_tasks)
6594 * happens before everything else.
6595 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006596static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597 .notifier_call = migration_call,
6598 .priority = 10
6599};
6600
Adrian Bunke6fe6642007-11-09 22:39:39 +01006601void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006602{
6603 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006604 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006605
6606 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006607 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6608 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6610 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611}
6612#endif
6613
6614#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006615
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006616#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006617
Mike Travis7c16ec52008-04-04 18:11:11 -07006618static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6619 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006620{
6621 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006622 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006623
Mike Travis434d53b2008-04-04 18:11:04 -07006624 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006625 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006626
6627 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6628
6629 if (!(sd->flags & SD_LOAD_BALANCE)) {
6630 printk("does not load-balance\n");
6631 if (sd->parent)
6632 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6633 " has parent");
6634 return -1;
6635 }
6636
6637 printk(KERN_CONT "span %s\n", str);
6638
6639 if (!cpu_isset(cpu, sd->span)) {
6640 printk(KERN_ERR "ERROR: domain->span does not contain "
6641 "CPU%d\n", cpu);
6642 }
6643 if (!cpu_isset(cpu, group->cpumask)) {
6644 printk(KERN_ERR "ERROR: domain->groups does not contain"
6645 " CPU%d\n", cpu);
6646 }
6647
6648 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6649 do {
6650 if (!group) {
6651 printk("\n");
6652 printk(KERN_ERR "ERROR: group is NULL\n");
6653 break;
6654 }
6655
6656 if (!group->__cpu_power) {
6657 printk(KERN_CONT "\n");
6658 printk(KERN_ERR "ERROR: domain->cpu_power not "
6659 "set\n");
6660 break;
6661 }
6662
6663 if (!cpus_weight(group->cpumask)) {
6664 printk(KERN_CONT "\n");
6665 printk(KERN_ERR "ERROR: empty group\n");
6666 break;
6667 }
6668
Mike Travis7c16ec52008-04-04 18:11:11 -07006669 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006670 printk(KERN_CONT "\n");
6671 printk(KERN_ERR "ERROR: repeated CPUs\n");
6672 break;
6673 }
6674
Mike Travis7c16ec52008-04-04 18:11:11 -07006675 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006676
Mike Travis434d53b2008-04-04 18:11:04 -07006677 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006678 printk(KERN_CONT " %s", str);
6679
6680 group = group->next;
6681 } while (group != sd->groups);
6682 printk(KERN_CONT "\n");
6683
Mike Travis7c16ec52008-04-04 18:11:11 -07006684 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006685 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6686
Mike Travis7c16ec52008-04-04 18:11:11 -07006687 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006688 printk(KERN_ERR "ERROR: parent span is not a superset "
6689 "of domain->span\n");
6690 return 0;
6691}
6692
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693static void sched_domain_debug(struct sched_domain *sd, int cpu)
6694{
Mike Travis7c16ec52008-04-04 18:11:11 -07006695 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696 int level = 0;
6697
Nick Piggin41c7ce92005-06-25 14:57:24 -07006698 if (!sd) {
6699 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6700 return;
6701 }
6702
Linus Torvalds1da177e2005-04-16 15:20:36 -07006703 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6704
Mike Travis7c16ec52008-04-04 18:11:11 -07006705 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6706 if (!groupmask) {
6707 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6708 return;
6709 }
6710
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006711 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006712 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006714 level++;
6715 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006716 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006717 break;
6718 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006719 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720}
6721#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006722# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723#endif
6724
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006725static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006726{
6727 if (cpus_weight(sd->span) == 1)
6728 return 1;
6729
6730 /* Following flags need at least 2 groups */
6731 if (sd->flags & (SD_LOAD_BALANCE |
6732 SD_BALANCE_NEWIDLE |
6733 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006734 SD_BALANCE_EXEC |
6735 SD_SHARE_CPUPOWER |
6736 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006737 if (sd->groups != sd->groups->next)
6738 return 0;
6739 }
6740
6741 /* Following flags don't use groups */
6742 if (sd->flags & (SD_WAKE_IDLE |
6743 SD_WAKE_AFFINE |
6744 SD_WAKE_BALANCE))
6745 return 0;
6746
6747 return 1;
6748}
6749
Ingo Molnar48f24c42006-07-03 00:25:40 -07006750static int
6751sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006752{
6753 unsigned long cflags = sd->flags, pflags = parent->flags;
6754
6755 if (sd_degenerate(parent))
6756 return 1;
6757
6758 if (!cpus_equal(sd->span, parent->span))
6759 return 0;
6760
6761 /* Does parent contain flags not in child? */
6762 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6763 if (cflags & SD_WAKE_AFFINE)
6764 pflags &= ~SD_WAKE_BALANCE;
6765 /* Flags needing groups don't count if only 1 group in parent */
6766 if (parent->groups == parent->groups->next) {
6767 pflags &= ~(SD_LOAD_BALANCE |
6768 SD_BALANCE_NEWIDLE |
6769 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006770 SD_BALANCE_EXEC |
6771 SD_SHARE_CPUPOWER |
6772 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006773 }
6774 if (~cflags & pflags)
6775 return 0;
6776
6777 return 1;
6778}
6779
Gregory Haskins57d885f2008-01-25 21:08:18 +01006780static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6781{
6782 unsigned long flags;
6783 const struct sched_class *class;
6784
6785 spin_lock_irqsave(&rq->lock, flags);
6786
6787 if (rq->rd) {
6788 struct root_domain *old_rd = rq->rd;
6789
Ingo Molnar0eab9142008-01-25 21:08:19 +01006790 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006791 if (class->leave_domain)
6792 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006793 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006794
Gregory Haskinsdc938522008-01-25 21:08:26 +01006795 cpu_clear(rq->cpu, old_rd->span);
6796 cpu_clear(rq->cpu, old_rd->online);
6797
Gregory Haskins57d885f2008-01-25 21:08:18 +01006798 if (atomic_dec_and_test(&old_rd->refcount))
6799 kfree(old_rd);
6800 }
6801
6802 atomic_inc(&rd->refcount);
6803 rq->rd = rd;
6804
Gregory Haskinsdc938522008-01-25 21:08:26 +01006805 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006806 if (cpu_isset(rq->cpu, cpu_online_map))
6807 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006808
Ingo Molnar0eab9142008-01-25 21:08:19 +01006809 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006810 if (class->join_domain)
6811 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006812 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006813
6814 spin_unlock_irqrestore(&rq->lock, flags);
6815}
6816
Gregory Haskinsdc938522008-01-25 21:08:26 +01006817static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006818{
6819 memset(rd, 0, sizeof(*rd));
6820
Gregory Haskinsdc938522008-01-25 21:08:26 +01006821 cpus_clear(rd->span);
6822 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006823}
6824
6825static void init_defrootdomain(void)
6826{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006827 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006828 atomic_set(&def_root_domain.refcount, 1);
6829}
6830
Gregory Haskinsdc938522008-01-25 21:08:26 +01006831static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006832{
6833 struct root_domain *rd;
6834
6835 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6836 if (!rd)
6837 return NULL;
6838
Gregory Haskinsdc938522008-01-25 21:08:26 +01006839 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006840
6841 return rd;
6842}
6843
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006845 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846 * hold the hotplug lock.
6847 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006848static void
6849cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006850{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006851 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006852 struct sched_domain *tmp;
6853
6854 /* Remove the sched domains which do not contribute to scheduling. */
6855 for (tmp = sd; tmp; tmp = tmp->parent) {
6856 struct sched_domain *parent = tmp->parent;
6857 if (!parent)
6858 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006859 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006860 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006861 if (parent->parent)
6862 parent->parent->child = tmp;
6863 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006864 }
6865
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006866 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006867 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006868 if (sd)
6869 sd->child = NULL;
6870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871
6872 sched_domain_debug(sd, cpu);
6873
Gregory Haskins57d885f2008-01-25 21:08:18 +01006874 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006875 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876}
6877
6878/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006879static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880
6881/* Setup the mask of cpus configured for isolated domains */
6882static int __init isolated_cpu_setup(char *str)
6883{
6884 int ints[NR_CPUS], i;
6885
6886 str = get_options(str, ARRAY_SIZE(ints), ints);
6887 cpus_clear(cpu_isolated_map);
6888 for (i = 1; i <= ints[0]; i++)
6889 if (ints[i] < NR_CPUS)
6890 cpu_set(ints[i], cpu_isolated_map);
6891 return 1;
6892}
6893
Ingo Molnar8927f492007-10-15 17:00:13 +02006894__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006895
6896/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006897 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6898 * to a function which identifies what group(along with sched group) a CPU
6899 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6900 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901 *
6902 * init_sched_build_groups will build a circular linked list of the groups
6903 * covered by the given span, and will set each group's ->cpumask correctly,
6904 * and ->cpu_power to 0.
6905 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006906static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006907init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006908 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006909 struct sched_group **sg,
6910 cpumask_t *tmpmask),
6911 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912{
6913 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006914 int i;
6915
Mike Travis7c16ec52008-04-04 18:11:11 -07006916 cpus_clear(*covered);
6917
6918 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006919 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006920 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006921 int j;
6922
Mike Travis7c16ec52008-04-04 18:11:11 -07006923 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924 continue;
6925
Mike Travis7c16ec52008-04-04 18:11:11 -07006926 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006927 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928
Mike Travis7c16ec52008-04-04 18:11:11 -07006929 for_each_cpu_mask(j, *span) {
6930 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931 continue;
6932
Mike Travis7c16ec52008-04-04 18:11:11 -07006933 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934 cpu_set(j, sg->cpumask);
6935 }
6936 if (!first)
6937 first = sg;
6938 if (last)
6939 last->next = sg;
6940 last = sg;
6941 }
6942 last->next = first;
6943}
6944
John Hawkes9c1cfda2005-09-06 15:18:14 -07006945#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946
John Hawkes9c1cfda2005-09-06 15:18:14 -07006947#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006948
John Hawkes9c1cfda2005-09-06 15:18:14 -07006949/**
6950 * find_next_best_node - find the next node to include in a sched_domain
6951 * @node: node whose sched_domain we're building
6952 * @used_nodes: nodes already in the sched_domain
6953 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006954 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006955 * finds the closest node not already in the @used_nodes map.
6956 *
6957 * Should use nodemask_t.
6958 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006959static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006960{
6961 int i, n, val, min_val, best_node = 0;
6962
6963 min_val = INT_MAX;
6964
6965 for (i = 0; i < MAX_NUMNODES; i++) {
6966 /* Start at @node */
6967 n = (node + i) % MAX_NUMNODES;
6968
6969 if (!nr_cpus_node(n))
6970 continue;
6971
6972 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006973 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006974 continue;
6975
6976 /* Simple min distance search */
6977 val = node_distance(node, n);
6978
6979 if (val < min_val) {
6980 min_val = val;
6981 best_node = n;
6982 }
6983 }
6984
Mike Travisc5f59f02008-04-04 18:11:10 -07006985 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006986 return best_node;
6987}
6988
6989/**
6990 * sched_domain_node_span - get a cpumask for a node's sched_domain
6991 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07006992 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07006993 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006994 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006995 * should be one that prevents unnecessary balancing, but also spreads tasks
6996 * out optimally.
6997 */
Mike Travis4bdbaad32008-04-15 16:35:52 -07006998static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006999{
Mike Travisc5f59f02008-04-04 18:11:10 -07007000 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07007001 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007002 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007003
Mike Travis4bdbaad32008-04-15 16:35:52 -07007004 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07007005 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007006
Mike Travis4bdbaad32008-04-15 16:35:52 -07007007 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07007008 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007009
7010 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07007011 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007012
Mike Travisc5f59f02008-04-04 18:11:10 -07007013 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007014 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007015 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007016}
7017#endif
7018
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007019int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007020
John Hawkes9c1cfda2005-09-06 15:18:14 -07007021/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07007022 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07007023 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024#ifdef CONFIG_SCHED_SMT
7025static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007026static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007027
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007028static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007029cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7030 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007032 if (sg)
7033 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034 return cpu;
7035}
7036#endif
7037
Ingo Molnar48f24c42006-07-03 00:25:40 -07007038/*
7039 * multi-core sched-domains:
7040 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007041#ifdef CONFIG_SCHED_MC
7042static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007043static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007044#endif
7045
7046#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007047static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007048cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7049 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007050{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007051 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07007052
7053 *mask = per_cpu(cpu_sibling_map, cpu);
7054 cpus_and(*mask, *mask, *cpu_map);
7055 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007056 if (sg)
7057 *sg = &per_cpu(sched_group_core, group);
7058 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007059}
7060#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007061static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007062cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7063 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007064{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007065 if (sg)
7066 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007067 return cpu;
7068}
7069#endif
7070
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007072static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007073
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007074static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007075cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7076 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007078 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007079#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07007080 *mask = cpu_coregroup_map(cpu);
7081 cpus_and(*mask, *mask, *cpu_map);
7082 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007083#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07007084 *mask = per_cpu(cpu_sibling_map, cpu);
7085 cpus_and(*mask, *mask, *cpu_map);
7086 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007088 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007089#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007090 if (sg)
7091 *sg = &per_cpu(sched_group_phys, group);
7092 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007093}
7094
7095#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07007096/*
7097 * The init_sched_build_groups can't handle what we want to do with node
7098 * groups, so roll our own. Now each node has its own list of groups which
7099 * gets dynamically allocated.
7100 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07007102static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007103
7104static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007105static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007106
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007107static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007108 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007110 int group;
7111
Mike Travis7c16ec52008-04-04 18:11:11 -07007112 *nodemask = node_to_cpumask(cpu_to_node(cpu));
7113 cpus_and(*nodemask, *nodemask, *cpu_map);
7114 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007115
7116 if (sg)
7117 *sg = &per_cpu(sched_group_allnodes, group);
7118 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007119}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007120
Siddha, Suresh B08069032006-03-27 01:15:23 -08007121static void init_numa_sched_groups_power(struct sched_group *group_head)
7122{
7123 struct sched_group *sg = group_head;
7124 int j;
7125
7126 if (!sg)
7127 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007128 do {
7129 for_each_cpu_mask(j, sg->cpumask) {
7130 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007131
Andi Kleen3a5c3592007-10-15 17:00:14 +02007132 sd = &per_cpu(phys_domains, j);
7133 if (j != first_cpu(sd->groups->cpumask)) {
7134 /*
7135 * Only add "power" once for each
7136 * physical package.
7137 */
7138 continue;
7139 }
7140
7141 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007142 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007143 sg = sg->next;
7144 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007145}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007146#endif
7147
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007148#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007149/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07007150static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007151{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007152 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007153
7154 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007155 struct sched_group **sched_group_nodes
7156 = sched_group_nodes_bycpu[cpu];
7157
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007158 if (!sched_group_nodes)
7159 continue;
7160
7161 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007162 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7163
Mike Travis7c16ec52008-04-04 18:11:11 -07007164 *nodemask = node_to_cpumask(i);
7165 cpus_and(*nodemask, *nodemask, *cpu_map);
7166 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007167 continue;
7168
7169 if (sg == NULL)
7170 continue;
7171 sg = sg->next;
7172next_sg:
7173 oldsg = sg;
7174 sg = sg->next;
7175 kfree(oldsg);
7176 if (oldsg != sched_group_nodes[i])
7177 goto next_sg;
7178 }
7179 kfree(sched_group_nodes);
7180 sched_group_nodes_bycpu[cpu] = NULL;
7181 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007182}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007183#else
Mike Travis7c16ec52008-04-04 18:11:11 -07007184static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007185{
7186}
7187#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007188
Linus Torvalds1da177e2005-04-16 15:20:36 -07007189/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007190 * Initialize sched groups cpu_power.
7191 *
7192 * cpu_power indicates the capacity of sched group, which is used while
7193 * distributing the load between different sched groups in a sched domain.
7194 * Typically cpu_power for all the groups in a sched domain will be same unless
7195 * there are asymmetries in the topology. If there are asymmetries, group
7196 * having more cpu_power will pickup more load compared to the group having
7197 * less cpu_power.
7198 *
7199 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7200 * the maximum number of tasks a group can handle in the presence of other idle
7201 * or lightly loaded groups in the same sched domain.
7202 */
7203static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7204{
7205 struct sched_domain *child;
7206 struct sched_group *group;
7207
7208 WARN_ON(!sd || !sd->groups);
7209
7210 if (cpu != first_cpu(sd->groups->cpumask))
7211 return;
7212
7213 child = sd->child;
7214
Eric Dumazet5517d862007-05-08 00:32:57 -07007215 sd->groups->__cpu_power = 0;
7216
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007217 /*
7218 * For perf policy, if the groups in child domain share resources
7219 * (for example cores sharing some portions of the cache hierarchy
7220 * or SMT), then set this domain groups cpu_power such that each group
7221 * can handle only one task, when there are other idle groups in the
7222 * same sched domain.
7223 */
7224 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7225 (child->flags &
7226 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007227 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007228 return;
7229 }
7230
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007231 /*
7232 * add cpu_power of each child group to this groups cpu_power
7233 */
7234 group = child->groups;
7235 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007236 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007237 group = group->next;
7238 } while (group != child->groups);
7239}
7240
7241/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007242 * Initializers for schedule domains
7243 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7244 */
7245
7246#define SD_INIT(sd, type) sd_init_##type(sd)
7247#define SD_INIT_FUNC(type) \
7248static noinline void sd_init_##type(struct sched_domain *sd) \
7249{ \
7250 memset(sd, 0, sizeof(*sd)); \
7251 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007252 sd->level = SD_LV_##type; \
Mike Travis7c16ec52008-04-04 18:11:11 -07007253}
7254
7255SD_INIT_FUNC(CPU)
7256#ifdef CONFIG_NUMA
7257 SD_INIT_FUNC(ALLNODES)
7258 SD_INIT_FUNC(NODE)
7259#endif
7260#ifdef CONFIG_SCHED_SMT
7261 SD_INIT_FUNC(SIBLING)
7262#endif
7263#ifdef CONFIG_SCHED_MC
7264 SD_INIT_FUNC(MC)
7265#endif
7266
7267/*
7268 * To minimize stack usage kmalloc room for cpumasks and share the
7269 * space as the usage in build_sched_domains() dictates. Used only
7270 * if the amount of space is significant.
7271 */
7272struct allmasks {
7273 cpumask_t tmpmask; /* make this one first */
7274 union {
7275 cpumask_t nodemask;
7276 cpumask_t this_sibling_map;
7277 cpumask_t this_core_map;
7278 };
7279 cpumask_t send_covered;
7280
7281#ifdef CONFIG_NUMA
7282 cpumask_t domainspan;
7283 cpumask_t covered;
7284 cpumask_t notcovered;
7285#endif
7286};
7287
7288#if NR_CPUS > 128
7289#define SCHED_CPUMASK_ALLOC 1
7290#define SCHED_CPUMASK_FREE(v) kfree(v)
7291#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
7292#else
7293#define SCHED_CPUMASK_ALLOC 0
7294#define SCHED_CPUMASK_FREE(v)
7295#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
7296#endif
7297
7298#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
7299 ((unsigned long)(a) + offsetof(struct allmasks, v))
7300
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007301static int default_relax_domain_level = -1;
7302
7303static int __init setup_relax_domain_level(char *str)
7304{
7305 default_relax_domain_level = simple_strtoul(str, NULL, 0);
7306 return 1;
7307}
7308__setup("relax_domain_level=", setup_relax_domain_level);
7309
7310static void set_domain_attribute(struct sched_domain *sd,
7311 struct sched_domain_attr *attr)
7312{
7313 int request;
7314
7315 if (!attr || attr->relax_domain_level < 0) {
7316 if (default_relax_domain_level < 0)
7317 return;
7318 else
7319 request = default_relax_domain_level;
7320 } else
7321 request = attr->relax_domain_level;
7322 if (request < sd->level) {
7323 /* turn off idle balance on this domain */
7324 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7325 } else {
7326 /* turn on idle balance on this domain */
7327 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7328 }
7329}
7330
Mike Travis7c16ec52008-04-04 18:11:11 -07007331/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007332 * Build sched domains for a given set of cpus and attach the sched domains
7333 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007335static int __build_sched_domains(const cpumask_t *cpu_map,
7336 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337{
7338 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007339 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007340 SCHED_CPUMASK_DECLARE(allmasks);
7341 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007342#ifdef CONFIG_NUMA
7343 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007344 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007345
7346 /*
7347 * Allocate the per-node list of sched groups
7348 */
Milton Miller5cf9f062007-10-15 17:00:19 +02007349 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007350 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007351 if (!sched_group_nodes) {
7352 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007353 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07007354 }
John Hawkesd1b55132005-09-06 15:18:14 -07007355#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007356
Gregory Haskinsdc938522008-01-25 21:08:26 +01007357 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007358 if (!rd) {
7359 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07007360#ifdef CONFIG_NUMA
7361 kfree(sched_group_nodes);
7362#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007363 return -ENOMEM;
7364 }
7365
Mike Travis7c16ec52008-04-04 18:11:11 -07007366#if SCHED_CPUMASK_ALLOC
7367 /* get space for all scratch cpumask variables */
7368 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7369 if (!allmasks) {
7370 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7371 kfree(rd);
7372#ifdef CONFIG_NUMA
7373 kfree(sched_group_nodes);
7374#endif
7375 return -ENOMEM;
7376 }
7377#endif
7378 tmpmask = (cpumask_t *)allmasks;
7379
7380
7381#ifdef CONFIG_NUMA
7382 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7383#endif
7384
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007386 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007387 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007388 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007389 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07007390 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391
Mike Travis7c16ec52008-04-04 18:11:11 -07007392 *nodemask = node_to_cpumask(cpu_to_node(i));
7393 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394
7395#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02007396 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07007397 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007398 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007399 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007400 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007401 sd->span = *cpu_map;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007402 sd->first_cpu = first_cpu(sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07007403 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007404 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007405 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007406 } else
7407 p = NULL;
7408
Linus Torvalds1da177e2005-04-16 15:20:36 -07007409 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007410 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007411 set_domain_attribute(sd, attr);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007412 sched_domain_node_span(cpu_to_node(i), &sd->span);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007413 sd->first_cpu = first_cpu(sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007414 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007415 if (p)
7416 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007417 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007418#endif
7419
7420 p = sd;
7421 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007422 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007423 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007424 sd->span = *nodemask;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007425 sd->first_cpu = first_cpu(sd->span);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007426 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007427 if (p)
7428 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007429 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007430
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007431#ifdef CONFIG_SCHED_MC
7432 p = sd;
7433 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007434 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007435 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007436 sd->span = cpu_coregroup_map(i);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007437 sd->first_cpu = first_cpu(sd->span);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007438 cpus_and(sd->span, sd->span, *cpu_map);
7439 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007440 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007441 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007442#endif
7443
Linus Torvalds1da177e2005-04-16 15:20:36 -07007444#ifdef CONFIG_SCHED_SMT
7445 p = sd;
7446 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007447 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007448 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007449 sd->span = per_cpu(cpu_sibling_map, i);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007450 sd->first_cpu = first_cpu(sd->span);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007451 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007453 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007454 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455#endif
7456 }
7457
7458#ifdef CONFIG_SCHED_SMT
7459 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007460 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007461 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7462 SCHED_CPUMASK_VAR(send_covered, allmasks);
7463
7464 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7465 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7466 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007467 continue;
7468
Ingo Molnardd41f592007-07-09 18:51:59 +02007469 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007470 &cpu_to_cpu_group,
7471 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472 }
7473#endif
7474
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007475#ifdef CONFIG_SCHED_MC
7476 /* Set up multi-core groups */
7477 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007478 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7479 SCHED_CPUMASK_VAR(send_covered, allmasks);
7480
7481 *this_core_map = cpu_coregroup_map(i);
7482 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7483 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007484 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007485
Ingo Molnardd41f592007-07-09 18:51:59 +02007486 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007487 &cpu_to_core_group,
7488 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007489 }
7490#endif
7491
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492 /* Set up physical groups */
7493 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007494 SCHED_CPUMASK_VAR(nodemask, allmasks);
7495 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496
Mike Travis7c16ec52008-04-04 18:11:11 -07007497 *nodemask = node_to_cpumask(i);
7498 cpus_and(*nodemask, *nodemask, *cpu_map);
7499 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500 continue;
7501
Mike Travis7c16ec52008-04-04 18:11:11 -07007502 init_sched_build_groups(nodemask, cpu_map,
7503 &cpu_to_phys_group,
7504 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007505 }
7506
7507#ifdef CONFIG_NUMA
7508 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007509 if (sd_allnodes) {
7510 SCHED_CPUMASK_VAR(send_covered, allmasks);
7511
7512 init_sched_build_groups(cpu_map, cpu_map,
7513 &cpu_to_allnodes_group,
7514 send_covered, tmpmask);
7515 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007516
7517 for (i = 0; i < MAX_NUMNODES; i++) {
7518 /* Set up node groups */
7519 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007520 SCHED_CPUMASK_VAR(nodemask, allmasks);
7521 SCHED_CPUMASK_VAR(domainspan, allmasks);
7522 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007523 int j;
7524
Mike Travis7c16ec52008-04-04 18:11:11 -07007525 *nodemask = node_to_cpumask(i);
7526 cpus_clear(*covered);
7527
7528 cpus_and(*nodemask, *nodemask, *cpu_map);
7529 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007530 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007531 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007532 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007533
Mike Travis4bdbaad32008-04-15 16:35:52 -07007534 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007535 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007536
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007537 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007538 if (!sg) {
7539 printk(KERN_WARNING "Can not alloc domain group for "
7540 "node %d\n", i);
7541 goto error;
7542 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007543 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007544 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007545 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007546
John Hawkes9c1cfda2005-09-06 15:18:14 -07007547 sd = &per_cpu(node_domains, j);
7548 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007549 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007550 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007551 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007552 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007553 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007554 prev = sg;
7555
7556 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007557 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007558 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007559 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007560
Mike Travis7c16ec52008-04-04 18:11:11 -07007561 cpus_complement(*notcovered, *covered);
7562 cpus_and(*tmpmask, *notcovered, *cpu_map);
7563 cpus_and(*tmpmask, *tmpmask, *domainspan);
7564 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007565 break;
7566
Mike Travis7c16ec52008-04-04 18:11:11 -07007567 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7568 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007569 continue;
7570
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007571 sg = kmalloc_node(sizeof(struct sched_group),
7572 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007573 if (!sg) {
7574 printk(KERN_WARNING
7575 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007576 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007577 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007578 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007579 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007580 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007581 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007582 prev->next = sg;
7583 prev = sg;
7584 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007586#endif
7587
7588 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007589#ifdef CONFIG_SCHED_SMT
7590 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007591 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7592
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007593 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007594 }
7595#endif
7596#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007597 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007598 struct sched_domain *sd = &per_cpu(core_domains, i);
7599
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007600 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007601 }
7602#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007604 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007605 struct sched_domain *sd = &per_cpu(phys_domains, i);
7606
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007607 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007608 }
7609
John Hawkes9c1cfda2005-09-06 15:18:14 -07007610#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007611 for (i = 0; i < MAX_NUMNODES; i++)
7612 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007613
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007614 if (sd_allnodes) {
7615 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007616
Mike Travis7c16ec52008-04-04 18:11:11 -07007617 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7618 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007619 init_numa_sched_groups_power(sg);
7620 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007621#endif
7622
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007624 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625 struct sched_domain *sd;
7626#ifdef CONFIG_SCHED_SMT
7627 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007628#elif defined(CONFIG_SCHED_MC)
7629 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630#else
7631 sd = &per_cpu(phys_domains, i);
7632#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007633 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007634 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007635
Mike Travis7c16ec52008-04-04 18:11:11 -07007636 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007637 return 0;
7638
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007639#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007640error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007641 free_sched_groups(cpu_map, tmpmask);
7642 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007643 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007644#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007645}
Paul Jackson029190c2007-10-18 23:40:20 -07007646
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007647static int build_sched_domains(const cpumask_t *cpu_map)
7648{
7649 return __build_sched_domains(cpu_map, NULL);
7650}
7651
Paul Jackson029190c2007-10-18 23:40:20 -07007652static cpumask_t *doms_cur; /* current sched domains */
7653static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007654static struct sched_domain_attr *dattr_cur; /* attribues of custom domains
7655 in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007656
7657/*
7658 * Special case: If a kmalloc of a doms_cur partition (array of
7659 * cpumask_t) fails, then fallback to a single sched domain,
7660 * as determined by the single cpumask_t fallback_doms.
7661 */
7662static cpumask_t fallback_doms;
7663
Heiko Carstens22e52b02008-03-12 18:31:59 +01007664void __attribute__((weak)) arch_update_cpu_topology(void)
7665{
7666}
7667
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007668/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007669 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007670 * For now this just excludes isolated cpus, but could be used to
7671 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007672 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007673static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007674{
Milton Miller73785472007-10-24 18:23:48 +02007675 int err;
7676
Heiko Carstens22e52b02008-03-12 18:31:59 +01007677 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007678 ndoms_cur = 1;
7679 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7680 if (!doms_cur)
7681 doms_cur = &fallback_doms;
7682 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007683 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007684 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007685 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007686
7687 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007688}
7689
Mike Travis7c16ec52008-04-04 18:11:11 -07007690static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7691 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692{
Mike Travis7c16ec52008-04-04 18:11:11 -07007693 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007694}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007696/*
7697 * Detach sched domains from a group of cpus specified in cpu_map
7698 * These cpus will now be attached to the NULL domain
7699 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007700static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007701{
Mike Travis7c16ec52008-04-04 18:11:11 -07007702 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007703 int i;
7704
Milton Miller6382bc92007-10-15 17:00:19 +02007705 unregister_sched_domain_sysctl();
7706
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007707 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007708 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007709 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007710 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007711}
7712
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007713/* handle null as "default" */
7714static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7715 struct sched_domain_attr *new, int idx_new)
7716{
7717 struct sched_domain_attr tmp;
7718
7719 /* fast path */
7720 if (!new && !cur)
7721 return 1;
7722
7723 tmp = SD_ATTR_INIT;
7724 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7725 new ? (new + idx_new) : &tmp,
7726 sizeof(struct sched_domain_attr));
7727}
7728
Paul Jackson029190c2007-10-18 23:40:20 -07007729/*
7730 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007731 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007732 * doms_new[] to the current sched domain partitioning, doms_cur[].
7733 * It destroys each deleted domain and builds each new domain.
7734 *
7735 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007736 * The masks don't intersect (don't overlap.) We should setup one
7737 * sched domain for each mask. CPUs not in any of the cpumasks will
7738 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007739 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7740 * it as it is.
7741 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007742 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7743 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007744 * failed the kmalloc call, then it can pass in doms_new == NULL,
7745 * and partition_sched_domains() will fallback to the single partition
7746 * 'fallback_doms'.
7747 *
7748 * Call with hotplug lock held
7749 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007750void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7751 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007752{
7753 int i, j;
7754
Heiko Carstens712555e2008-04-28 11:33:07 +02007755 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007756
Milton Miller73785472007-10-24 18:23:48 +02007757 /* always unregister in case we don't destroy any domains */
7758 unregister_sched_domain_sysctl();
7759
Paul Jackson029190c2007-10-18 23:40:20 -07007760 if (doms_new == NULL) {
7761 ndoms_new = 1;
7762 doms_new = &fallback_doms;
7763 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007764 dattr_new = NULL;
Paul Jackson029190c2007-10-18 23:40:20 -07007765 }
7766
7767 /* Destroy deleted domains */
7768 for (i = 0; i < ndoms_cur; i++) {
7769 for (j = 0; j < ndoms_new; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007770 if (cpus_equal(doms_cur[i], doms_new[j])
7771 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007772 goto match1;
7773 }
7774 /* no match - a current sched domain not in new doms_new[] */
7775 detach_destroy_domains(doms_cur + i);
7776match1:
7777 ;
7778 }
7779
7780 /* Build new domains */
7781 for (i = 0; i < ndoms_new; i++) {
7782 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007783 if (cpus_equal(doms_new[i], doms_cur[j])
7784 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007785 goto match2;
7786 }
7787 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007788 __build_sched_domains(doms_new + i,
7789 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007790match2:
7791 ;
7792 }
7793
7794 /* Remember the new sched domains */
7795 if (doms_cur != &fallback_doms)
7796 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007797 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007798 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007799 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007800 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007801
7802 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007803
Heiko Carstens712555e2008-04-28 11:33:07 +02007804 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007805}
7806
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007807#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007808int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007809{
7810 int err;
7811
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007812 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007813 mutex_lock(&sched_domains_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007814 detach_destroy_domains(&cpu_online_map);
7815 err = arch_init_sched_domains(&cpu_online_map);
Heiko Carstens712555e2008-04-28 11:33:07 +02007816 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007817 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007818
7819 return err;
7820}
7821
7822static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7823{
7824 int ret;
7825
7826 if (buf[0] != '0' && buf[0] != '1')
7827 return -EINVAL;
7828
7829 if (smt)
7830 sched_smt_power_savings = (buf[0] == '1');
7831 else
7832 sched_mc_power_savings = (buf[0] == '1');
7833
7834 ret = arch_reinit_sched_domains();
7835
7836 return ret ? ret : count;
7837}
7838
Adrian Bunk6707de002007-08-12 18:08:19 +02007839#ifdef CONFIG_SCHED_MC
7840static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7841{
7842 return sprintf(page, "%u\n", sched_mc_power_savings);
7843}
7844static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7845 const char *buf, size_t count)
7846{
7847 return sched_power_savings_store(buf, count, 0);
7848}
7849static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7850 sched_mc_power_savings_store);
7851#endif
7852
7853#ifdef CONFIG_SCHED_SMT
7854static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7855{
7856 return sprintf(page, "%u\n", sched_smt_power_savings);
7857}
7858static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7859 const char *buf, size_t count)
7860{
7861 return sched_power_savings_store(buf, count, 1);
7862}
7863static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7864 sched_smt_power_savings_store);
7865#endif
7866
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007867int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7868{
7869 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007870
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007871#ifdef CONFIG_SCHED_SMT
7872 if (smt_capable())
7873 err = sysfs_create_file(&cls->kset.kobj,
7874 &attr_sched_smt_power_savings.attr);
7875#endif
7876#ifdef CONFIG_SCHED_MC
7877 if (!err && mc_capable())
7878 err = sysfs_create_file(&cls->kset.kobj,
7879 &attr_sched_mc_power_savings.attr);
7880#endif
7881 return err;
7882}
7883#endif
7884
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007886 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007888 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889 * which will prevent rebalancing while the sched domains are recalculated.
7890 */
7891static int update_sched_domains(struct notifier_block *nfb,
7892 unsigned long action, void *hcpu)
7893{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007894 switch (action) {
7895 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007896 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007898 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007899 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007900 return NOTIFY_OK;
7901
7902 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007903 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007905 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007906 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007907 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007908 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007909 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007910 /*
7911 * Fall through and re-initialise the domains.
7912 */
7913 break;
7914 default:
7915 return NOTIFY_DONE;
7916 }
7917
7918 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007919 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920
7921 return NOTIFY_OK;
7922}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007923
7924void __init sched_init_smp(void)
7925{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007926 cpumask_t non_isolated_cpus;
7927
Mike Travis434d53b2008-04-04 18:11:04 -07007928#if defined(CONFIG_NUMA)
7929 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7930 GFP_KERNEL);
7931 BUG_ON(sched_group_nodes_bycpu == NULL);
7932#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007933 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007934 mutex_lock(&sched_domains_mutex);
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);
Heiko Carstens712555e2008-04-28 11:33:07 +02007939 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007940 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007941 /* XXX: Theoretical race here - CPU may be hotplugged now */
7942 hotcpu_notifier(update_sched_domains, 0);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02007943 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07007944
7945 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007946 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007947 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007948 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007949}
7950#else
7951void __init sched_init_smp(void)
7952{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007953 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954}
7955#endif /* CONFIG_SMP */
7956
7957int in_sched_functions(unsigned long addr)
7958{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007959 return in_lock_functions(addr) ||
7960 (addr >= (unsigned long)__sched_text_start
7961 && addr < (unsigned long)__sched_text_end);
7962}
7963
Alexey Dobriyana9957442007-10-15 17:00:13 +02007964static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007965{
7966 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02007967 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02007968#ifdef CONFIG_FAIR_GROUP_SCHED
7969 cfs_rq->rq = rq;
7970#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007971 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007972}
7973
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007974static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7975{
7976 struct rt_prio_array *array;
7977 int i;
7978
7979 array = &rt_rq->active;
7980 for (i = 0; i < MAX_RT_PRIO; i++) {
7981 INIT_LIST_HEAD(array->queue + i);
7982 __clear_bit(i, array->bitmap);
7983 }
7984 /* delimiter for bitsearch: */
7985 __set_bit(MAX_RT_PRIO, array->bitmap);
7986
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007987#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007988 rt_rq->highest_prio = MAX_RT_PRIO;
7989#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007990#ifdef CONFIG_SMP
7991 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007992 rt_rq->overloaded = 0;
7993#endif
7994
7995 rt_rq->rt_time = 0;
7996 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007997 rt_rq->rt_runtime = 0;
7998 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007999
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008000#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01008001 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008002 rt_rq->rq = rq;
8003#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008004}
8005
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008006#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008007static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
8008 struct sched_entity *se, int cpu, int add,
8009 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008010{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008011 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008012 tg->cfs_rq[cpu] = cfs_rq;
8013 init_cfs_rq(cfs_rq, rq);
8014 cfs_rq->tg = tg;
8015 if (add)
8016 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
8017
8018 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008019 /* se could be NULL for init_task_group */
8020 if (!se)
8021 return;
8022
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008023 if (!parent)
8024 se->cfs_rq = &rq->cfs;
8025 else
8026 se->cfs_rq = parent->my_q;
8027
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008028 se->my_q = cfs_rq;
8029 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008030 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008031 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008032}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008033#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008034
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008035#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008036static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
8037 struct sched_rt_entity *rt_se, int cpu, int add,
8038 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008039{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008040 struct rq *rq = cpu_rq(cpu);
8041
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008042 tg->rt_rq[cpu] = rt_rq;
8043 init_rt_rq(rt_rq, rq);
8044 rt_rq->tg = tg;
8045 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008046 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008047 if (add)
8048 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
8049
8050 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008051 if (!rt_se)
8052 return;
8053
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008054 if (!parent)
8055 rt_se->rt_rq = &rq->rt;
8056 else
8057 rt_se->rt_rq = parent->my_q;
8058
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008059 rt_se->rt_rq = &rq->rt;
8060 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008061 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008062 INIT_LIST_HEAD(&rt_se->run_list);
8063}
8064#endif
8065
Linus Torvalds1da177e2005-04-16 15:20:36 -07008066void __init sched_init(void)
8067{
Ingo Molnardd41f592007-07-09 18:51:59 +02008068 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008069 unsigned long alloc_size = 0, ptr;
8070
8071#ifdef CONFIG_FAIR_GROUP_SCHED
8072 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8073#endif
8074#ifdef CONFIG_RT_GROUP_SCHED
8075 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8076#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008077#ifdef CONFIG_USER_SCHED
8078 alloc_size *= 2;
8079#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008080 /*
8081 * As sched_init() is called before page_alloc is setup,
8082 * we use alloc_bootmem().
8083 */
8084 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07008085 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07008086
8087#ifdef CONFIG_FAIR_GROUP_SCHED
8088 init_task_group.se = (struct sched_entity **)ptr;
8089 ptr += nr_cpu_ids * sizeof(void **);
8090
8091 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8092 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008093
8094#ifdef CONFIG_USER_SCHED
8095 root_task_group.se = (struct sched_entity **)ptr;
8096 ptr += nr_cpu_ids * sizeof(void **);
8097
8098 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8099 ptr += nr_cpu_ids * sizeof(void **);
8100#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008101#endif
8102#ifdef CONFIG_RT_GROUP_SCHED
8103 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8104 ptr += nr_cpu_ids * sizeof(void **);
8105
8106 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008107 ptr += nr_cpu_ids * sizeof(void **);
8108
8109#ifdef CONFIG_USER_SCHED
8110 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8111 ptr += nr_cpu_ids * sizeof(void **);
8112
8113 root_task_group.rt_rq = (struct rt_rq **)ptr;
8114 ptr += nr_cpu_ids * sizeof(void **);
8115#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008116#endif
8117 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008118
Gregory Haskins57d885f2008-01-25 21:08:18 +01008119#ifdef CONFIG_SMP
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008120 init_aggregate();
Gregory Haskins57d885f2008-01-25 21:08:18 +01008121 init_defrootdomain();
8122#endif
8123
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008124 init_rt_bandwidth(&def_rt_bandwidth,
8125 global_rt_period(), global_rt_runtime());
8126
8127#ifdef CONFIG_RT_GROUP_SCHED
8128 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8129 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008130#ifdef CONFIG_USER_SCHED
8131 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8132 global_rt_period(), RUNTIME_INF);
8133#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008134#endif
8135
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008136#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008137 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008138 INIT_LIST_HEAD(&init_task_group.children);
8139
8140#ifdef CONFIG_USER_SCHED
8141 INIT_LIST_HEAD(&root_task_group.children);
8142 init_task_group.parent = &root_task_group;
8143 list_add(&init_task_group.siblings, &root_task_group.children);
8144#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008145#endif
8146
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008147 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008148 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008149
8150 rq = cpu_rq(i);
8151 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07008152 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07008153 rq->nr_running = 0;
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;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008297
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008298 update_rq_clock(rq);
8299 on_rq = p->se.on_rq;
8300 if (on_rq)
8301 deactivate_task(rq, p, 0);
8302 __setscheduler(rq, p, SCHED_NORMAL, 0);
8303 if (on_rq) {
8304 activate_task(rq, p, 0);
8305 resched_task(rq->curr);
8306 }
8307}
8308
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309void normalize_rt_tasks(void)
8310{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008311 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008312 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008313 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008314
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008315 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008316 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008317 /*
8318 * Only normalize user tasks:
8319 */
8320 if (!p->mm)
8321 continue;
8322
Ingo Molnardd41f592007-07-09 18:51:59 +02008323 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008324#ifdef CONFIG_SCHEDSTATS
8325 p->se.wait_start = 0;
8326 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008327 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008328#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008329
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;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008695 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008696
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
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008725 if (shares < MIN_SHARES)
8726 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008727 else if (shares > MAX_SHARES)
8728 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008729
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008730 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008731 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008732 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008733
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008734 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008735 for_each_possible_cpu(i)
8736 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008737 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008738 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008739
8740 /* wait for any ongoing reference to this group to finish */
8741 synchronize_sched();
8742
8743 /*
8744 * Now we are free to modify the group's share on each cpu
8745 * w/o tripping rebalance_share or load_balance_fair.
8746 */
8747 tg->shares = shares;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008748 for_each_possible_cpu(i) {
8749 /*
8750 * force a rebalance
8751 */
8752 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008753 set_se_shares(tg->se[i], shares);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008754 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008755
8756 /*
8757 * Enable load balance activity on this group, by inserting it back on
8758 * each cpu's rq->leaf_cfs_rq_list.
8759 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008760 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008761 for_each_possible_cpu(i)
8762 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008763 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008764 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008765done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008766 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008767 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008768}
8769
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008770unsigned long sched_group_shares(struct task_group *tg)
8771{
8772 return tg->shares;
8773}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008774#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008775
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008776#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008777/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008778 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008779 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008780static DEFINE_MUTEX(rt_constraints_mutex);
8781
8782static unsigned long to_ratio(u64 period, u64 runtime)
8783{
8784 if (runtime == RUNTIME_INF)
8785 return 1ULL << 16;
8786
Roman Zippel6f6d6a12008-05-01 04:34:28 -07008787 return div64_u64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008788}
8789
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008790#ifdef CONFIG_CGROUP_SCHED
8791static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8792{
8793 struct task_group *tgi, *parent = tg->parent;
8794 unsigned long total = 0;
8795
8796 if (!parent) {
8797 if (global_rt_period() < period)
8798 return 0;
8799
8800 return to_ratio(period, runtime) <
8801 to_ratio(global_rt_period(), global_rt_runtime());
8802 }
8803
8804 if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period)
8805 return 0;
8806
8807 rcu_read_lock();
8808 list_for_each_entry_rcu(tgi, &parent->children, siblings) {
8809 if (tgi == tg)
8810 continue;
8811
8812 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8813 tgi->rt_bandwidth.rt_runtime);
8814 }
8815 rcu_read_unlock();
8816
8817 return total + to_ratio(period, runtime) <
8818 to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period),
8819 parent->rt_bandwidth.rt_runtime);
8820}
8821#elif defined CONFIG_USER_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008822static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008823{
8824 struct task_group *tgi;
8825 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008826 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008827 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008828
8829 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008830 list_for_each_entry_rcu(tgi, &task_groups, list) {
8831 if (tgi == tg)
8832 continue;
8833
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008834 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8835 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008836 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008837 rcu_read_unlock();
8838
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008839 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008840}
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008841#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008842
Dhaval Giani521f1a242008-02-28 15:21:56 +05308843/* Must be called with tasklist_lock held */
8844static inline int tg_has_rt_tasks(struct task_group *tg)
8845{
8846 struct task_struct *g, *p;
8847 do_each_thread(g, p) {
8848 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8849 return 1;
8850 } while_each_thread(g, p);
8851 return 0;
8852}
8853
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008854static int tg_set_bandwidth(struct task_group *tg,
8855 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008856{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008857 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008858
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008859 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308860 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008861 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308862 err = -EBUSY;
8863 goto unlock;
8864 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008865 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8866 err = -EINVAL;
8867 goto unlock;
8868 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008869
8870 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008871 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8872 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008873
8874 for_each_possible_cpu(i) {
8875 struct rt_rq *rt_rq = tg->rt_rq[i];
8876
8877 spin_lock(&rt_rq->rt_runtime_lock);
8878 rt_rq->rt_runtime = rt_runtime;
8879 spin_unlock(&rt_rq->rt_runtime_lock);
8880 }
8881 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008882 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308883 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008884 mutex_unlock(&rt_constraints_mutex);
8885
8886 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008887}
8888
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008889int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8890{
8891 u64 rt_runtime, rt_period;
8892
8893 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8894 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8895 if (rt_runtime_us < 0)
8896 rt_runtime = RUNTIME_INF;
8897
8898 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8899}
8900
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008901long sched_group_rt_runtime(struct task_group *tg)
8902{
8903 u64 rt_runtime_us;
8904
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008905 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008906 return -1;
8907
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008908 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008909 do_div(rt_runtime_us, NSEC_PER_USEC);
8910 return rt_runtime_us;
8911}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008912
8913int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8914{
8915 u64 rt_runtime, rt_period;
8916
8917 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8918 rt_runtime = tg->rt_bandwidth.rt_runtime;
8919
8920 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8921}
8922
8923long sched_group_rt_period(struct task_group *tg)
8924{
8925 u64 rt_period_us;
8926
8927 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8928 do_div(rt_period_us, NSEC_PER_USEC);
8929 return rt_period_us;
8930}
8931
8932static int sched_rt_global_constraints(void)
8933{
8934 int ret = 0;
8935
8936 mutex_lock(&rt_constraints_mutex);
8937 if (!__rt_schedulable(NULL, 1, 0))
8938 ret = -EINVAL;
8939 mutex_unlock(&rt_constraints_mutex);
8940
8941 return ret;
8942}
8943#else
8944static int sched_rt_global_constraints(void)
8945{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008946 unsigned long flags;
8947 int i;
8948
8949 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8950 for_each_possible_cpu(i) {
8951 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8952
8953 spin_lock(&rt_rq->rt_runtime_lock);
8954 rt_rq->rt_runtime = global_rt_runtime();
8955 spin_unlock(&rt_rq->rt_runtime_lock);
8956 }
8957 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8958
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008959 return 0;
8960}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008961#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008962
8963int sched_rt_handler(struct ctl_table *table, int write,
8964 struct file *filp, void __user *buffer, size_t *lenp,
8965 loff_t *ppos)
8966{
8967 int ret;
8968 int old_period, old_runtime;
8969 static DEFINE_MUTEX(mutex);
8970
8971 mutex_lock(&mutex);
8972 old_period = sysctl_sched_rt_period;
8973 old_runtime = sysctl_sched_rt_runtime;
8974
8975 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8976
8977 if (!ret && write) {
8978 ret = sched_rt_global_constraints();
8979 if (ret) {
8980 sysctl_sched_rt_period = old_period;
8981 sysctl_sched_rt_runtime = old_runtime;
8982 } else {
8983 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8984 def_rt_bandwidth.rt_period =
8985 ns_to_ktime(global_rt_period());
8986 }
8987 }
8988 mutex_unlock(&mutex);
8989
8990 return ret;
8991}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008992
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008993#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008994
8995/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008996static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008997{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008998 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8999 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009000}
9001
9002static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02009003cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009004{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009005 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009006
Paul Menage2b01dfe2007-10-24 18:23:50 +02009007 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009008 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009009 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009010 return &init_task_group.css;
9011 }
9012
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009013 parent = cgroup_tg(cgrp->parent);
9014 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009015 if (IS_ERR(tg))
9016 return ERR_PTR(-ENOMEM);
9017
9018 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009019 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009020
9021 return &tg->css;
9022}
9023
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009024static void
9025cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009026{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009027 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009028
9029 sched_destroy_group(tg);
9030}
9031
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009032static int
9033cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
9034 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009035{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009036#ifdef CONFIG_RT_GROUP_SCHED
9037 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009038 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009039 return -EINVAL;
9040#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009041 /* We don't support RT-tasks being in separate groups */
9042 if (tsk->sched_class != &fair_sched_class)
9043 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009044#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009045
9046 return 0;
9047}
9048
9049static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02009050cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009051 struct cgroup *old_cont, struct task_struct *tsk)
9052{
9053 sched_move_task(tsk);
9054}
9055
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009056#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07009057static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009058 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009059{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009060 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009061}
9062
Paul Menagef4c753b2008-04-29 00:59:56 -07009063static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009064{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009065 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009066
9067 return (u64) tg->shares;
9068}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009069#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009070
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009071#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07009072static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009073 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009074{
Paul Menage06ecb272008-04-29 01:00:06 -07009075 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009076}
9077
Paul Menage06ecb272008-04-29 01:00:06 -07009078static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009079{
Paul Menage06ecb272008-04-29 01:00:06 -07009080 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009081}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009082
9083static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9084 u64 rt_period_us)
9085{
9086 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9087}
9088
9089static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9090{
9091 return sched_group_rt_period(cgroup_tg(cgrp));
9092}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009093#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009094
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009095static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009096#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009097 {
9098 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009099 .read_u64 = cpu_shares_read_u64,
9100 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009101 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009102#endif
9103#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009104 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009105 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009106 .read_s64 = cpu_rt_runtime_read,
9107 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009108 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009109 {
9110 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009111 .read_u64 = cpu_rt_period_read_uint,
9112 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009113 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009114#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009115};
9116
9117static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9118{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009119 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009120}
9121
9122struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009123 .name = "cpu",
9124 .create = cpu_cgroup_create,
9125 .destroy = cpu_cgroup_destroy,
9126 .can_attach = cpu_cgroup_can_attach,
9127 .attach = cpu_cgroup_attach,
9128 .populate = cpu_cgroup_populate,
9129 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009130 .early_init = 1,
9131};
9132
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009133#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009134
9135#ifdef CONFIG_CGROUP_CPUACCT
9136
9137/*
9138 * CPU accounting code for task groups.
9139 *
9140 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9141 * (balbir@in.ibm.com).
9142 */
9143
9144/* track cpu usage of a group of tasks */
9145struct cpuacct {
9146 struct cgroup_subsys_state css;
9147 /* cpuusage holds pointer to a u64-type object on every cpu */
9148 u64 *cpuusage;
9149};
9150
9151struct cgroup_subsys cpuacct_subsys;
9152
9153/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309154static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009155{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309156 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009157 struct cpuacct, css);
9158}
9159
9160/* return cpu accounting group to which this task belongs */
9161static inline struct cpuacct *task_ca(struct task_struct *tsk)
9162{
9163 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9164 struct cpuacct, css);
9165}
9166
9167/* create a new cpu accounting group */
9168static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309169 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009170{
9171 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9172
9173 if (!ca)
9174 return ERR_PTR(-ENOMEM);
9175
9176 ca->cpuusage = alloc_percpu(u64);
9177 if (!ca->cpuusage) {
9178 kfree(ca);
9179 return ERR_PTR(-ENOMEM);
9180 }
9181
9182 return &ca->css;
9183}
9184
9185/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009186static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309187cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009188{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309189 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009190
9191 free_percpu(ca->cpuusage);
9192 kfree(ca);
9193}
9194
9195/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309196static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009197{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309198 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009199 u64 totalcpuusage = 0;
9200 int i;
9201
9202 for_each_possible_cpu(i) {
9203 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9204
9205 /*
9206 * Take rq->lock to make 64-bit addition safe on 32-bit
9207 * platforms.
9208 */
9209 spin_lock_irq(&cpu_rq(i)->lock);
9210 totalcpuusage += *cpuusage;
9211 spin_unlock_irq(&cpu_rq(i)->lock);
9212 }
9213
9214 return totalcpuusage;
9215}
9216
Dhaval Giani0297b802008-02-29 10:02:44 +05309217static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9218 u64 reset)
9219{
9220 struct cpuacct *ca = cgroup_ca(cgrp);
9221 int err = 0;
9222 int i;
9223
9224 if (reset) {
9225 err = -EINVAL;
9226 goto out;
9227 }
9228
9229 for_each_possible_cpu(i) {
9230 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9231
9232 spin_lock_irq(&cpu_rq(i)->lock);
9233 *cpuusage = 0;
9234 spin_unlock_irq(&cpu_rq(i)->lock);
9235 }
9236out:
9237 return err;
9238}
9239
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009240static struct cftype files[] = {
9241 {
9242 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009243 .read_u64 = cpuusage_read,
9244 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009245 },
9246};
9247
Dhaval Giani32cd7562008-02-29 10:02:43 +05309248static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009249{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309250 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009251}
9252
9253/*
9254 * charge this task's execution time to its accounting group.
9255 *
9256 * called with rq->lock held.
9257 */
9258static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9259{
9260 struct cpuacct *ca;
9261
9262 if (!cpuacct_subsys.active)
9263 return;
9264
9265 ca = task_ca(tsk);
9266 if (ca) {
9267 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
9268
9269 *cpuusage += cputime;
9270 }
9271}
9272
9273struct cgroup_subsys cpuacct_subsys = {
9274 .name = "cpuacct",
9275 .create = cpuacct_create,
9276 .destroy = cpuacct_destroy,
9277 .populate = cpuacct_populate,
9278 .subsys_id = cpuacct_subsys_id,
9279};
9280#endif /* CONFIG_CGROUP_CPUACCT */