blob: e2e985eeee786298dac18e899d6e043a206b43a5 [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 Molnar62160e32007-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
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415/***
2416 * try_to_wake_up - wake up a thread
2417 * @p: the to-be-woken-up thread
2418 * @state: the mask of task states that can be woken
2419 * @sync: do a synchronous wakeup?
2420 *
2421 * Put it on the run-queue if it's not already there. The "current"
2422 * thread is always on the run-queue (except when the actual
2423 * re-schedule is in progress), and as such you're allowed to do
2424 * the simpler "current->state = TASK_RUNNING" to mark yourself
2425 * runnable without the overhead of this.
2426 *
2427 * returns failure only if the task is already active.
2428 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002429static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430{
Ingo Molnarcc367732007-10-15 17:00:18 +02002431 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 unsigned long flags;
2433 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002434 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Ingo Molnarb85d0662008-03-16 20:03:22 +01002436 if (!sched_feat(SYNC_WAKEUPS))
2437 sync = 0;
2438
Linus Torvalds04e2f172008-02-23 18:05:03 -08002439 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 rq = task_rq_lock(p, &flags);
2441 old_state = p->state;
2442 if (!(old_state & state))
2443 goto out;
2444
Ingo Molnardd41f592007-07-09 18:51:59 +02002445 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 goto out_running;
2447
2448 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002449 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 this_cpu = smp_processor_id();
2451
2452#ifdef CONFIG_SMP
2453 if (unlikely(task_running(rq, p)))
2454 goto out_activate;
2455
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002456 cpu = p->sched_class->select_task_rq(p, sync);
2457 if (cpu != orig_cpu) {
2458 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 task_rq_unlock(rq, &flags);
2460 /* might preempt at this point */
2461 rq = task_rq_lock(p, &flags);
2462 old_state = p->state;
2463 if (!(old_state & state))
2464 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002465 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 goto out_running;
2467
2468 this_cpu = smp_processor_id();
2469 cpu = task_cpu(p);
2470 }
2471
Gregory Haskinse7693a32008-01-25 21:08:09 +01002472#ifdef CONFIG_SCHEDSTATS
2473 schedstat_inc(rq, ttwu_count);
2474 if (cpu == this_cpu)
2475 schedstat_inc(rq, ttwu_local);
2476 else {
2477 struct sched_domain *sd;
2478 for_each_domain(this_cpu, sd) {
2479 if (cpu_isset(cpu, sd->span)) {
2480 schedstat_inc(sd, ttwu_wake_remote);
2481 break;
2482 }
2483 }
2484 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01002485#endif
2486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487out_activate:
2488#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002489 schedstat_inc(p, se.nr_wakeups);
2490 if (sync)
2491 schedstat_inc(p, se.nr_wakeups_sync);
2492 if (orig_cpu != cpu)
2493 schedstat_inc(p, se.nr_wakeups_migrate);
2494 if (cpu == this_cpu)
2495 schedstat_inc(p, se.nr_wakeups_local);
2496 else
2497 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002498 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002499 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 success = 1;
2501
2502out_running:
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +02002503 trace_mark(kernel_sched_wakeup,
2504 "pid %d state %ld ## rq %p task %p rq->curr %p",
2505 p->pid, p->state, rq, p, rq->curr);
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002506 check_preempt_curr(rq, p);
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002509#ifdef CONFIG_SMP
2510 if (p->sched_class->task_wake_up)
2511 p->sched_class->task_wake_up(rq, p);
2512#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513out:
2514 task_rq_unlock(rq, &flags);
2515
2516 return success;
2517}
2518
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002519int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002521 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523EXPORT_SYMBOL(wake_up_process);
2524
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002525int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526{
2527 return try_to_wake_up(p, state, 0);
2528}
2529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530/*
2531 * Perform scheduler related setup for a newly forked process p.
2532 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002533 *
2534 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002536static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
Ingo Molnardd41f592007-07-09 18:51:59 +02002538 p->se.exec_start = 0;
2539 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002540 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002541 p->se.last_wakeup = 0;
2542 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002543
2544#ifdef CONFIG_SCHEDSTATS
2545 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002546 p->se.sum_sleep_runtime = 0;
2547 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002548 p->se.block_start = 0;
2549 p->se.sleep_max = 0;
2550 p->se.block_max = 0;
2551 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002552 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002553 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002554#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002555
Peter Zijlstrafa717062008-01-25 21:08:27 +01002556 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002557 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002558 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002559
Avi Kivitye107be32007-07-26 13:40:43 +02002560#ifdef CONFIG_PREEMPT_NOTIFIERS
2561 INIT_HLIST_HEAD(&p->preempt_notifiers);
2562#endif
2563
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 /*
2565 * We mark the process as running here, but have not actually
2566 * inserted it onto the runqueue yet. This guarantees that
2567 * nobody will actually run it, and a signal or other external
2568 * event cannot wake it up and insert it on the runqueue either.
2569 */
2570 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002571}
2572
2573/*
2574 * fork()/clone()-time setup:
2575 */
2576void sched_fork(struct task_struct *p, int clone_flags)
2577{
2578 int cpu = get_cpu();
2579
2580 __sched_fork(p);
2581
2582#ifdef CONFIG_SMP
2583 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2584#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002585 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002586
2587 /*
2588 * Make sure we do not leak PI boosting priority to the child:
2589 */
2590 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002591 if (!rt_prio(p->prio))
2592 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002593
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002594#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002595 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002596 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002598#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002599 p->oncpu = 0;
2600#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002602 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002603 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002605 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606}
2607
2608/*
2609 * wake_up_new_task - wake up a newly created task for the first time.
2610 *
2611 * This function will do some initial scheduler statistics housekeeping
2612 * that must be done for every newly created context, then puts the task
2613 * on the runqueue and wakes it.
2614 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002615void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616{
2617 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002618 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
2620 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002622 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624 p->prio = effective_prio(p);
2625
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002626 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002627 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002630 * Let the scheduling class do new task startup
2631 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002633 p->sched_class->task_new(rq, p);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02002634 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 }
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +02002636 trace_mark(kernel_sched_wakeup_new,
2637 "pid %d state %ld ## rq %p task %p rq->curr %p",
2638 p->pid, p->state, rq, p, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02002639 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002640#ifdef CONFIG_SMP
2641 if (p->sched_class->task_wake_up)
2642 p->sched_class->task_wake_up(rq, p);
2643#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002644 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645}
2646
Avi Kivitye107be32007-07-26 13:40:43 +02002647#ifdef CONFIG_PREEMPT_NOTIFIERS
2648
2649/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002650 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2651 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002652 */
2653void preempt_notifier_register(struct preempt_notifier *notifier)
2654{
2655 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2656}
2657EXPORT_SYMBOL_GPL(preempt_notifier_register);
2658
2659/**
2660 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002661 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002662 *
2663 * This is safe to call from within a preemption notifier.
2664 */
2665void preempt_notifier_unregister(struct preempt_notifier *notifier)
2666{
2667 hlist_del(&notifier->link);
2668}
2669EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2670
2671static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2672{
2673 struct preempt_notifier *notifier;
2674 struct hlist_node *node;
2675
2676 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2677 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2678}
2679
2680static void
2681fire_sched_out_preempt_notifiers(struct task_struct *curr,
2682 struct task_struct *next)
2683{
2684 struct preempt_notifier *notifier;
2685 struct hlist_node *node;
2686
2687 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2688 notifier->ops->sched_out(notifier, next);
2689}
2690
2691#else
2692
2693static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2694{
2695}
2696
2697static void
2698fire_sched_out_preempt_notifiers(struct task_struct *curr,
2699 struct task_struct *next)
2700{
2701}
2702
2703#endif
2704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002706 * prepare_task_switch - prepare to switch tasks
2707 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002708 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002709 * @next: the task we are going to switch to.
2710 *
2711 * This is called with the rq lock held and interrupts off. It must
2712 * be paired with a subsequent finish_task_switch after the context
2713 * switch.
2714 *
2715 * prepare_task_switch sets up locking and calls architecture specific
2716 * hooks.
2717 */
Avi Kivitye107be32007-07-26 13:40:43 +02002718static inline void
2719prepare_task_switch(struct rq *rq, struct task_struct *prev,
2720 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002721{
Avi Kivitye107be32007-07-26 13:40:43 +02002722 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002723 prepare_lock_switch(rq, next);
2724 prepare_arch_switch(next);
2725}
2726
2727/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002729 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 * @prev: the thread we just switched away from.
2731 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002732 * finish_task_switch must be called after the context switch, paired
2733 * with a prepare_task_switch call before the context switch.
2734 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2735 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 *
2737 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002738 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 * with the lock held can cause deadlocks; see schedule() for
2740 * details.)
2741 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002742static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 __releases(rq->lock)
2744{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002746 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
2748 rq->prev_mm = NULL;
2749
2750 /*
2751 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002752 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002753 * schedule one last time. The schedule call will never return, and
2754 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002755 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 * still held, otherwise prev could be scheduled on another cpu, die
2757 * there before we look at prev->state, and then the reference would
2758 * be dropped twice.
2759 * Manfred Spraul <manfred@colorfullife.com>
2760 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002761 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002762 finish_arch_switch(prev);
2763 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002764#ifdef CONFIG_SMP
2765 if (current->sched_class->post_schedule)
2766 current->sched_class->post_schedule(rq);
2767#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002768
Avi Kivitye107be32007-07-26 13:40:43 +02002769 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 if (mm)
2771 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002772 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002773 /*
2774 * Remove function-return probe instances associated with this
2775 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002776 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002777 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780}
2781
2782/**
2783 * schedule_tail - first thing a freshly forked thread must call.
2784 * @prev: the thread we just switched away from.
2785 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002786asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 __releases(rq->lock)
2788{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002789 struct rq *rq = this_rq();
2790
Nick Piggin4866cde2005-06-25 14:57:23 -07002791 finish_task_switch(rq, prev);
2792#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2793 /* In this case, finish_task_switch does not reenable preemption */
2794 preempt_enable();
2795#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002797 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798}
2799
2800/*
2801 * context_switch - switch to the new MM and the new
2802 * thread's register state.
2803 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002804static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002805context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002806 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807{
Ingo Molnardd41f592007-07-09 18:51:59 +02002808 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Avi Kivitye107be32007-07-26 13:40:43 +02002810 prepare_task_switch(rq, prev, next);
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +02002811 trace_mark(kernel_sched_schedule,
2812 "prev_pid %d next_pid %d prev_state %ld "
2813 "## rq %p prev %p next %p",
2814 prev->pid, next->pid, prev->state,
2815 rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002816 mm = next->mm;
2817 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002818 /*
2819 * For paravirt, this is coupled with an exit in switch_to to
2820 * combine the page table reload and the switch backend into
2821 * one hypercall.
2822 */
2823 arch_enter_lazy_cpu_mode();
2824
Ingo Molnardd41f592007-07-09 18:51:59 +02002825 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 next->active_mm = oldmm;
2827 atomic_inc(&oldmm->mm_count);
2828 enter_lazy_tlb(oldmm, next);
2829 } else
2830 switch_mm(oldmm, mm, next);
2831
Ingo Molnardd41f592007-07-09 18:51:59 +02002832 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 rq->prev_mm = oldmm;
2835 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002836 /*
2837 * Since the runqueue lock will be released by the next
2838 * task (which is an invalid locking op but in the case
2839 * of the scheduler it's an obvious special-case), so we
2840 * do an early lockdep release here:
2841 */
2842#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002843 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002844#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
2846 /* Here we just switch the register state and the stack. */
2847 switch_to(prev, next, prev);
2848
Ingo Molnardd41f592007-07-09 18:51:59 +02002849 barrier();
2850 /*
2851 * this_rq must be evaluated again because prev may have moved
2852 * CPUs since it called schedule(), thus the 'rq' on its stack
2853 * frame will be invalid.
2854 */
2855 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856}
2857
2858/*
2859 * nr_running, nr_uninterruptible and nr_context_switches:
2860 *
2861 * externally visible scheduler statistics: current number of runnable
2862 * threads, current number of uninterruptible-sleeping threads, total
2863 * number of context switches performed since bootup.
2864 */
2865unsigned long nr_running(void)
2866{
2867 unsigned long i, sum = 0;
2868
2869 for_each_online_cpu(i)
2870 sum += cpu_rq(i)->nr_running;
2871
2872 return sum;
2873}
2874
2875unsigned long nr_uninterruptible(void)
2876{
2877 unsigned long i, sum = 0;
2878
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002879 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 sum += cpu_rq(i)->nr_uninterruptible;
2881
2882 /*
2883 * Since we read the counters lockless, it might be slightly
2884 * inaccurate. Do not allow it to go below zero though:
2885 */
2886 if (unlikely((long)sum < 0))
2887 sum = 0;
2888
2889 return sum;
2890}
2891
2892unsigned long long nr_context_switches(void)
2893{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002894 int i;
2895 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002897 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 sum += cpu_rq(i)->nr_switches;
2899
2900 return sum;
2901}
2902
2903unsigned long nr_iowait(void)
2904{
2905 unsigned long i, sum = 0;
2906
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002907 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2909
2910 return sum;
2911}
2912
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002913unsigned long nr_active(void)
2914{
2915 unsigned long i, running = 0, uninterruptible = 0;
2916
2917 for_each_online_cpu(i) {
2918 running += cpu_rq(i)->nr_running;
2919 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2920 }
2921
2922 if (unlikely((long)uninterruptible < 0))
2923 uninterruptible = 0;
2924
2925 return running + uninterruptible;
2926}
2927
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002929 * Update rq->cpu_load[] statistics. This function is usually called every
2930 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002931 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002932static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002933{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002934 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002935 int i, scale;
2936
2937 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002938
2939 /* Update our load: */
2940 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2941 unsigned long old_load, new_load;
2942
2943 /* scale is effectively 1 << i now, and >> i divides by scale */
2944
2945 old_load = this_rq->cpu_load[i];
2946 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002947 /*
2948 * Round up the averaging division if load is increasing. This
2949 * prevents us from getting stuck on 9 if the load is 10, for
2950 * example.
2951 */
2952 if (new_load > old_load)
2953 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002954 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2955 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002956}
2957
Ingo Molnardd41f592007-07-09 18:51:59 +02002958#ifdef CONFIG_SMP
2959
Ingo Molnar48f24c42006-07-03 00:25:40 -07002960/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 * double_rq_lock - safely lock two runqueues
2962 *
2963 * Note this does not disable interrupts like task_rq_lock,
2964 * you need to do so manually before calling.
2965 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002966static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 __acquires(rq1->lock)
2968 __acquires(rq2->lock)
2969{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002970 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 if (rq1 == rq2) {
2972 spin_lock(&rq1->lock);
2973 __acquire(rq2->lock); /* Fake it out ;) */
2974 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002975 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 spin_lock(&rq1->lock);
2977 spin_lock(&rq2->lock);
2978 } else {
2979 spin_lock(&rq2->lock);
2980 spin_lock(&rq1->lock);
2981 }
2982 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002983 update_rq_clock(rq1);
2984 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985}
2986
2987/*
2988 * double_rq_unlock - safely unlock two runqueues
2989 *
2990 * Note this does not restore interrupts like task_rq_unlock,
2991 * you need to do so manually after calling.
2992 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002993static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 __releases(rq1->lock)
2995 __releases(rq2->lock)
2996{
2997 spin_unlock(&rq1->lock);
2998 if (rq1 != rq2)
2999 spin_unlock(&rq2->lock);
3000 else
3001 __release(rq2->lock);
3002}
3003
3004/*
3005 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
3006 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01003007static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 __releases(this_rq->lock)
3009 __acquires(busiest->lock)
3010 __acquires(this_rq->lock)
3011{
Steven Rostedte8fa1362008-01-25 21:08:05 +01003012 int ret = 0;
3013
Kirill Korotaev054b9102006-12-10 02:20:11 -08003014 if (unlikely(!irqs_disabled())) {
3015 /* printk() doesn't work good under rq->lock */
3016 spin_unlock(&this_rq->lock);
3017 BUG_ON(1);
3018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003020 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 spin_unlock(&this_rq->lock);
3022 spin_lock(&busiest->lock);
3023 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01003024 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 } else
3026 spin_lock(&busiest->lock);
3027 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01003028 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029}
3030
3031/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 * If dest_cpu is allowed for this process, migrate the task to it.
3033 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003034 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 * the cpu_allowed mask is restored.
3036 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003037static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003039 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003041 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
3043 rq = task_rq_lock(p, &flags);
3044 if (!cpu_isset(dest_cpu, p->cpus_allowed)
3045 || unlikely(cpu_is_offline(dest_cpu)))
3046 goto out;
3047
3048 /* force the process onto the specified CPU */
3049 if (migrate_task(p, dest_cpu, &req)) {
3050 /* Need to wait for migration thread (might exit: take ref). */
3051 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003052
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 get_task_struct(mt);
3054 task_rq_unlock(rq, &flags);
3055 wake_up_process(mt);
3056 put_task_struct(mt);
3057 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07003058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 return;
3060 }
3061out:
3062 task_rq_unlock(rq, &flags);
3063}
3064
3065/*
Nick Piggin476d1392005-06-25 14:57:29 -07003066 * sched_exec - execve() is a valuable balancing opportunity, because at
3067 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 */
3069void sched_exec(void)
3070{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003072 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003074 if (new_cpu != this_cpu)
3075 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076}
3077
3078/*
3079 * pull_task - move a task from a remote runqueue to the local runqueue.
3080 * Both runqueues must be locked.
3081 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003082static void pull_task(struct rq *src_rq, struct task_struct *p,
3083 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003085 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003087 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 /*
3089 * Note that idle threads have a prio of MAX_PRIO, for this test
3090 * to be always true for them.
3091 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003092 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093}
3094
3095/*
3096 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
3097 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003098static
Ingo Molnar70b97a72006-07-03 00:25:42 -07003099int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003100 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003101 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102{
3103 /*
3104 * We do not migrate tasks that are:
3105 * 1) running (obviously), or
3106 * 2) cannot be migrated to this CPU due to cpus_allowed, or
3107 * 3) are cache-hot on their current CPU.
3108 */
Ingo Molnarcc367732007-10-15 17:00:18 +02003109 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
3110 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003112 }
Nick Piggin81026792005-06-25 14:57:07 -07003113 *all_pinned = 0;
3114
Ingo Molnarcc367732007-10-15 17:00:18 +02003115 if (task_running(rq, p)) {
3116 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07003117 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Ingo Molnarda84d962007-10-15 17:00:18 +02003120 /*
3121 * Aggressive migration if:
3122 * 1) task is cache cold, or
3123 * 2) too many balance attempts have failed.
3124 */
3125
Ingo Molnar6bc16652007-10-15 17:00:18 +02003126 if (!task_hot(p, rq->clock, sd) ||
3127 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003128#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02003129 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003130 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02003131 schedstat_inc(p, se.nr_forced_migrations);
3132 }
Ingo Molnarda84d962007-10-15 17:00:18 +02003133#endif
3134 return 1;
3135 }
3136
Ingo Molnarcc367732007-10-15 17:00:18 +02003137 if (task_hot(p, rq->clock, sd)) {
3138 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02003139 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 return 1;
3142}
3143
Peter Williamse1d14842007-10-24 18:23:51 +02003144static unsigned long
3145balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3146 unsigned long max_load_move, struct sched_domain *sd,
3147 enum cpu_idle_type idle, int *all_pinned,
3148 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003149{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003150 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02003151 struct task_struct *p;
3152 long rem_load_move = max_load_move;
3153
Peter Williamse1d14842007-10-24 18:23:51 +02003154 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003155 goto out;
3156
3157 pinned = 1;
3158
3159 /*
3160 * Start the load-balancing iterator:
3161 */
3162 p = iterator->start(iterator->arg);
3163next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003164 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003165 goto out;
3166 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003167 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02003168 * skip a task if it will be the highest priority task (i.e. smallest
3169 * prio value) on its new queue regardless of its load weight
3170 */
3171 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
3172 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003173 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003174 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003175 p = iterator->next(iterator->arg);
3176 goto next;
3177 }
3178
3179 pull_task(busiest, p, this_rq, this_cpu);
3180 pulled++;
3181 rem_load_move -= p->se.load.weight;
3182
3183 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003184 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003185 */
Peter Williamse1d14842007-10-24 18:23:51 +02003186 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003187 if (p->prio < *this_best_prio)
3188 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003189 p = iterator->next(iterator->arg);
3190 goto next;
3191 }
3192out:
3193 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003194 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003195 * so we can safely collect pull_task() stats here rather than
3196 * inside pull_task().
3197 */
3198 schedstat_add(sd, lb_gained[idle], pulled);
3199
3200 if (all_pinned)
3201 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003202
3203 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003204}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003205
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206/*
Peter Williams43010652007-08-09 11:16:46 +02003207 * move_tasks tries to move up to max_load_move weighted load from busiest to
3208 * this_rq, as part of a balancing operation within domain "sd".
3209 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 *
3211 * Called with both runqueues locked.
3212 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003213static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003214 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003215 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003216 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003218 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003219 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003220 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Ingo Molnardd41f592007-07-09 18:51:59 +02003222 do {
Peter Williams43010652007-08-09 11:16:46 +02003223 total_load_moved +=
3224 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003225 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003226 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003227 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02003228 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
Peter Williams43010652007-08-09 11:16:46 +02003230 return total_load_moved > 0;
3231}
3232
Peter Williamse1d14842007-10-24 18:23:51 +02003233static int
3234iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3235 struct sched_domain *sd, enum cpu_idle_type idle,
3236 struct rq_iterator *iterator)
3237{
3238 struct task_struct *p = iterator->start(iterator->arg);
3239 int pinned = 0;
3240
3241 while (p) {
3242 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3243 pull_task(busiest, p, this_rq, this_cpu);
3244 /*
3245 * Right now, this is only the second place pull_task()
3246 * is called, so we can safely collect pull_task()
3247 * stats here rather than inside pull_task().
3248 */
3249 schedstat_inc(sd, lb_gained[idle]);
3250
3251 return 1;
3252 }
3253 p = iterator->next(iterator->arg);
3254 }
3255
3256 return 0;
3257}
3258
Peter Williams43010652007-08-09 11:16:46 +02003259/*
3260 * move_one_task tries to move exactly one task from busiest to this_rq, as
3261 * part of active balancing operations within "domain".
3262 * Returns 1 if successful and 0 otherwise.
3263 *
3264 * Called with both runqueues locked.
3265 */
3266static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3267 struct sched_domain *sd, enum cpu_idle_type idle)
3268{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003269 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003270
3271 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003272 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003273 return 1;
3274
3275 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276}
3277
3278/*
3279 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003280 * domain. It calculates and returns the amount of weighted load which
3281 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 */
3283static struct sched_group *
3284find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003285 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003286 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287{
3288 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3289 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003290 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003291 unsigned long busiest_load_per_task, busiest_nr_running;
3292 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003293 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003294#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3295 int power_savings_balance = 1;
3296 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3297 unsigned long min_nr_running = ULONG_MAX;
3298 struct sched_group *group_min = NULL, *group_leader = NULL;
3299#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
3301 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003302 busiest_load_per_task = busiest_nr_running = 0;
3303 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003304 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003305 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003306 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003307 load_idx = sd->newidle_idx;
3308 else
3309 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310
3311 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003312 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 int local_group;
3314 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003315 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003316 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003317 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
3319 local_group = cpu_isset(this_cpu, group->cpumask);
3320
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003321 if (local_group)
3322 balance_cpu = first_cpu(group->cpumask);
3323
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003325 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02003326 max_cpu_load = 0;
3327 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
3329 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003330 struct rq *rq;
3331
3332 if (!cpu_isset(i, *cpus))
3333 continue;
3334
3335 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003336
Suresh Siddha9439aab2007-07-19 21:28:35 +02003337 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003338 *sd_idle = 0;
3339
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003341 if (local_group) {
3342 if (idle_cpu(i) && !first_idle_cpu) {
3343 first_idle_cpu = 1;
3344 balance_cpu = i;
3345 }
3346
Nick Piggina2000572006-02-10 01:51:02 -08003347 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003348 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003349 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003350 if (load > max_cpu_load)
3351 max_cpu_load = load;
3352 if (min_cpu_load > load)
3353 min_cpu_load = load;
3354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
3356 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003357 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003358 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 }
3360
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003361 /*
3362 * First idle cpu or the first cpu(busiest) in this sched group
3363 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003364 * domains. In the newly idle case, we will allow all the cpu's
3365 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003366 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003367 if (idle != CPU_NEWLY_IDLE && local_group &&
3368 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003369 *balance = 0;
3370 goto ret;
3371 }
3372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003374 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375
3376 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003377 avg_load = sg_div_cpu_power(group,
3378 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
Ken Chen908a7c12007-10-17 16:55:11 +02003380 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
3381 __group_imb = 1;
3382
Eric Dumazet5517d862007-05-08 00:32:57 -07003383 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003384
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 if (local_group) {
3386 this_load = avg_load;
3387 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003388 this_nr_running = sum_nr_running;
3389 this_load_per_task = sum_weighted_load;
3390 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003391 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 max_load = avg_load;
3393 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003394 busiest_nr_running = sum_nr_running;
3395 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003396 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003398
3399#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3400 /*
3401 * Busy processors will not participate in power savings
3402 * balance.
3403 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003404 if (idle == CPU_NOT_IDLE ||
3405 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3406 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003407
3408 /*
3409 * If the local group is idle or completely loaded
3410 * no need to do power savings balance at this domain
3411 */
3412 if (local_group && (this_nr_running >= group_capacity ||
3413 !this_nr_running))
3414 power_savings_balance = 0;
3415
Ingo Molnardd41f592007-07-09 18:51:59 +02003416 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003417 * If a group is already running at full capacity or idle,
3418 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003419 */
3420 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003421 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003422 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003423
Ingo Molnardd41f592007-07-09 18:51:59 +02003424 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003425 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003426 * This is the group from where we need to pick up the load
3427 * for saving power
3428 */
3429 if ((sum_nr_running < min_nr_running) ||
3430 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003431 first_cpu(group->cpumask) <
3432 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003433 group_min = group;
3434 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003435 min_load_per_task = sum_weighted_load /
3436 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003437 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003438
Ingo Molnardd41f592007-07-09 18:51:59 +02003439 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003440 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003441 * capacity but still has some space to pick up some load
3442 * from other group and save more power
3443 */
3444 if (sum_nr_running <= group_capacity - 1) {
3445 if (sum_nr_running > leader_nr_running ||
3446 (sum_nr_running == leader_nr_running &&
3447 first_cpu(group->cpumask) >
3448 first_cpu(group_leader->cpumask))) {
3449 group_leader = group;
3450 leader_nr_running = sum_nr_running;
3451 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003452 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003453group_next:
3454#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 group = group->next;
3456 } while (group != sd->groups);
3457
Peter Williams2dd73a42006-06-27 02:54:34 -07003458 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 goto out_balanced;
3460
3461 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3462
3463 if (this_load >= avg_load ||
3464 100*max_load <= sd->imbalance_pct*this_load)
3465 goto out_balanced;
3466
Peter Williams2dd73a42006-06-27 02:54:34 -07003467 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003468 if (group_imb)
3469 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3470
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 /*
3472 * We're trying to get all the cpus to the average_load, so we don't
3473 * want to push ourselves above the average load, nor do we wish to
3474 * reduce the max loaded cpu below the average load, as either of these
3475 * actions would just result in more rebalancing later, and ping-pong
3476 * tasks around. Thus we look for the minimum possible imbalance.
3477 * Negative imbalances (*we* are more loaded than anyone else) will
3478 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003479 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 * appear as very large values with unsigned longs.
3481 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003482 if (max_load <= busiest_load_per_task)
3483 goto out_balanced;
3484
3485 /*
3486 * In the presence of smp nice balancing, certain scenarios can have
3487 * max load less than avg load(as we skip the groups at or below
3488 * its cpu_power, while calculating max_load..)
3489 */
3490 if (max_load < avg_load) {
3491 *imbalance = 0;
3492 goto small_imbalance;
3493 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003494
3495 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003496 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003497
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003499 *imbalance = min(max_pull * busiest->__cpu_power,
3500 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 / SCHED_LOAD_SCALE;
3502
Peter Williams2dd73a42006-06-27 02:54:34 -07003503 /*
3504 * if *imbalance is less than the average load per runnable task
3505 * there is no gaurantee that any tasks will be moved so we'll have
3506 * a think about bumping its value to force at least one task to be
3507 * moved
3508 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003509 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003510 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003511 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
Peter Williams2dd73a42006-06-27 02:54:34 -07003513small_imbalance:
3514 pwr_move = pwr_now = 0;
3515 imbn = 2;
3516 if (this_nr_running) {
3517 this_load_per_task /= this_nr_running;
3518 if (busiest_load_per_task > this_load_per_task)
3519 imbn = 1;
3520 } else
3521 this_load_per_task = SCHED_LOAD_SCALE;
3522
Ingo Molnardd41f592007-07-09 18:51:59 +02003523 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3524 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003525 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 return busiest;
3527 }
3528
3529 /*
3530 * OK, we don't have enough imbalance to justify moving tasks,
3531 * however we may be able to increase total CPU power used by
3532 * moving them.
3533 */
3534
Eric Dumazet5517d862007-05-08 00:32:57 -07003535 pwr_now += busiest->__cpu_power *
3536 min(busiest_load_per_task, max_load);
3537 pwr_now += this->__cpu_power *
3538 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 pwr_now /= SCHED_LOAD_SCALE;
3540
3541 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003542 tmp = sg_div_cpu_power(busiest,
3543 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003545 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003546 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
3548 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003549 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003550 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003551 tmp = sg_div_cpu_power(this,
3552 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003554 tmp = sg_div_cpu_power(this,
3555 busiest_load_per_task * SCHED_LOAD_SCALE);
3556 pwr_move += this->__cpu_power *
3557 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 pwr_move /= SCHED_LOAD_SCALE;
3559
3560 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003561 if (pwr_move > pwr_now)
3562 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 }
3564
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 return busiest;
3566
3567out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003568#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003569 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003570 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003572 if (this == group_leader && group_leader != group_min) {
3573 *imbalance = min_load_per_task;
3574 return group_min;
3575 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003576#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003577ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 *imbalance = 0;
3579 return NULL;
3580}
3581
3582/*
3583 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3584 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003585static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003586find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003587 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003589 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003590 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 int i;
3592
3593 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003594 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003595
3596 if (!cpu_isset(i, *cpus))
3597 continue;
3598
Ingo Molnar48f24c42006-07-03 00:25:40 -07003599 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003600 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601
Ingo Molnardd41f592007-07-09 18:51:59 +02003602 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003603 continue;
3604
Ingo Molnardd41f592007-07-09 18:51:59 +02003605 if (wl > max_load) {
3606 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003607 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 }
3609 }
3610
3611 return busiest;
3612}
3613
3614/*
Nick Piggin77391d72005-06-25 14:57:30 -07003615 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3616 * so long as it is large enough.
3617 */
3618#define MAX_PINNED_INTERVAL 512
3619
3620/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3622 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003624static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003625 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003626 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627{
Peter Williams43010652007-08-09 11:16:46 +02003628 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003631 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003632 unsigned long flags;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003633 int unlock_aggregate;
Nick Piggin5969fe02005-09-10 00:26:19 -07003634
Mike Travis7c16ec52008-04-04 18:11:11 -07003635 cpus_setall(*cpus);
3636
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003637 unlock_aggregate = get_aggregate(sd);
3638
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003639 /*
3640 * When power savings policy is enabled for the parent domain, idle
3641 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003642 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003643 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003644 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003645 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003646 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003647 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648
Ingo Molnar2d723762007-10-15 17:00:12 +02003649 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003651redo:
3652 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003653 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003654
Chen, Kenneth W06066712006-12-10 02:20:35 -08003655 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003656 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003657
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 if (!group) {
3659 schedstat_inc(sd, lb_nobusyg[idle]);
3660 goto out_balanced;
3661 }
3662
Mike Travis7c16ec52008-04-04 18:11:11 -07003663 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 if (!busiest) {
3665 schedstat_inc(sd, lb_nobusyq[idle]);
3666 goto out_balanced;
3667 }
3668
Nick Piggindb935db2005-06-25 14:57:11 -07003669 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
3671 schedstat_add(sd, lb_imbalance[idle], imbalance);
3672
Peter Williams43010652007-08-09 11:16:46 +02003673 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 if (busiest->nr_running > 1) {
3675 /*
3676 * Attempt to move tasks. If find_busiest_group has found
3677 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003678 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 * correctly treated as an imbalance.
3680 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003681 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003682 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003683 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003684 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003685 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003686 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003687
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003688 /*
3689 * some other cpu did the load balance for us.
3690 */
Peter Williams43010652007-08-09 11:16:46 +02003691 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003692 resched_cpu(this_cpu);
3693
Nick Piggin81026792005-06-25 14:57:07 -07003694 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003695 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003696 cpu_clear(cpu_of(busiest), *cpus);
3697 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003698 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003699 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 }
Nick Piggin81026792005-06-25 14:57:07 -07003702
Peter Williams43010652007-08-09 11:16:46 +02003703 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 schedstat_inc(sd, lb_failed[idle]);
3705 sd->nr_balance_failed++;
3706
3707 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003709 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003710
3711 /* don't kick the migration_thread, if the curr
3712 * task on busiest cpu can't be moved to this_cpu
3713 */
3714 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003715 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003716 all_pinned = 1;
3717 goto out_one_pinned;
3718 }
3719
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 if (!busiest->active_balance) {
3721 busiest->active_balance = 1;
3722 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003723 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003725 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003726 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 wake_up_process(busiest->migration_thread);
3728
3729 /*
3730 * We've kicked active balancing, reset the failure
3731 * counter.
3732 */
Nick Piggin39507452005-06-25 14:57:09 -07003733 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 }
Nick Piggin81026792005-06-25 14:57:07 -07003735 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 sd->nr_balance_failed = 0;
3737
Nick Piggin81026792005-06-25 14:57:07 -07003738 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 /* We were unbalanced, so reset the balancing interval */
3740 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003741 } else {
3742 /*
3743 * If we've begun active balancing, start to back off. This
3744 * case may not be covered by the all_pinned logic if there
3745 * is only 1 task on the busy runqueue (because we don't call
3746 * move_tasks).
3747 */
3748 if (sd->balance_interval < sd->max_interval)
3749 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 }
3751
Peter Williams43010652007-08-09 11:16:46 +02003752 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003753 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003754 ld_moved = -1;
3755
3756 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
3758out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 schedstat_inc(sd, lb_balanced[idle]);
3760
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003761 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003762
3763out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003765 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3766 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 sd->balance_interval *= 2;
3768
Ingo Molnar48f24c42006-07-03 00:25:40 -07003769 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003770 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003771 ld_moved = -1;
3772 else
3773 ld_moved = 0;
3774out:
3775 if (unlock_aggregate)
3776 put_aggregate(sd);
3777 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778}
3779
3780/*
3781 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3782 * tasks if there is an imbalance.
3783 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003784 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 * this_rq is locked.
3786 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003787static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003788load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3789 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790{
3791 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003792 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003794 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003795 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003796 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003797
3798 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003799
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003800 /*
3801 * When power savings policy is enabled for the parent domain, idle
3802 * sibling can pick up load irrespective of busy siblings. In this case,
3803 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003804 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003805 */
3806 if (sd->flags & SD_SHARE_CPUPOWER &&
3807 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003808 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
Ingo Molnar2d723762007-10-15 17:00:12 +02003810 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003811redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003812 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003813 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003815 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003816 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 }
3818
Mike Travis7c16ec52008-04-04 18:11:11 -07003819 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003820 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003821 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003822 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 }
3824
Nick Piggindb935db2005-06-25 14:57:11 -07003825 BUG_ON(busiest == this_rq);
3826
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003827 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003828
Peter Williams43010652007-08-09 11:16:46 +02003829 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003830 if (busiest->nr_running > 1) {
3831 /* Attempt to move tasks */
3832 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003833 /* this_rq->clock is already updated */
3834 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003835 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003836 imbalance, sd, CPU_NEWLY_IDLE,
3837 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003838 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003839
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003840 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003841 cpu_clear(cpu_of(busiest), *cpus);
3842 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003843 goto redo;
3844 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003845 }
3846
Peter Williams43010652007-08-09 11:16:46 +02003847 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003848 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003849 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3850 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003851 return -1;
3852 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003853 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854
Peter Williams43010652007-08-09 11:16:46 +02003855 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003856
3857out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003858 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003859 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003860 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003861 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003862 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003863
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865}
3866
3867/*
3868 * idle_balance is called by schedule() if this_cpu is about to become
3869 * idle. Attempts to pull tasks from other CPUs.
3870 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003871static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872{
3873 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003874 int pulled_task = -1;
3875 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003876 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
3878 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003879 unsigned long interval;
3880
3881 if (!(sd->flags & SD_LOAD_BALANCE))
3882 continue;
3883
3884 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003885 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003886 pulled_task = load_balance_newidle(this_cpu, this_rq,
3887 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003888
3889 interval = msecs_to_jiffies(sd->balance_interval);
3890 if (time_after(next_balance, sd->last_balance + interval))
3891 next_balance = sd->last_balance + interval;
3892 if (pulled_task)
3893 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003895 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003896 /*
3897 * We are going idle. next_balance may be set based on
3898 * a busy processor. So reset next_balance.
3899 */
3900 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902}
3903
3904/*
3905 * active_load_balance is run by migration threads. It pushes running tasks
3906 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3907 * running on each physical CPU where possible, and avoids physical /
3908 * logical imbalances.
3909 *
3910 * Called with busiest_rq locked.
3911 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003912static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913{
Nick Piggin39507452005-06-25 14:57:09 -07003914 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003915 struct sched_domain *sd;
3916 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003917
Ingo Molnar48f24c42006-07-03 00:25:40 -07003918 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003919 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003920 return;
3921
3922 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
3924 /*
Nick Piggin39507452005-06-25 14:57:09 -07003925 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003926 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003927 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 */
Nick Piggin39507452005-06-25 14:57:09 -07003929 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
Nick Piggin39507452005-06-25 14:57:09 -07003931 /* move a task from busiest_rq to target_rq */
3932 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003933 update_rq_clock(busiest_rq);
3934 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Nick Piggin39507452005-06-25 14:57:09 -07003936 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003937 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003938 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003939 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003940 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
Ingo Molnar48f24c42006-07-03 00:25:40 -07003943 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003944 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Peter Williams43010652007-08-09 11:16:46 +02003946 if (move_one_task(target_rq, target_cpu, busiest_rq,
3947 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003948 schedstat_inc(sd, alb_pushed);
3949 else
3950 schedstat_inc(sd, alb_failed);
3951 }
Nick Piggin39507452005-06-25 14:57:09 -07003952 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953}
3954
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003955#ifdef CONFIG_NO_HZ
3956static struct {
3957 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003958 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003959} nohz ____cacheline_aligned = {
3960 .load_balancer = ATOMIC_INIT(-1),
3961 .cpu_mask = CPU_MASK_NONE,
3962};
3963
Christoph Lameter7835b982006-12-10 02:20:22 -08003964/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003965 * This routine will try to nominate the ilb (idle load balancing)
3966 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3967 * load balancing on behalf of all those cpus. If all the cpus in the system
3968 * go into this tickless mode, then there will be no ilb owner (as there is
3969 * no need for one) and all the cpus will sleep till the next wakeup event
3970 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003971 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003972 * For the ilb owner, tick is not stopped. And this tick will be used
3973 * for idle load balancing. ilb owner will still be part of
3974 * nohz.cpu_mask..
3975 *
3976 * While stopping the tick, this cpu will become the ilb owner if there
3977 * is no other owner. And will be the owner till that cpu becomes busy
3978 * or if all cpus in the system stop their ticks at which point
3979 * there is no need for ilb owner.
3980 *
3981 * When the ilb owner becomes busy, it nominates another owner, during the
3982 * next busy scheduler_tick()
3983 */
3984int select_nohz_load_balancer(int stop_tick)
3985{
3986 int cpu = smp_processor_id();
3987
3988 if (stop_tick) {
3989 cpu_set(cpu, nohz.cpu_mask);
3990 cpu_rq(cpu)->in_nohz_recently = 1;
3991
3992 /*
3993 * If we are going offline and still the leader, give up!
3994 */
3995 if (cpu_is_offline(cpu) &&
3996 atomic_read(&nohz.load_balancer) == cpu) {
3997 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3998 BUG();
3999 return 0;
4000 }
4001
4002 /* time for ilb owner also to sleep */
4003 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4004 if (atomic_read(&nohz.load_balancer) == cpu)
4005 atomic_set(&nohz.load_balancer, -1);
4006 return 0;
4007 }
4008
4009 if (atomic_read(&nohz.load_balancer) == -1) {
4010 /* make me the ilb owner */
4011 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
4012 return 1;
4013 } else if (atomic_read(&nohz.load_balancer) == cpu)
4014 return 1;
4015 } else {
4016 if (!cpu_isset(cpu, nohz.cpu_mask))
4017 return 0;
4018
4019 cpu_clear(cpu, nohz.cpu_mask);
4020
4021 if (atomic_read(&nohz.load_balancer) == cpu)
4022 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4023 BUG();
4024 }
4025 return 0;
4026}
4027#endif
4028
4029static DEFINE_SPINLOCK(balancing);
4030
4031/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004032 * It checks each scheduling domain to see if it is due to be balanced,
4033 * and initiates a balancing operation if so.
4034 *
4035 * Balancing parameters are set up in arch_init_sched_domains.
4036 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004037static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08004038{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004039 int balance = 1;
4040 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08004041 unsigned long interval;
4042 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004043 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08004044 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004045 int update_next_balance = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07004046 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004048 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 if (!(sd->flags & SD_LOAD_BALANCE))
4050 continue;
4051
4052 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004053 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 interval *= sd->busy_factor;
4055
4056 /* scale ms to jiffies */
4057 interval = msecs_to_jiffies(interval);
4058 if (unlikely(!interval))
4059 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02004060 if (interval > HZ*NR_CPUS/10)
4061 interval = HZ*NR_CPUS/10;
4062
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063
Christoph Lameter08c183f2006-12-10 02:20:29 -08004064 if (sd->flags & SD_SERIALIZE) {
4065 if (!spin_trylock(&balancing))
4066 goto out;
4067 }
4068
Christoph Lameterc9819f42006-12-10 02:20:25 -08004069 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07004070 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004071 /*
4072 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07004073 * longer idle, or one of our SMT siblings is
4074 * not idle.
4075 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004076 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004078 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08004080 if (sd->flags & SD_SERIALIZE)
4081 spin_unlock(&balancing);
4082out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02004083 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08004084 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004085 update_next_balance = 1;
4086 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004087
4088 /*
4089 * Stop the load balance at this level. There is another
4090 * CPU in our sched group which is doing load balancing more
4091 * actively.
4092 */
4093 if (!balance)
4094 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004096
4097 /*
4098 * next_balance will be updated only when there is a need.
4099 * When the cpu is attached to null domain for ex, it will not be
4100 * updated.
4101 */
4102 if (likely(update_next_balance))
4103 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004104}
4105
4106/*
4107 * run_rebalance_domains is triggered when needed from the scheduler tick.
4108 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4109 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4110 */
4111static void run_rebalance_domains(struct softirq_action *h)
4112{
Ingo Molnardd41f592007-07-09 18:51:59 +02004113 int this_cpu = smp_processor_id();
4114 struct rq *this_rq = cpu_rq(this_cpu);
4115 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4116 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004117
Ingo Molnardd41f592007-07-09 18:51:59 +02004118 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004119
4120#ifdef CONFIG_NO_HZ
4121 /*
4122 * If this cpu is the owner for idle load balancing, then do the
4123 * balancing on behalf of the other idle cpus whose ticks are
4124 * stopped.
4125 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004126 if (this_rq->idle_at_tick &&
4127 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004128 cpumask_t cpus = nohz.cpu_mask;
4129 struct rq *rq;
4130 int balance_cpu;
4131
Ingo Molnardd41f592007-07-09 18:51:59 +02004132 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004133 for_each_cpu_mask(balance_cpu, cpus) {
4134 /*
4135 * If this cpu gets work to do, stop the load balancing
4136 * work being done for other cpus. Next load
4137 * balancing owner will pick it up.
4138 */
4139 if (need_resched())
4140 break;
4141
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004142 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004143
4144 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004145 if (time_after(this_rq->next_balance, rq->next_balance))
4146 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004147 }
4148 }
4149#endif
4150}
4151
4152/*
4153 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4154 *
4155 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4156 * idle load balancing owner or decide to stop the periodic load balancing,
4157 * if the whole system is idle.
4158 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004159static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004160{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004161#ifdef CONFIG_NO_HZ
4162 /*
4163 * If we were in the nohz mode recently and busy at the current
4164 * scheduler tick, then check if we need to nominate new idle
4165 * load balancer.
4166 */
4167 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4168 rq->in_nohz_recently = 0;
4169
4170 if (atomic_read(&nohz.load_balancer) == cpu) {
4171 cpu_clear(cpu, nohz.cpu_mask);
4172 atomic_set(&nohz.load_balancer, -1);
4173 }
4174
4175 if (atomic_read(&nohz.load_balancer) == -1) {
4176 /*
4177 * simple selection for now: Nominate the
4178 * first cpu in the nohz list to be the next
4179 * ilb owner.
4180 *
4181 * TBD: Traverse the sched domains and nominate
4182 * the nearest cpu in the nohz.cpu_mask.
4183 */
4184 int ilb = first_cpu(nohz.cpu_mask);
4185
Mike Travis434d53b2008-04-04 18:11:04 -07004186 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004187 resched_cpu(ilb);
4188 }
4189 }
4190
4191 /*
4192 * If this cpu is idle and doing idle load balancing for all the
4193 * cpus with ticks stopped, is it time for that to stop?
4194 */
4195 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
4196 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4197 resched_cpu(cpu);
4198 return;
4199 }
4200
4201 /*
4202 * If this cpu is idle and the idle load balancing is done by
4203 * someone else, then no need raise the SCHED_SOFTIRQ
4204 */
4205 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
4206 cpu_isset(cpu, nohz.cpu_mask))
4207 return;
4208#endif
4209 if (time_after_eq(jiffies, rq->next_balance))
4210 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211}
Ingo Molnardd41f592007-07-09 18:51:59 +02004212
4213#else /* CONFIG_SMP */
4214
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215/*
4216 * on UP we do not need to balance between CPUs:
4217 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004218static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219{
4220}
Ingo Molnardd41f592007-07-09 18:51:59 +02004221
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222#endif
4223
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224DEFINE_PER_CPU(struct kernel_stat, kstat);
4225
4226EXPORT_PER_CPU_SYMBOL(kstat);
4227
4228/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02004229 * Return p->sum_exec_runtime plus any more ns on the sched_clock
4230 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02004232unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004235 u64 ns, delta_exec;
4236 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004237
Ingo Molnar41b86e92007-07-09 18:51:58 +02004238 rq = task_rq_lock(p, &flags);
4239 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004240 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02004241 update_rq_clock(rq);
4242 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004243 if ((s64)delta_exec > 0)
4244 ns += delta_exec;
4245 }
4246 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004247
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 return ns;
4249}
4250
4251/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 * Account user cpu time to a process.
4253 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 * @cputime: the cpu time spent in user space since the last update
4255 */
4256void account_user_time(struct task_struct *p, cputime_t cputime)
4257{
4258 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4259 cputime64_t tmp;
4260
4261 p->utime = cputime_add(p->utime, cputime);
4262
4263 /* Add user time to cpustat. */
4264 tmp = cputime_to_cputime64(cputime);
4265 if (TASK_NICE(p) > 0)
4266 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4267 else
4268 cpustat->user = cputime64_add(cpustat->user, tmp);
4269}
4270
4271/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004272 * Account guest cpu time to a process.
4273 * @p: the process that the cpu time gets accounted to
4274 * @cputime: the cpu time spent in virtual machine since the last update
4275 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004276static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004277{
4278 cputime64_t tmp;
4279 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4280
4281 tmp = cputime_to_cputime64(cputime);
4282
4283 p->utime = cputime_add(p->utime, cputime);
4284 p->gtime = cputime_add(p->gtime, cputime);
4285
4286 cpustat->user = cputime64_add(cpustat->user, tmp);
4287 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4288}
4289
4290/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004291 * Account scaled user cpu time to a process.
4292 * @p: the process that the cpu time gets accounted to
4293 * @cputime: the cpu time spent in user space since the last update
4294 */
4295void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4296{
4297 p->utimescaled = cputime_add(p->utimescaled, cputime);
4298}
4299
4300/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 * Account system cpu time to a process.
4302 * @p: the process that the cpu time gets accounted to
4303 * @hardirq_offset: the offset to subtract from hardirq_count()
4304 * @cputime: the cpu time spent in kernel space since the last update
4305 */
4306void account_system_time(struct task_struct *p, int hardirq_offset,
4307 cputime_t cputime)
4308{
4309 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004310 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 cputime64_t tmp;
4312
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004313 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
4314 account_guest_time(p, cputime);
4315 return;
4316 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004317
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 p->stime = cputime_add(p->stime, cputime);
4319
4320 /* Add system time to cpustat. */
4321 tmp = cputime_to_cputime64(cputime);
4322 if (hardirq_count() - hardirq_offset)
4323 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4324 else if (softirq_count())
4325 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004326 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004328 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4330 else
4331 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4332 /* Account for system time used */
4333 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334}
4335
4336/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004337 * Account scaled system cpu time to a process.
4338 * @p: the process that the cpu time gets accounted to
4339 * @hardirq_offset: the offset to subtract from hardirq_count()
4340 * @cputime: the cpu time spent in kernel space since the last update
4341 */
4342void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4343{
4344 p->stimescaled = cputime_add(p->stimescaled, cputime);
4345}
4346
4347/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 * Account for involuntary wait time.
4349 * @p: the process from which the cpu time has been stolen
4350 * @steal: the cpu time spent in involuntary wait
4351 */
4352void account_steal_time(struct task_struct *p, cputime_t steal)
4353{
4354 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4355 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004356 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357
4358 if (p == rq->idle) {
4359 p->stime = cputime_add(p->stime, steal);
4360 if (atomic_read(&rq->nr_iowait) > 0)
4361 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4362 else
4363 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004364 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4366}
4367
Christoph Lameter7835b982006-12-10 02:20:22 -08004368/*
4369 * This function gets called by the timer code, with HZ frequency.
4370 * We call it with interrupts disabled.
4371 *
4372 * It also gets called by the fork code, when changing the parent's
4373 * timeslices.
4374 */
4375void scheduler_tick(void)
4376{
Christoph Lameter7835b982006-12-10 02:20:22 -08004377 int cpu = smp_processor_id();
4378 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004379 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004380
4381 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004382
Ingo Molnardd41f592007-07-09 18:51:59 +02004383 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004384 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004385 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004386 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004387 spin_unlock(&rq->lock);
4388
Christoph Lametere418e1c2006-12-10 02:20:23 -08004389#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004390 rq->idle_at_tick = idle_cpu(cpu);
4391 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004392#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393}
4394
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004395#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
4396 defined(CONFIG_PREEMPT_TRACER))
4397
4398static inline unsigned long get_parent_ip(unsigned long addr)
4399{
4400 if (in_lock_functions(addr)) {
4401 addr = CALLER_ADDR2;
4402 if (in_lock_functions(addr))
4403 addr = CALLER_ADDR3;
4404 }
4405 return addr;
4406}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407
Srinivasa Ds43627582008-02-23 15:24:04 -08004408void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004410#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 /*
4412 * Underflow?
4413 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004414 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4415 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004416#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004418#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419 /*
4420 * Spinlock count overflowing soon?
4421 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004422 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4423 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004424#endif
4425 if (preempt_count() == val)
4426 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427}
4428EXPORT_SYMBOL(add_preempt_count);
4429
Srinivasa Ds43627582008-02-23 15:24:04 -08004430void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004432#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 /*
4434 * Underflow?
4435 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004436 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4437 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 /*
4439 * Is the spinlock portion underflowing?
4440 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004441 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4442 !(preempt_count() & PREEMPT_MASK)))
4443 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004444#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004445
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004446 if (preempt_count() == val)
4447 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448 preempt_count() -= val;
4449}
4450EXPORT_SYMBOL(sub_preempt_count);
4451
4452#endif
4453
4454/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004455 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004457static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458{
Satyam Sharma838225b2007-10-24 18:23:50 +02004459 struct pt_regs *regs = get_irq_regs();
4460
4461 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4462 prev->comm, prev->pid, preempt_count());
4463
Ingo Molnardd41f592007-07-09 18:51:59 +02004464 debug_show_held_locks(prev);
4465 if (irqs_disabled())
4466 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004467
4468 if (regs)
4469 show_regs(regs);
4470 else
4471 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004472}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473
Ingo Molnardd41f592007-07-09 18:51:59 +02004474/*
4475 * Various schedule()-time debugging checks and statistics:
4476 */
4477static inline void schedule_debug(struct task_struct *prev)
4478{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004480 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 * schedule() atomically, we ignore that path for now.
4482 * Otherwise, whine if we are scheduling when we should not be.
4483 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004484 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
4485 __schedule_bug(prev);
4486
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4488
Ingo Molnar2d723762007-10-15 17:00:12 +02004489 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004490#ifdef CONFIG_SCHEDSTATS
4491 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004492 schedstat_inc(this_rq(), bkl_count);
4493 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004494 }
4495#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004496}
4497
4498/*
4499 * Pick up the highest-prio task:
4500 */
4501static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004502pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004503{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004504 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004505 struct task_struct *p;
4506
4507 /*
4508 * Optimization: we know that if all tasks are in
4509 * the fair class we can call that function directly:
4510 */
4511 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004512 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004513 if (likely(p))
4514 return p;
4515 }
4516
4517 class = sched_class_highest;
4518 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004519 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004520 if (p)
4521 return p;
4522 /*
4523 * Will never be NULL as the idle class always
4524 * returns a non-NULL p:
4525 */
4526 class = class->next;
4527 }
4528}
4529
4530/*
4531 * schedule() is the main scheduler function.
4532 */
4533asmlinkage void __sched schedule(void)
4534{
4535 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004536 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004537 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02004538 int cpu;
4539
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540need_resched:
4541 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004542 cpu = smp_processor_id();
4543 rq = cpu_rq(cpu);
4544 rcu_qsctr_inc(cpu);
4545 prev = rq->curr;
4546 switch_count = &prev->nivcsw;
4547
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 release_kernel_lock(prev);
4549need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
Ingo Molnardd41f592007-07-09 18:51:59 +02004551 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004553 hrtick_clear(rq);
4554
Ingo Molnar1e819952007-10-15 17:00:13 +02004555 /*
4556 * Do the rq-clock update outside the rq lock:
4557 */
4558 local_irq_disable();
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004559 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004560 spin_lock(&rq->lock);
4561 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
Ingo Molnardd41f592007-07-09 18:51:59 +02004563 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
4564 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
Roel Kluin23e3c3c2008-03-13 17:41:59 +01004565 signal_pending(prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004566 prev->state = TASK_RUNNING;
4567 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004568 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004569 }
4570 switch_count = &prev->nvcsw;
4571 }
4572
Steven Rostedt9a897c52008-01-25 21:08:22 +01004573#ifdef CONFIG_SMP
4574 if (prev->sched_class->pre_schedule)
4575 prev->sched_class->pre_schedule(rq, prev);
4576#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004577
Ingo Molnardd41f592007-07-09 18:51:59 +02004578 if (unlikely(!rq->nr_running))
4579 idle_balance(cpu, rq);
4580
Ingo Molnar31ee5292007-08-09 11:16:49 +02004581 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004582 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004585 sched_info_switch(prev, next);
4586
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 rq->nr_switches++;
4588 rq->curr = next;
4589 ++*switch_count;
4590
Ingo Molnardd41f592007-07-09 18:51:59 +02004591 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004592 /*
4593 * the context switch might have flipped the stack from under
4594 * us, hence refresh the local variables.
4595 */
4596 cpu = smp_processor_id();
4597 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 } else
4599 spin_unlock_irq(&rq->lock);
4600
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004601 hrtick_set(rq);
4602
4603 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004605
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 preempt_enable_no_resched();
4607 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4608 goto need_resched;
4609}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610EXPORT_SYMBOL(schedule);
4611
4612#ifdef CONFIG_PREEMPT
4613/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004614 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004615 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 * occur there and call schedule directly.
4617 */
4618asmlinkage void __sched preempt_schedule(void)
4619{
4620 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004621
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 /*
4623 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004624 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004626 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 return;
4628
Andi Kleen3a5c3592007-10-15 17:00:14 +02004629 do {
4630 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004631 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004632 sub_preempt_count(PREEMPT_ACTIVE);
4633
4634 /*
4635 * Check again in case we missed a preemption opportunity
4636 * between schedule and now.
4637 */
4638 barrier();
4639 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641EXPORT_SYMBOL(preempt_schedule);
4642
4643/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004644 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 * off of irq context.
4646 * Note, that this is called and return with irqs disabled. This will
4647 * protect us against recursive calling from irq.
4648 */
4649asmlinkage void __sched preempt_schedule_irq(void)
4650{
4651 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004652
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004653 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 BUG_ON(ti->preempt_count || !irqs_disabled());
4655
Andi Kleen3a5c3592007-10-15 17:00:14 +02004656 do {
4657 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004658 local_irq_enable();
4659 schedule();
4660 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004661 sub_preempt_count(PREEMPT_ACTIVE);
4662
4663 /*
4664 * Check again in case we missed a preemption opportunity
4665 * between schedule and now.
4666 */
4667 barrier();
4668 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669}
4670
4671#endif /* CONFIG_PREEMPT */
4672
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004673int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4674 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004676 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678EXPORT_SYMBOL(default_wake_function);
4679
4680/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004681 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4682 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 * number) then we wake all the non-exclusive tasks and one exclusive task.
4684 *
4685 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004686 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4688 */
4689static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4690 int nr_exclusive, int sync, void *key)
4691{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004692 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004694 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004695 unsigned flags = curr->flags;
4696
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004698 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 break;
4700 }
4701}
4702
4703/**
4704 * __wake_up - wake up threads blocked on a waitqueue.
4705 * @q: the waitqueue
4706 * @mode: which threads
4707 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004708 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004710void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004711 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712{
4713 unsigned long flags;
4714
4715 spin_lock_irqsave(&q->lock, flags);
4716 __wake_up_common(q, mode, nr_exclusive, 0, key);
4717 spin_unlock_irqrestore(&q->lock, flags);
4718}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719EXPORT_SYMBOL(__wake_up);
4720
4721/*
4722 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4723 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004724void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725{
4726 __wake_up_common(q, mode, 1, 0, NULL);
4727}
4728
4729/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004730 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 * @q: the waitqueue
4732 * @mode: which threads
4733 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4734 *
4735 * The sync wakeup differs that the waker knows that it will schedule
4736 * away soon, so while the target thread will be woken up, it will not
4737 * be migrated to another CPU - ie. the two threads are 'synchronized'
4738 * with each other. This can prevent needless bouncing between CPUs.
4739 *
4740 * On UP it can prevent extra preemption.
4741 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004742void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004743__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744{
4745 unsigned long flags;
4746 int sync = 1;
4747
4748 if (unlikely(!q))
4749 return;
4750
4751 if (unlikely(!nr_exclusive))
4752 sync = 0;
4753
4754 spin_lock_irqsave(&q->lock, flags);
4755 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4756 spin_unlock_irqrestore(&q->lock, flags);
4757}
4758EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4759
Ingo Molnarb15136e2007-10-24 18:23:48 +02004760void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761{
4762 unsigned long flags;
4763
4764 spin_lock_irqsave(&x->wait.lock, flags);
4765 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004766 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 spin_unlock_irqrestore(&x->wait.lock, flags);
4768}
4769EXPORT_SYMBOL(complete);
4770
Ingo Molnarb15136e2007-10-24 18:23:48 +02004771void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772{
4773 unsigned long flags;
4774
4775 spin_lock_irqsave(&x->wait.lock, flags);
4776 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004777 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 spin_unlock_irqrestore(&x->wait.lock, flags);
4779}
4780EXPORT_SYMBOL(complete_all);
4781
Andi Kleen8cbbe862007-10-15 17:00:14 +02004782static inline long __sched
4783do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 if (!x->done) {
4786 DECLARE_WAITQUEUE(wait, current);
4787
4788 wait.flags |= WQ_FLAG_EXCLUSIVE;
4789 __add_wait_queue_tail(&x->wait, &wait);
4790 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004791 if ((state == TASK_INTERRUPTIBLE &&
4792 signal_pending(current)) ||
4793 (state == TASK_KILLABLE &&
4794 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004795 __remove_wait_queue(&x->wait, &wait);
4796 return -ERESTARTSYS;
4797 }
4798 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004800 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004802 if (!timeout) {
4803 __remove_wait_queue(&x->wait, &wait);
4804 return timeout;
4805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806 } while (!x->done);
4807 __remove_wait_queue(&x->wait, &wait);
4808 }
4809 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004810 return timeout;
4811}
4812
4813static long __sched
4814wait_for_common(struct completion *x, long timeout, int state)
4815{
4816 might_sleep();
4817
4818 spin_lock_irq(&x->wait.lock);
4819 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004821 return timeout;
4822}
4823
Ingo Molnarb15136e2007-10-24 18:23:48 +02004824void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004825{
4826 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827}
4828EXPORT_SYMBOL(wait_for_completion);
4829
Ingo Molnarb15136e2007-10-24 18:23:48 +02004830unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4832{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004833 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834}
4835EXPORT_SYMBOL(wait_for_completion_timeout);
4836
Andi Kleen8cbbe862007-10-15 17:00:14 +02004837int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838{
Andi Kleen51e97992007-10-18 21:32:55 +02004839 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4840 if (t == -ERESTARTSYS)
4841 return t;
4842 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843}
4844EXPORT_SYMBOL(wait_for_completion_interruptible);
4845
Ingo Molnarb15136e2007-10-24 18:23:48 +02004846unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847wait_for_completion_interruptible_timeout(struct completion *x,
4848 unsigned long timeout)
4849{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004850 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851}
4852EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4853
Matthew Wilcox009e5772007-12-06 12:29:54 -05004854int __sched wait_for_completion_killable(struct completion *x)
4855{
4856 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4857 if (t == -ERESTARTSYS)
4858 return t;
4859 return 0;
4860}
4861EXPORT_SYMBOL(wait_for_completion_killable);
4862
Andi Kleen8cbbe862007-10-15 17:00:14 +02004863static long __sched
4864sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004865{
4866 unsigned long flags;
4867 wait_queue_t wait;
4868
4869 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870
Andi Kleen8cbbe862007-10-15 17:00:14 +02004871 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872
Andi Kleen8cbbe862007-10-15 17:00:14 +02004873 spin_lock_irqsave(&q->lock, flags);
4874 __add_wait_queue(q, &wait);
4875 spin_unlock(&q->lock);
4876 timeout = schedule_timeout(timeout);
4877 spin_lock_irq(&q->lock);
4878 __remove_wait_queue(q, &wait);
4879 spin_unlock_irqrestore(&q->lock, flags);
4880
4881 return timeout;
4882}
4883
4884void __sched interruptible_sleep_on(wait_queue_head_t *q)
4885{
4886 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888EXPORT_SYMBOL(interruptible_sleep_on);
4889
Ingo Molnar0fec1712007-07-09 18:52:01 +02004890long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004891interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004893 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4896
Ingo Molnar0fec1712007-07-09 18:52:01 +02004897void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004899 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901EXPORT_SYMBOL(sleep_on);
4902
Ingo Molnar0fec1712007-07-09 18:52:01 +02004903long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004905 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907EXPORT_SYMBOL(sleep_on_timeout);
4908
Ingo Molnarb29739f2006-06-27 02:54:51 -07004909#ifdef CONFIG_RT_MUTEXES
4910
4911/*
4912 * rt_mutex_setprio - set the current priority of a task
4913 * @p: task
4914 * @prio: prio value (kernel-internal form)
4915 *
4916 * This function changes the 'effective' priority of a task. It does
4917 * not touch ->normal_prio like __setscheduler().
4918 *
4919 * Used by the rt_mutex code to implement priority inheritance logic.
4920 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004921void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004922{
4923 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004924 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004925 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004926 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004927
4928 BUG_ON(prio < 0 || prio > MAX_PRIO);
4929
4930 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004931 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004932
Andrew Mortond5f9f942007-05-08 20:27:06 -07004933 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004934 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004935 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004936 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004937 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004938 if (running)
4939 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004940
4941 if (rt_prio(prio))
4942 p->sched_class = &rt_sched_class;
4943 else
4944 p->sched_class = &fair_sched_class;
4945
Ingo Molnarb29739f2006-06-27 02:54:51 -07004946 p->prio = prio;
4947
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004948 if (running)
4949 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004950 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004951 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004952
4953 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004954 }
4955 task_rq_unlock(rq, &flags);
4956}
4957
4958#endif
4959
Ingo Molnar36c8b582006-07-03 00:25:41 -07004960void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961{
Ingo Molnardd41f592007-07-09 18:51:59 +02004962 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004964 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965
4966 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4967 return;
4968 /*
4969 * We have to be careful, if called from sys_setpriority(),
4970 * the task might be in the middle of scheduling on another CPU.
4971 */
4972 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004973 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 /*
4975 * The RT priorities are set via sched_setscheduler(), but we still
4976 * allow the 'normal' nice value to be set - but as expected
4977 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004978 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004980 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 p->static_prio = NICE_TO_PRIO(nice);
4982 goto out_unlock;
4983 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004984 on_rq = p->se.on_rq;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02004985 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004986 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004989 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004990 old_prio = p->prio;
4991 p->prio = effective_prio(p);
4992 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993
Ingo Molnardd41f592007-07-09 18:51:59 +02004994 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004995 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004997 * If the task increased its priority or is running and
4998 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07005000 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 resched_task(rq->curr);
5002 }
5003out_unlock:
5004 task_rq_unlock(rq, &flags);
5005}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006EXPORT_SYMBOL(set_user_nice);
5007
Matt Mackalle43379f2005-05-01 08:59:00 -07005008/*
5009 * can_nice - check if a task can reduce its nice value
5010 * @p: task
5011 * @nice: nice value
5012 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005013int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07005014{
Matt Mackall024f4742005-08-18 11:24:19 -07005015 /* convert nice value [19,-20] to rlimit style value [1,40] */
5016 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005017
Matt Mackalle43379f2005-05-01 08:59:00 -07005018 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
5019 capable(CAP_SYS_NICE));
5020}
5021
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022#ifdef __ARCH_WANT_SYS_NICE
5023
5024/*
5025 * sys_nice - change the priority of the current process.
5026 * @increment: priority increment
5027 *
5028 * sys_setpriority is a more generic, but much slower function that
5029 * does similar things.
5030 */
5031asmlinkage long sys_nice(int increment)
5032{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005033 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034
5035 /*
5036 * Setpriority might change our priority at the same moment.
5037 * We don't have to worry. Conceptually one call occurs first
5038 * and we have a single winner.
5039 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005040 if (increment < -40)
5041 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 if (increment > 40)
5043 increment = 40;
5044
5045 nice = PRIO_TO_NICE(current->static_prio) + increment;
5046 if (nice < -20)
5047 nice = -20;
5048 if (nice > 19)
5049 nice = 19;
5050
Matt Mackalle43379f2005-05-01 08:59:00 -07005051 if (increment < 0 && !can_nice(current, nice))
5052 return -EPERM;
5053
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054 retval = security_task_setnice(current, nice);
5055 if (retval)
5056 return retval;
5057
5058 set_user_nice(current, nice);
5059 return 0;
5060}
5061
5062#endif
5063
5064/**
5065 * task_prio - return the priority value of a given task.
5066 * @p: the task in question.
5067 *
5068 * This is the priority value as seen by users in /proc.
5069 * RT tasks are offset by -200. Normal tasks are centered
5070 * around 0, value goes from -16 to +15.
5071 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005072int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073{
5074 return p->prio - MAX_RT_PRIO;
5075}
5076
5077/**
5078 * task_nice - return the nice value of a given task.
5079 * @p: the task in question.
5080 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005081int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082{
5083 return TASK_NICE(p);
5084}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005085EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086
5087/**
5088 * idle_cpu - is a given cpu idle currently?
5089 * @cpu: the processor in question.
5090 */
5091int idle_cpu(int cpu)
5092{
5093 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5094}
5095
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096/**
5097 * idle_task - return the idle task for a given cpu.
5098 * @cpu: the processor in question.
5099 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005100struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101{
5102 return cpu_rq(cpu)->idle;
5103}
5104
5105/**
5106 * find_process_by_pid - find a process with a matching PID value.
5107 * @pid: the pid in question.
5108 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005109static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005111 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112}
5113
5114/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005115static void
5116__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117{
Ingo Molnardd41f592007-07-09 18:51:59 +02005118 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005119
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005121 switch (p->policy) {
5122 case SCHED_NORMAL:
5123 case SCHED_BATCH:
5124 case SCHED_IDLE:
5125 p->sched_class = &fair_sched_class;
5126 break;
5127 case SCHED_FIFO:
5128 case SCHED_RR:
5129 p->sched_class = &rt_sched_class;
5130 break;
5131 }
5132
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005134 p->normal_prio = normal_prio(p);
5135 /* we are holding p->pi_lock already */
5136 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005137 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138}
5139
5140/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005141 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142 * @p: the task in question.
5143 * @policy: new policy.
5144 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005145 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005146 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005148int sched_setscheduler(struct task_struct *p, int policy,
5149 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005151 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005153 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005154 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155
Steven Rostedt66e53932006-06-27 02:54:44 -07005156 /* may grab non-irq protected spin_locks */
5157 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158recheck:
5159 /* double check policy once rq lock held */
5160 if (policy < 0)
5161 policy = oldpolicy = p->policy;
5162 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005163 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5164 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005165 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166 /*
5167 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005168 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5169 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 */
5171 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005172 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005173 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005175 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176 return -EINVAL;
5177
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005178 /*
5179 * Allow unprivileged RT tasks to decrease priority:
5180 */
5181 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005182 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005183 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005184
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005185 if (!lock_task_sighand(p, &flags))
5186 return -ESRCH;
5187 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5188 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005189
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005190 /* can't set/change the rt policy */
5191 if (policy != p->policy && !rlim_rtprio)
5192 return -EPERM;
5193
5194 /* can't increase priority */
5195 if (param->sched_priority > p->rt_priority &&
5196 param->sched_priority > rlim_rtprio)
5197 return -EPERM;
5198 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005199 /*
5200 * Like positive nice levels, dont allow tasks to
5201 * move out of SCHED_IDLE either:
5202 */
5203 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5204 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005205
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005206 /* can't change other user's priorities */
5207 if ((current->euid != p->euid) &&
5208 (current->euid != p->uid))
5209 return -EPERM;
5210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005212#ifdef CONFIG_RT_GROUP_SCHED
5213 /*
5214 * Do not allow realtime tasks into groups that have no runtime
5215 * assigned.
5216 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02005217 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005218 return -EPERM;
5219#endif
5220
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 retval = security_task_setscheduler(p, policy, param);
5222 if (retval)
5223 return retval;
5224 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005225 * make sure no PI-waiters arrive (or leave) while we are
5226 * changing the priority of the task:
5227 */
5228 spin_lock_irqsave(&p->pi_lock, flags);
5229 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230 * To be able to change p->policy safely, the apropriate
5231 * runqueue lock must be held.
5232 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005233 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234 /* recheck policy now with rq lock held */
5235 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5236 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005237 __task_rq_unlock(rq);
5238 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 goto recheck;
5240 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005241 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005242 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005243 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005244 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005245 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005246 if (running)
5247 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005248
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005250 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005251
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005252 if (running)
5253 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005254 if (on_rq) {
5255 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005256
5257 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005259 __task_rq_unlock(rq);
5260 spin_unlock_irqrestore(&p->pi_lock, flags);
5261
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005262 rt_mutex_adjust_pi(p);
5263
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 return 0;
5265}
5266EXPORT_SYMBOL_GPL(sched_setscheduler);
5267
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005268static int
5269do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 struct sched_param lparam;
5272 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005273 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274
5275 if (!param || pid < 0)
5276 return -EINVAL;
5277 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5278 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005279
5280 rcu_read_lock();
5281 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005283 if (p != NULL)
5284 retval = sched_setscheduler(p, policy, &lparam);
5285 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005286
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287 return retval;
5288}
5289
5290/**
5291 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5292 * @pid: the pid in question.
5293 * @policy: new policy.
5294 * @param: structure containing the new RT priority.
5295 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005296asmlinkage long
5297sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298{
Jason Baronc21761f2006-01-18 17:43:03 -08005299 /* negative values for policy are not valid */
5300 if (policy < 0)
5301 return -EINVAL;
5302
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 return do_sched_setscheduler(pid, policy, param);
5304}
5305
5306/**
5307 * sys_sched_setparam - set/change the RT priority of a thread
5308 * @pid: the pid in question.
5309 * @param: structure containing the new RT priority.
5310 */
5311asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5312{
5313 return do_sched_setscheduler(pid, -1, param);
5314}
5315
5316/**
5317 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5318 * @pid: the pid in question.
5319 */
5320asmlinkage long sys_sched_getscheduler(pid_t pid)
5321{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005322 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005323 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324
5325 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005326 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327
5328 retval = -ESRCH;
5329 read_lock(&tasklist_lock);
5330 p = find_process_by_pid(pid);
5331 if (p) {
5332 retval = security_task_getscheduler(p);
5333 if (!retval)
5334 retval = p->policy;
5335 }
5336 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337 return retval;
5338}
5339
5340/**
5341 * sys_sched_getscheduler - get the RT priority of a thread
5342 * @pid: the pid in question.
5343 * @param: structure containing the RT priority.
5344 */
5345asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5346{
5347 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005348 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005349 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350
5351 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005352 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353
5354 read_lock(&tasklist_lock);
5355 p = find_process_by_pid(pid);
5356 retval = -ESRCH;
5357 if (!p)
5358 goto out_unlock;
5359
5360 retval = security_task_getscheduler(p);
5361 if (retval)
5362 goto out_unlock;
5363
5364 lp.sched_priority = p->rt_priority;
5365 read_unlock(&tasklist_lock);
5366
5367 /*
5368 * This one might sleep, we cannot do it with a spinlock held ...
5369 */
5370 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5371
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 return retval;
5373
5374out_unlock:
5375 read_unlock(&tasklist_lock);
5376 return retval;
5377}
5378
Mike Travisb53e9212008-04-04 18:11:08 -07005379long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07005382 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005383 struct task_struct *p;
5384 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005386 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387 read_lock(&tasklist_lock);
5388
5389 p = find_process_by_pid(pid);
5390 if (!p) {
5391 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005392 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393 return -ESRCH;
5394 }
5395
5396 /*
5397 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005398 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 * usage count and then drop tasklist_lock.
5400 */
5401 get_task_struct(p);
5402 read_unlock(&tasklist_lock);
5403
5404 retval = -EPERM;
5405 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5406 !capable(CAP_SYS_NICE))
5407 goto out_unlock;
5408
David Quigleye7834f82006-06-23 02:03:59 -07005409 retval = security_task_setscheduler(p, 0, NULL);
5410 if (retval)
5411 goto out_unlock;
5412
Mike Travisf9a86fc2008-04-04 18:11:07 -07005413 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005415 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005416 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417
Paul Menage8707d8b2007-10-18 23:40:22 -07005418 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005419 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005420 if (!cpus_subset(new_mask, cpus_allowed)) {
5421 /*
5422 * We must have raced with a concurrent cpuset
5423 * update. Just reset the cpus_allowed to the
5424 * cpuset's cpus_allowed
5425 */
5426 new_mask = cpus_allowed;
5427 goto again;
5428 }
5429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430out_unlock:
5431 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005432 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433 return retval;
5434}
5435
5436static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5437 cpumask_t *new_mask)
5438{
5439 if (len < sizeof(cpumask_t)) {
5440 memset(new_mask, 0, sizeof(cpumask_t));
5441 } else if (len > sizeof(cpumask_t)) {
5442 len = sizeof(cpumask_t);
5443 }
5444 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5445}
5446
5447/**
5448 * sys_sched_setaffinity - set the cpu affinity of a process
5449 * @pid: pid of the process
5450 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5451 * @user_mask_ptr: user-space pointer to the new cpu mask
5452 */
5453asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5454 unsigned long __user *user_mask_ptr)
5455{
5456 cpumask_t new_mask;
5457 int retval;
5458
5459 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5460 if (retval)
5461 return retval;
5462
Mike Travisb53e9212008-04-04 18:11:08 -07005463 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464}
5465
5466/*
5467 * Represents all cpu's present in the system
5468 * In systems capable of hotplug, this map could dynamically grow
5469 * as new cpu's are detected in the system via any platform specific
5470 * method, such as ACPI for e.g.
5471 */
5472
Andi Kleen4cef0c62006-01-11 22:44:57 +01005473cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474EXPORT_SYMBOL(cpu_present_map);
5475
5476#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01005477cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005478EXPORT_SYMBOL(cpu_online_map);
5479
Andi Kleen4cef0c62006-01-11 22:44:57 +01005480cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005481EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482#endif
5483
5484long sched_getaffinity(pid_t pid, cpumask_t *mask)
5485{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005486 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005489 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490 read_lock(&tasklist_lock);
5491
5492 retval = -ESRCH;
5493 p = find_process_by_pid(pid);
5494 if (!p)
5495 goto out_unlock;
5496
David Quigleye7834f82006-06-23 02:03:59 -07005497 retval = security_task_getscheduler(p);
5498 if (retval)
5499 goto out_unlock;
5500
Jack Steiner2f7016d2006-02-01 03:05:18 -08005501 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502
5503out_unlock:
5504 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005505 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506
Ulrich Drepper9531b622007-08-09 11:16:46 +02005507 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508}
5509
5510/**
5511 * sys_sched_getaffinity - get the cpu affinity of a process
5512 * @pid: pid of the process
5513 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5514 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5515 */
5516asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5517 unsigned long __user *user_mask_ptr)
5518{
5519 int ret;
5520 cpumask_t mask;
5521
5522 if (len < sizeof(cpumask_t))
5523 return -EINVAL;
5524
5525 ret = sched_getaffinity(pid, &mask);
5526 if (ret < 0)
5527 return ret;
5528
5529 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5530 return -EFAULT;
5531
5532 return sizeof(cpumask_t);
5533}
5534
5535/**
5536 * sys_sched_yield - yield the current processor to other threads.
5537 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005538 * This function yields the current CPU to other tasks. If there are no
5539 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540 */
5541asmlinkage long sys_sched_yield(void)
5542{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005543 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544
Ingo Molnar2d723762007-10-15 17:00:12 +02005545 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005546 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547
5548 /*
5549 * Since we are going to call schedule() anyway, there's
5550 * no need to preempt or enable interrupts:
5551 */
5552 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005553 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554 _raw_spin_unlock(&rq->lock);
5555 preempt_enable_no_resched();
5556
5557 schedule();
5558
5559 return 0;
5560}
5561
Andrew Mortone7b38402006-06-30 01:56:00 -07005562static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005564#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5565 __might_sleep(__FILE__, __LINE__);
5566#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005567 /*
5568 * The BKS might be reacquired before we have dropped
5569 * PREEMPT_ACTIVE, which could trigger a second
5570 * cond_resched() call.
5571 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 do {
5573 add_preempt_count(PREEMPT_ACTIVE);
5574 schedule();
5575 sub_preempt_count(PREEMPT_ACTIVE);
5576 } while (need_resched());
5577}
5578
Herbert Xu02b67cc2008-01-25 21:08:28 +01005579int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580{
Ingo Molnar94142322006-12-29 16:48:13 -08005581 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5582 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583 __cond_resched();
5584 return 1;
5585 }
5586 return 0;
5587}
Herbert Xu02b67cc2008-01-25 21:08:28 +01005588EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589
5590/*
5591 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5592 * call schedule, and on return reacquire the lock.
5593 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005594 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595 * operations here to prevent schedule() from being called twice (once via
5596 * spin_unlock(), once by hand).
5597 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005598int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599{
Nick Piggin95c354f2008-01-30 13:31:20 +01005600 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005601 int ret = 0;
5602
Nick Piggin95c354f2008-01-30 13:31:20 +01005603 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005605 if (resched && need_resched())
5606 __cond_resched();
5607 else
5608 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005609 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005612 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614EXPORT_SYMBOL(cond_resched_lock);
5615
5616int __sched cond_resched_softirq(void)
5617{
5618 BUG_ON(!in_softirq());
5619
Ingo Molnar94142322006-12-29 16:48:13 -08005620 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005621 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622 __cond_resched();
5623 local_bh_disable();
5624 return 1;
5625 }
5626 return 0;
5627}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628EXPORT_SYMBOL(cond_resched_softirq);
5629
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630/**
5631 * yield - yield the current processor to other threads.
5632 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005633 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634 * thread runnable and calls sys_sched_yield().
5635 */
5636void __sched yield(void)
5637{
5638 set_current_state(TASK_RUNNING);
5639 sys_sched_yield();
5640}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641EXPORT_SYMBOL(yield);
5642
5643/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005644 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645 * that process accounting knows that this is a task in IO wait state.
5646 *
5647 * But don't do that if it is a deliberate, throttling IO wait (this task
5648 * has set its backing_dev_info: the queue against which it should throttle)
5649 */
5650void __sched io_schedule(void)
5651{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005652 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005654 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655 atomic_inc(&rq->nr_iowait);
5656 schedule();
5657 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005658 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660EXPORT_SYMBOL(io_schedule);
5661
5662long __sched io_schedule_timeout(long timeout)
5663{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005664 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665 long ret;
5666
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005667 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668 atomic_inc(&rq->nr_iowait);
5669 ret = schedule_timeout(timeout);
5670 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005671 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672 return ret;
5673}
5674
5675/**
5676 * sys_sched_get_priority_max - return maximum RT priority.
5677 * @policy: scheduling class.
5678 *
5679 * this syscall returns the maximum rt_priority that can be used
5680 * by a given scheduling class.
5681 */
5682asmlinkage long sys_sched_get_priority_max(int policy)
5683{
5684 int ret = -EINVAL;
5685
5686 switch (policy) {
5687 case SCHED_FIFO:
5688 case SCHED_RR:
5689 ret = MAX_USER_RT_PRIO-1;
5690 break;
5691 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005692 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005693 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694 ret = 0;
5695 break;
5696 }
5697 return ret;
5698}
5699
5700/**
5701 * sys_sched_get_priority_min - return minimum RT priority.
5702 * @policy: scheduling class.
5703 *
5704 * this syscall returns the minimum rt_priority that can be used
5705 * by a given scheduling class.
5706 */
5707asmlinkage long sys_sched_get_priority_min(int policy)
5708{
5709 int ret = -EINVAL;
5710
5711 switch (policy) {
5712 case SCHED_FIFO:
5713 case SCHED_RR:
5714 ret = 1;
5715 break;
5716 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005717 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005718 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719 ret = 0;
5720 }
5721 return ret;
5722}
5723
5724/**
5725 * sys_sched_rr_get_interval - return the default timeslice of a process.
5726 * @pid: pid of the process.
5727 * @interval: userspace pointer to the timeslice value.
5728 *
5729 * this syscall writes the default timeslice value of a given process
5730 * into the user-space timespec buffer. A value of '0' means infinity.
5731 */
5732asmlinkage
5733long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5734{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005735 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005736 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005737 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739
5740 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005741 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742
5743 retval = -ESRCH;
5744 read_lock(&tasklist_lock);
5745 p = find_process_by_pid(pid);
5746 if (!p)
5747 goto out_unlock;
5748
5749 retval = security_task_getscheduler(p);
5750 if (retval)
5751 goto out_unlock;
5752
Ingo Molnar77034932007-12-04 17:04:39 +01005753 /*
5754 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5755 * tasks that are on an otherwise idle runqueue:
5756 */
5757 time_slice = 0;
5758 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005759 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005760 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005761 struct sched_entity *se = &p->se;
5762 unsigned long flags;
5763 struct rq *rq;
5764
5765 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005766 if (rq->cfs.load.weight)
5767 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005768 task_rq_unlock(rq, &flags);
5769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005771 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005774
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775out_unlock:
5776 read_unlock(&tasklist_lock);
5777 return retval;
5778}
5779
Steven Rostedt7c731e02008-05-12 21:20:41 +02005780static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005781
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005782void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005785 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005788 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005789 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005790#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005792 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005793 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005794 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795#else
5796 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005797 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005799 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800#endif
5801#ifdef CONFIG_DEBUG_STACK_USAGE
5802 {
Al Viro10ebffd2005-11-13 16:06:56 -08005803 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804 while (!*n)
5805 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005806 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807 }
5808#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005809 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005810 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005812 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813}
5814
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005815void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005817 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818
Ingo Molnar4bd77322007-07-11 21:21:47 +02005819#if BITS_PER_LONG == 32
5820 printk(KERN_INFO
5821 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005823 printk(KERN_INFO
5824 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825#endif
5826 read_lock(&tasklist_lock);
5827 do_each_thread(g, p) {
5828 /*
5829 * reset the NMI-timeout, listing all files on a slow
5830 * console might take alot of time:
5831 */
5832 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005833 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005834 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835 } while_each_thread(g, p);
5836
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005837 touch_all_softlockup_watchdogs();
5838
Ingo Molnardd41f592007-07-09 18:51:59 +02005839#ifdef CONFIG_SCHED_DEBUG
5840 sysrq_sched_debug_show();
5841#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005843 /*
5844 * Only show locks if all tasks are dumped:
5845 */
5846 if (state_filter == -1)
5847 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848}
5849
Ingo Molnar1df21052007-07-09 18:51:58 +02005850void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5851{
Ingo Molnardd41f592007-07-09 18:51:59 +02005852 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005853}
5854
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005855/**
5856 * init_idle - set up an idle thread for a given CPU
5857 * @idle: task in question
5858 * @cpu: cpu the idle task belongs to
5859 *
5860 * NOTE: this function does not set the idle thread's NEED_RESCHED
5861 * flag, to make booting more robust.
5862 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005863void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005865 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866 unsigned long flags;
5867
Ingo Molnardd41f592007-07-09 18:51:59 +02005868 __sched_fork(idle);
5869 idle->se.exec_start = sched_clock();
5870
Ingo Molnarb29739f2006-06-27 02:54:51 -07005871 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005873 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874
5875 spin_lock_irqsave(&rq->lock, flags);
5876 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005877#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5878 idle->oncpu = 1;
5879#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880 spin_unlock_irqrestore(&rq->lock, flags);
5881
5882 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005883#if defined(CONFIG_PREEMPT)
5884 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5885#else
Al Viroa1261f52005-11-13 16:06:55 -08005886 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005887#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005888 /*
5889 * The idle tasks have their own, simple scheduling class:
5890 */
5891 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892}
5893
5894/*
5895 * In a system that switches off the HZ timer nohz_cpu_mask
5896 * indicates which cpus entered this state. This is used
5897 * in the rcu update to wait only for active cpus. For system
5898 * which do not switch off the HZ timer nohz_cpu_mask should
5899 * always be CPU_MASK_NONE.
5900 */
5901cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5902
Ingo Molnar19978ca2007-11-09 22:39:38 +01005903/*
5904 * Increase the granularity value when there are more CPUs,
5905 * because with more CPUs the 'effective latency' as visible
5906 * to users decreases. But the relationship is not linear,
5907 * so pick a second-best guess by going with the log2 of the
5908 * number of CPUs.
5909 *
5910 * This idea comes from the SD scheduler of Con Kolivas:
5911 */
5912static inline void sched_init_granularity(void)
5913{
5914 unsigned int factor = 1 + ilog2(num_online_cpus());
5915 const unsigned long limit = 200000000;
5916
5917 sysctl_sched_min_granularity *= factor;
5918 if (sysctl_sched_min_granularity > limit)
5919 sysctl_sched_min_granularity = limit;
5920
5921 sysctl_sched_latency *= factor;
5922 if (sysctl_sched_latency > limit)
5923 sysctl_sched_latency = limit;
5924
5925 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005926}
5927
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928#ifdef CONFIG_SMP
5929/*
5930 * This is how migration works:
5931 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005932 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933 * runqueue and wake up that CPU's migration thread.
5934 * 2) we down() the locked semaphore => thread blocks.
5935 * 3) migration thread wakes up (implicitly it forces the migrated
5936 * thread off the CPU)
5937 * 4) it gets the migration request and checks whether the migrated
5938 * task is still in the wrong runqueue.
5939 * 5) if it's in the wrong runqueue then the migration thread removes
5940 * it and puts it into the right queue.
5941 * 6) migration thread up()s the semaphore.
5942 * 7) we wake up and the migration is done.
5943 */
5944
5945/*
5946 * Change a given task's CPU affinity. Migrate the thread to a
5947 * proper CPU and schedule it away if the CPU it's executing on
5948 * is removed from the allowed bitmask.
5949 *
5950 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005951 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952 * call is not atomic; no spinlocks may be held.
5953 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005954int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005956 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005958 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005959 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960
5961 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005962 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963 ret = -EINVAL;
5964 goto out;
5965 }
5966
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005967 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005968 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005969 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005970 p->cpus_allowed = *new_mask;
5971 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005972 }
5973
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005975 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976 goto out;
5977
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005978 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979 /* Need help from migration thread: drop lock and wait. */
5980 task_rq_unlock(rq, &flags);
5981 wake_up_process(rq->migration_thread);
5982 wait_for_completion(&req.done);
5983 tlb_migrate_finish(p->mm);
5984 return 0;
5985 }
5986out:
5987 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005988
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989 return ret;
5990}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005991EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992
5993/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005994 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995 * this because either it can't run here any more (set_cpus_allowed()
5996 * away from this CPU, or CPU going down), or because we're
5997 * attempting to rebalance this task on exec (sched_exec).
5998 *
5999 * So we race with normal scheduler movements, but that's OK, as long
6000 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07006001 *
6002 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006003 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07006004static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006006 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02006007 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008
6009 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07006010 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011
6012 rq_src = cpu_rq(src_cpu);
6013 rq_dest = cpu_rq(dest_cpu);
6014
6015 double_rq_lock(rq_src, rq_dest);
6016 /* Already moved. */
6017 if (task_cpu(p) != src_cpu)
6018 goto out;
6019 /* Affinity changed (again). */
6020 if (!cpu_isset(dest_cpu, p->cpus_allowed))
6021 goto out;
6022
Ingo Molnardd41f592007-07-09 18:51:59 +02006023 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006024 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006025 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006026
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006028 if (on_rq) {
6029 activate_task(rq_dest, p, 0);
6030 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07006032 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033out:
6034 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07006035 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036}
6037
6038/*
6039 * migration_thread - this is a highprio system thread that performs
6040 * thread migration by bumping thread off CPU then 'pushing' onto
6041 * another runqueue.
6042 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006043static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006046 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047
6048 rq = cpu_rq(cpu);
6049 BUG_ON(rq->migration_thread != current);
6050
6051 set_current_state(TASK_INTERRUPTIBLE);
6052 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006053 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056 spin_lock_irq(&rq->lock);
6057
6058 if (cpu_is_offline(cpu)) {
6059 spin_unlock_irq(&rq->lock);
6060 goto wait_to_die;
6061 }
6062
6063 if (rq->active_balance) {
6064 active_load_balance(rq, cpu);
6065 rq->active_balance = 0;
6066 }
6067
6068 head = &rq->migration_queue;
6069
6070 if (list_empty(head)) {
6071 spin_unlock_irq(&rq->lock);
6072 schedule();
6073 set_current_state(TASK_INTERRUPTIBLE);
6074 continue;
6075 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07006076 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077 list_del_init(head->next);
6078
Nick Piggin674311d2005-06-25 14:57:27 -07006079 spin_unlock(&rq->lock);
6080 __migrate_task(req->task, cpu, req->dest_cpu);
6081 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082
6083 complete(&req->done);
6084 }
6085 __set_current_state(TASK_RUNNING);
6086 return 0;
6087
6088wait_to_die:
6089 /* Wait for kthread_stop */
6090 set_current_state(TASK_INTERRUPTIBLE);
6091 while (!kthread_should_stop()) {
6092 schedule();
6093 set_current_state(TASK_INTERRUPTIBLE);
6094 }
6095 __set_current_state(TASK_RUNNING);
6096 return 0;
6097}
6098
6099#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006100
6101static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
6102{
6103 int ret;
6104
6105 local_irq_disable();
6106 ret = __migrate_task(p, src_cpu, dest_cpu);
6107 local_irq_enable();
6108 return ret;
6109}
6110
Kirill Korotaev054b9102006-12-10 02:20:11 -08006111/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006112 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08006113 * NOTE: interrupts should be disabled by the caller
6114 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006115static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116{
Kirill Korotaevefc30812006-06-27 02:54:32 -07006117 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006119 struct rq *rq;
6120 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121
Andi Kleen3a5c3592007-10-15 17:00:14 +02006122 do {
6123 /* On same node? */
6124 mask = node_to_cpumask(cpu_to_node(dead_cpu));
6125 cpus_and(mask, mask, p->cpus_allowed);
6126 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127
Andi Kleen3a5c3592007-10-15 17:00:14 +02006128 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07006129 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006130 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131
Andi Kleen3a5c3592007-10-15 17:00:14 +02006132 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07006133 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07006134 cpumask_t cpus_allowed;
6135
6136 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd642007-10-18 23:40:46 -07006137 /*
6138 * Try to stay on the same cpuset, where the
6139 * current cpuset may be a subset of all cpus.
6140 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006141 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07006142 * called within calls to cpuset_lock/cpuset_unlock.
6143 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02006144 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07006145 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006146 dest_cpu = any_online_cpu(p->cpus_allowed);
6147 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148
Andi Kleen3a5c3592007-10-15 17:00:14 +02006149 /*
6150 * Don't tell them about moving exiting tasks or
6151 * kernel threads (both mm NULL), since they never
6152 * leave kernel.
6153 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006154 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006155 printk(KERN_INFO "process %d (%s) no "
6156 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006157 task_pid_nr(p), p->comm, dead_cpu);
6158 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006159 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006160 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161}
6162
6163/*
6164 * While a dead CPU has no uninterruptible tasks queued at this point,
6165 * it might still have a nonzero ->nr_uninterruptible counter, because
6166 * for performance reasons the counter is not stricly tracking tasks to
6167 * their home CPUs. So we just add the counter to another CPU's counter,
6168 * to keep the global sum constant after CPU-down:
6169 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006170static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171{
Mike Travis7c16ec52008-04-04 18:11:11 -07006172 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173 unsigned long flags;
6174
6175 local_irq_save(flags);
6176 double_rq_lock(rq_src, rq_dest);
6177 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6178 rq_src->nr_uninterruptible = 0;
6179 double_rq_unlock(rq_src, rq_dest);
6180 local_irq_restore(flags);
6181}
6182
6183/* Run through task list and migrate tasks from the dead cpu. */
6184static void migrate_live_tasks(int src_cpu)
6185{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006186 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006188 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189
Ingo Molnar48f24c42006-07-03 00:25:40 -07006190 do_each_thread(t, p) {
6191 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192 continue;
6193
Ingo Molnar48f24c42006-07-03 00:25:40 -07006194 if (task_cpu(p) == src_cpu)
6195 move_task_off_dead_cpu(src_cpu, p);
6196 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006198 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199}
6200
Ingo Molnardd41f592007-07-09 18:51:59 +02006201/*
6202 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006203 * It does so by boosting its priority to highest possible.
6204 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205 */
6206void sched_idle_next(void)
6207{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006208 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006209 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210 struct task_struct *p = rq->idle;
6211 unsigned long flags;
6212
6213 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006214 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215
Ingo Molnar48f24c42006-07-03 00:25:40 -07006216 /*
6217 * Strictly not necessary since rest of the CPUs are stopped by now
6218 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219 */
6220 spin_lock_irqsave(&rq->lock, flags);
6221
Ingo Molnardd41f592007-07-09 18:51:59 +02006222 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006223
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006224 update_rq_clock(rq);
6225 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226
6227 spin_unlock_irqrestore(&rq->lock, flags);
6228}
6229
Ingo Molnar48f24c42006-07-03 00:25:40 -07006230/*
6231 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232 * offline.
6233 */
6234void idle_task_exit(void)
6235{
6236 struct mm_struct *mm = current->active_mm;
6237
6238 BUG_ON(cpu_online(smp_processor_id()));
6239
6240 if (mm != &init_mm)
6241 switch_mm(mm, &init_mm, current);
6242 mmdrop(mm);
6243}
6244
Kirill Korotaev054b9102006-12-10 02:20:11 -08006245/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006246static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006248 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249
6250 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006251 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252
6253 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006254 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255
Ingo Molnar48f24c42006-07-03 00:25:40 -07006256 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257
6258 /*
6259 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006260 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006261 * fine.
6262 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006263 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006264 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006265 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006266
Ingo Molnar48f24c42006-07-03 00:25:40 -07006267 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268}
6269
6270/* release_task() removes task from tasklist, so we won't find dead tasks. */
6271static void migrate_dead_tasks(unsigned int dead_cpu)
6272{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006273 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006274 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275
Ingo Molnardd41f592007-07-09 18:51:59 +02006276 for ( ; ; ) {
6277 if (!rq->nr_running)
6278 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006279 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006280 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006281 if (!next)
6282 break;
6283 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006284
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285 }
6286}
6287#endif /* CONFIG_HOTPLUG_CPU */
6288
Nick Piggine692ab52007-07-26 13:40:43 +02006289#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6290
6291static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006292 {
6293 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006294 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006295 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006296 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006297};
6298
6299static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006300 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006301 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006302 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006303 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006304 .child = sd_ctl_dir,
6305 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006306 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006307};
6308
6309static struct ctl_table *sd_alloc_ctl_entry(int n)
6310{
6311 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006312 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006313
Nick Piggine692ab52007-07-26 13:40:43 +02006314 return entry;
6315}
6316
Milton Miller6382bc92007-10-15 17:00:19 +02006317static void sd_free_ctl_entry(struct ctl_table **tablep)
6318{
Milton Millercd790072007-10-17 16:55:11 +02006319 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006320
Milton Millercd790072007-10-17 16:55:11 +02006321 /*
6322 * In the intermediate directories, both the child directory and
6323 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006324 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02006325 * static strings and all have proc handlers.
6326 */
6327 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006328 if (entry->child)
6329 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02006330 if (entry->proc_handler == NULL)
6331 kfree(entry->procname);
6332 }
Milton Miller6382bc92007-10-15 17:00:19 +02006333
6334 kfree(*tablep);
6335 *tablep = NULL;
6336}
6337
Nick Piggine692ab52007-07-26 13:40:43 +02006338static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006339set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006340 const char *procname, void *data, int maxlen,
6341 mode_t mode, proc_handler *proc_handler)
6342{
Nick Piggine692ab52007-07-26 13:40:43 +02006343 entry->procname = procname;
6344 entry->data = data;
6345 entry->maxlen = maxlen;
6346 entry->mode = mode;
6347 entry->proc_handler = proc_handler;
6348}
6349
6350static struct ctl_table *
6351sd_alloc_ctl_domain_table(struct sched_domain *sd)
6352{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006353 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02006354
Milton Millerad1cdc12007-10-15 17:00:19 +02006355 if (table == NULL)
6356 return NULL;
6357
Alexey Dobriyane0361852007-08-09 11:16:46 +02006358 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006359 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006360 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006361 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006362 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006363 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006364 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006365 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006366 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006367 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006368 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006369 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006370 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006371 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006372 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006373 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006374 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006375 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006376 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006377 &sd->cache_nice_tries,
6378 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006379 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006380 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02006381 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006382
6383 return table;
6384}
6385
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006386static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006387{
6388 struct ctl_table *entry, *table;
6389 struct sched_domain *sd;
6390 int domain_num = 0, i;
6391 char buf[32];
6392
6393 for_each_domain(cpu, sd)
6394 domain_num++;
6395 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006396 if (table == NULL)
6397 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006398
6399 i = 0;
6400 for_each_domain(cpu, sd) {
6401 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006402 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006403 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006404 entry->child = sd_alloc_ctl_domain_table(sd);
6405 entry++;
6406 i++;
6407 }
6408 return table;
6409}
6410
6411static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006412static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006413{
6414 int i, cpu_num = num_online_cpus();
6415 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6416 char buf[32];
6417
Milton Miller73785472007-10-24 18:23:48 +02006418 WARN_ON(sd_ctl_dir[0].child);
6419 sd_ctl_dir[0].child = entry;
6420
Milton Millerad1cdc12007-10-15 17:00:19 +02006421 if (entry == NULL)
6422 return;
6423
Milton Miller97b6ea72007-10-15 17:00:19 +02006424 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006425 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006426 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006427 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006428 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006429 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006430 }
Milton Miller73785472007-10-24 18:23:48 +02006431
6432 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006433 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6434}
Milton Miller6382bc92007-10-15 17:00:19 +02006435
Milton Miller73785472007-10-24 18:23:48 +02006436/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006437static void unregister_sched_domain_sysctl(void)
6438{
Milton Miller73785472007-10-24 18:23:48 +02006439 if (sd_sysctl_header)
6440 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006441 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006442 if (sd_ctl_dir[0].child)
6443 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006444}
Nick Piggine692ab52007-07-26 13:40:43 +02006445#else
Milton Miller6382bc92007-10-15 17:00:19 +02006446static void register_sched_domain_sysctl(void)
6447{
6448}
6449static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006450{
6451}
6452#endif
6453
Linus Torvalds1da177e2005-04-16 15:20:36 -07006454/*
6455 * migration_call - callback that gets triggered when a CPU is added.
6456 * Here we can start up the necessary migration thread for the new CPU.
6457 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006458static int __cpuinit
6459migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006462 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006464 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465
6466 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006467
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006469 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006470 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471 if (IS_ERR(p))
6472 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473 kthread_bind(p, cpu);
6474 /* Must be high prio: stop_machine expects to yield to it. */
6475 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006476 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477 task_rq_unlock(rq, &flags);
6478 cpu_rq(cpu)->migration_thread = p;
6479 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006480
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006482 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006483 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006485
6486 /* Update our root-domain */
6487 rq = cpu_rq(cpu);
6488 spin_lock_irqsave(&rq->lock, flags);
6489 if (rq->rd) {
6490 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6491 cpu_set(cpu, rq->rd->online);
6492 }
6493 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006495
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496#ifdef CONFIG_HOTPLUG_CPU
6497 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006498 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006499 if (!cpu_rq(cpu)->migration_thread)
6500 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006501 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006502 kthread_bind(cpu_rq(cpu)->migration_thread,
6503 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504 kthread_stop(cpu_rq(cpu)->migration_thread);
6505 cpu_rq(cpu)->migration_thread = NULL;
6506 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006507
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006509 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006510 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511 migrate_live_tasks(cpu);
6512 rq = cpu_rq(cpu);
6513 kthread_stop(rq->migration_thread);
6514 rq->migration_thread = NULL;
6515 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006516 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006517 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006518 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006520 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6521 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006522 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006523 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006524 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525 migrate_nr_uninterruptible(rq);
6526 BUG_ON(rq->nr_running != 0);
6527
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006528 /*
6529 * No need to migrate the tasks: it was best-effort if
6530 * they didn't take sched_hotcpu_mutex. Just wake up
6531 * the requestors.
6532 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533 spin_lock_irq(&rq->lock);
6534 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006535 struct migration_req *req;
6536
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006538 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539 list_del_init(&req->list);
6540 complete(&req->done);
6541 }
6542 spin_unlock_irq(&rq->lock);
6543 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006544
Gregory Haskins08f503b2008-03-10 17:59:11 -04006545 case CPU_DYING:
6546 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006547 /* Update our root-domain */
6548 rq = cpu_rq(cpu);
6549 spin_lock_irqsave(&rq->lock, flags);
6550 if (rq->rd) {
6551 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6552 cpu_clear(cpu, rq->rd->online);
6553 }
6554 spin_unlock_irqrestore(&rq->lock, flags);
6555 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556#endif
6557 }
6558 return NOTIFY_OK;
6559}
6560
6561/* Register at highest priority so that task migration (migrate_all_tasks)
6562 * happens before everything else.
6563 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006564static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565 .notifier_call = migration_call,
6566 .priority = 10
6567};
6568
Adrian Bunke6fe6642007-11-09 22:39:39 +01006569void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570{
6571 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006572 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006573
6574 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006575 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6576 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006577 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6578 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579}
6580#endif
6581
6582#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006583
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006584#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006585
Mike Travis7c16ec52008-04-04 18:11:11 -07006586static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6587 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006588{
6589 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006590 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006591
Mike Travis434d53b2008-04-04 18:11:04 -07006592 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006593 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006594
6595 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6596
6597 if (!(sd->flags & SD_LOAD_BALANCE)) {
6598 printk("does not load-balance\n");
6599 if (sd->parent)
6600 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6601 " has parent");
6602 return -1;
6603 }
6604
6605 printk(KERN_CONT "span %s\n", str);
6606
6607 if (!cpu_isset(cpu, sd->span)) {
6608 printk(KERN_ERR "ERROR: domain->span does not contain "
6609 "CPU%d\n", cpu);
6610 }
6611 if (!cpu_isset(cpu, group->cpumask)) {
6612 printk(KERN_ERR "ERROR: domain->groups does not contain"
6613 " CPU%d\n", cpu);
6614 }
6615
6616 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6617 do {
6618 if (!group) {
6619 printk("\n");
6620 printk(KERN_ERR "ERROR: group is NULL\n");
6621 break;
6622 }
6623
6624 if (!group->__cpu_power) {
6625 printk(KERN_CONT "\n");
6626 printk(KERN_ERR "ERROR: domain->cpu_power not "
6627 "set\n");
6628 break;
6629 }
6630
6631 if (!cpus_weight(group->cpumask)) {
6632 printk(KERN_CONT "\n");
6633 printk(KERN_ERR "ERROR: empty group\n");
6634 break;
6635 }
6636
Mike Travis7c16ec52008-04-04 18:11:11 -07006637 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006638 printk(KERN_CONT "\n");
6639 printk(KERN_ERR "ERROR: repeated CPUs\n");
6640 break;
6641 }
6642
Mike Travis7c16ec52008-04-04 18:11:11 -07006643 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006644
Mike Travis434d53b2008-04-04 18:11:04 -07006645 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006646 printk(KERN_CONT " %s", str);
6647
6648 group = group->next;
6649 } while (group != sd->groups);
6650 printk(KERN_CONT "\n");
6651
Mike Travis7c16ec52008-04-04 18:11:11 -07006652 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006653 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6654
Mike Travis7c16ec52008-04-04 18:11:11 -07006655 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006656 printk(KERN_ERR "ERROR: parent span is not a superset "
6657 "of domain->span\n");
6658 return 0;
6659}
6660
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661static void sched_domain_debug(struct sched_domain *sd, int cpu)
6662{
Mike Travis7c16ec52008-04-04 18:11:11 -07006663 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664 int level = 0;
6665
Nick Piggin41c7ce92005-06-25 14:57:24 -07006666 if (!sd) {
6667 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6668 return;
6669 }
6670
Linus Torvalds1da177e2005-04-16 15:20:36 -07006671 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6672
Mike Travis7c16ec52008-04-04 18:11:11 -07006673 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6674 if (!groupmask) {
6675 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6676 return;
6677 }
6678
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006679 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006680 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682 level++;
6683 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006684 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006685 break;
6686 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006687 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006688}
6689#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006690# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691#endif
6692
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006693static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006694{
6695 if (cpus_weight(sd->span) == 1)
6696 return 1;
6697
6698 /* Following flags need at least 2 groups */
6699 if (sd->flags & (SD_LOAD_BALANCE |
6700 SD_BALANCE_NEWIDLE |
6701 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006702 SD_BALANCE_EXEC |
6703 SD_SHARE_CPUPOWER |
6704 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006705 if (sd->groups != sd->groups->next)
6706 return 0;
6707 }
6708
6709 /* Following flags don't use groups */
6710 if (sd->flags & (SD_WAKE_IDLE |
6711 SD_WAKE_AFFINE |
6712 SD_WAKE_BALANCE))
6713 return 0;
6714
6715 return 1;
6716}
6717
Ingo Molnar48f24c42006-07-03 00:25:40 -07006718static int
6719sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006720{
6721 unsigned long cflags = sd->flags, pflags = parent->flags;
6722
6723 if (sd_degenerate(parent))
6724 return 1;
6725
6726 if (!cpus_equal(sd->span, parent->span))
6727 return 0;
6728
6729 /* Does parent contain flags not in child? */
6730 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6731 if (cflags & SD_WAKE_AFFINE)
6732 pflags &= ~SD_WAKE_BALANCE;
6733 /* Flags needing groups don't count if only 1 group in parent */
6734 if (parent->groups == parent->groups->next) {
6735 pflags &= ~(SD_LOAD_BALANCE |
6736 SD_BALANCE_NEWIDLE |
6737 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006738 SD_BALANCE_EXEC |
6739 SD_SHARE_CPUPOWER |
6740 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006741 }
6742 if (~cflags & pflags)
6743 return 0;
6744
6745 return 1;
6746}
6747
Gregory Haskins57d885f2008-01-25 21:08:18 +01006748static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6749{
6750 unsigned long flags;
6751 const struct sched_class *class;
6752
6753 spin_lock_irqsave(&rq->lock, flags);
6754
6755 if (rq->rd) {
6756 struct root_domain *old_rd = rq->rd;
6757
Ingo Molnar0eab9142008-01-25 21:08:19 +01006758 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006759 if (class->leave_domain)
6760 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006761 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006762
Gregory Haskinsdc938522008-01-25 21:08:26 +01006763 cpu_clear(rq->cpu, old_rd->span);
6764 cpu_clear(rq->cpu, old_rd->online);
6765
Gregory Haskins57d885f2008-01-25 21:08:18 +01006766 if (atomic_dec_and_test(&old_rd->refcount))
6767 kfree(old_rd);
6768 }
6769
6770 atomic_inc(&rd->refcount);
6771 rq->rd = rd;
6772
Gregory Haskinsdc938522008-01-25 21:08:26 +01006773 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006774 if (cpu_isset(rq->cpu, cpu_online_map))
6775 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006776
Ingo Molnar0eab9142008-01-25 21:08:19 +01006777 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006778 if (class->join_domain)
6779 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006780 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006781
6782 spin_unlock_irqrestore(&rq->lock, flags);
6783}
6784
Gregory Haskinsdc938522008-01-25 21:08:26 +01006785static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006786{
6787 memset(rd, 0, sizeof(*rd));
6788
Gregory Haskinsdc938522008-01-25 21:08:26 +01006789 cpus_clear(rd->span);
6790 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006791}
6792
6793static void init_defrootdomain(void)
6794{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006795 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006796 atomic_set(&def_root_domain.refcount, 1);
6797}
6798
Gregory Haskinsdc938522008-01-25 21:08:26 +01006799static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006800{
6801 struct root_domain *rd;
6802
6803 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6804 if (!rd)
6805 return NULL;
6806
Gregory Haskinsdc938522008-01-25 21:08:26 +01006807 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006808
6809 return rd;
6810}
6811
Linus Torvalds1da177e2005-04-16 15:20:36 -07006812/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006813 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814 * hold the hotplug lock.
6815 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006816static void
6817cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006818{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006819 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006820 struct sched_domain *tmp;
6821
6822 /* Remove the sched domains which do not contribute to scheduling. */
6823 for (tmp = sd; tmp; tmp = tmp->parent) {
6824 struct sched_domain *parent = tmp->parent;
6825 if (!parent)
6826 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006827 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006828 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006829 if (parent->parent)
6830 parent->parent->child = tmp;
6831 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006832 }
6833
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006834 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006835 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006836 if (sd)
6837 sd->child = NULL;
6838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006839
6840 sched_domain_debug(sd, cpu);
6841
Gregory Haskins57d885f2008-01-25 21:08:18 +01006842 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006843 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844}
6845
6846/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006847static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848
6849/* Setup the mask of cpus configured for isolated domains */
6850static int __init isolated_cpu_setup(char *str)
6851{
6852 int ints[NR_CPUS], i;
6853
6854 str = get_options(str, ARRAY_SIZE(ints), ints);
6855 cpus_clear(cpu_isolated_map);
6856 for (i = 1; i <= ints[0]; i++)
6857 if (ints[i] < NR_CPUS)
6858 cpu_set(ints[i], cpu_isolated_map);
6859 return 1;
6860}
6861
Ingo Molnar8927f492007-10-15 17:00:13 +02006862__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863
6864/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006865 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6866 * to a function which identifies what group(along with sched group) a CPU
6867 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6868 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006869 *
6870 * init_sched_build_groups will build a circular linked list of the groups
6871 * covered by the given span, and will set each group's ->cpumask correctly,
6872 * and ->cpu_power to 0.
6873 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006874static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006875init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006876 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006877 struct sched_group **sg,
6878 cpumask_t *tmpmask),
6879 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880{
6881 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006882 int i;
6883
Mike Travis7c16ec52008-04-04 18:11:11 -07006884 cpus_clear(*covered);
6885
6886 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006887 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006888 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006889 int j;
6890
Mike Travis7c16ec52008-04-04 18:11:11 -07006891 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892 continue;
6893
Mike Travis7c16ec52008-04-04 18:11:11 -07006894 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006895 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896
Mike Travis7c16ec52008-04-04 18:11:11 -07006897 for_each_cpu_mask(j, *span) {
6898 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006899 continue;
6900
Mike Travis7c16ec52008-04-04 18:11:11 -07006901 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902 cpu_set(j, sg->cpumask);
6903 }
6904 if (!first)
6905 first = sg;
6906 if (last)
6907 last->next = sg;
6908 last = sg;
6909 }
6910 last->next = first;
6911}
6912
John Hawkes9c1cfda2005-09-06 15:18:14 -07006913#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006914
John Hawkes9c1cfda2005-09-06 15:18:14 -07006915#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006916
John Hawkes9c1cfda2005-09-06 15:18:14 -07006917/**
6918 * find_next_best_node - find the next node to include in a sched_domain
6919 * @node: node whose sched_domain we're building
6920 * @used_nodes: nodes already in the sched_domain
6921 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006922 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006923 * finds the closest node not already in the @used_nodes map.
6924 *
6925 * Should use nodemask_t.
6926 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006927static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006928{
6929 int i, n, val, min_val, best_node = 0;
6930
6931 min_val = INT_MAX;
6932
6933 for (i = 0; i < MAX_NUMNODES; i++) {
6934 /* Start at @node */
6935 n = (node + i) % MAX_NUMNODES;
6936
6937 if (!nr_cpus_node(n))
6938 continue;
6939
6940 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006941 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006942 continue;
6943
6944 /* Simple min distance search */
6945 val = node_distance(node, n);
6946
6947 if (val < min_val) {
6948 min_val = val;
6949 best_node = n;
6950 }
6951 }
6952
Mike Travisc5f59f02008-04-04 18:11:10 -07006953 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006954 return best_node;
6955}
6956
6957/**
6958 * sched_domain_node_span - get a cpumask for a node's sched_domain
6959 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07006960 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07006961 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006962 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006963 * should be one that prevents unnecessary balancing, but also spreads tasks
6964 * out optimally.
6965 */
Mike Travis4bdbaad32008-04-15 16:35:52 -07006966static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006967{
Mike Travisc5f59f02008-04-04 18:11:10 -07006968 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07006969 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006970 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006971
Mike Travis4bdbaad32008-04-15 16:35:52 -07006972 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07006973 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006974
Mike Travis4bdbaad32008-04-15 16:35:52 -07006975 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07006976 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006977
6978 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07006979 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006980
Mike Travisc5f59f02008-04-04 18:11:10 -07006981 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad32008-04-15 16:35:52 -07006982 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006983 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006984}
6985#endif
6986
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006987int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006988
John Hawkes9c1cfda2005-09-06 15:18:14 -07006989/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006990 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006991 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006992#ifdef CONFIG_SCHED_SMT
6993static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006994static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006995
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006996static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006997cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6998 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007000 if (sg)
7001 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002 return cpu;
7003}
7004#endif
7005
Ingo Molnar48f24c42006-07-03 00:25:40 -07007006/*
7007 * multi-core sched-domains:
7008 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007009#ifdef CONFIG_SCHED_MC
7010static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007011static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007012#endif
7013
7014#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007015static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007016cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7017 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007018{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007019 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07007020
7021 *mask = per_cpu(cpu_sibling_map, cpu);
7022 cpus_and(*mask, *mask, *cpu_map);
7023 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007024 if (sg)
7025 *sg = &per_cpu(sched_group_core, group);
7026 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007027}
7028#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007029static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007030cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7031 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007032{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007033 if (sg)
7034 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007035 return cpu;
7036}
7037#endif
7038
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007040static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007041
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007042static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007043cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7044 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007045{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007046 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007047#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07007048 *mask = cpu_coregroup_map(cpu);
7049 cpus_and(*mask, *mask, *cpu_map);
7050 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007051#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07007052 *mask = per_cpu(cpu_sibling_map, cpu);
7053 cpus_and(*mask, *mask, *cpu_map);
7054 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007055#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007056 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007058 if (sg)
7059 *sg = &per_cpu(sched_group_phys, group);
7060 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007061}
7062
7063#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07007064/*
7065 * The init_sched_build_groups can't handle what we want to do with node
7066 * groups, so roll our own. Now each node has its own list of groups which
7067 * gets dynamically allocated.
7068 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07007070static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007071
7072static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007073static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007074
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007075static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007076 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007078 int group;
7079
Mike Travis7c16ec52008-04-04 18:11:11 -07007080 *nodemask = node_to_cpumask(cpu_to_node(cpu));
7081 cpus_and(*nodemask, *nodemask, *cpu_map);
7082 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007083
7084 if (sg)
7085 *sg = &per_cpu(sched_group_allnodes, group);
7086 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007088
Siddha, Suresh B08069032006-03-27 01:15:23 -08007089static void init_numa_sched_groups_power(struct sched_group *group_head)
7090{
7091 struct sched_group *sg = group_head;
7092 int j;
7093
7094 if (!sg)
7095 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007096 do {
7097 for_each_cpu_mask(j, sg->cpumask) {
7098 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007099
Andi Kleen3a5c3592007-10-15 17:00:14 +02007100 sd = &per_cpu(phys_domains, j);
7101 if (j != first_cpu(sd->groups->cpumask)) {
7102 /*
7103 * Only add "power" once for each
7104 * physical package.
7105 */
7106 continue;
7107 }
7108
7109 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007110 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007111 sg = sg->next;
7112 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007113}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007114#endif
7115
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007116#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007117/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07007118static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007119{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007120 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007121
7122 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007123 struct sched_group **sched_group_nodes
7124 = sched_group_nodes_bycpu[cpu];
7125
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007126 if (!sched_group_nodes)
7127 continue;
7128
7129 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007130 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7131
Mike Travis7c16ec52008-04-04 18:11:11 -07007132 *nodemask = node_to_cpumask(i);
7133 cpus_and(*nodemask, *nodemask, *cpu_map);
7134 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007135 continue;
7136
7137 if (sg == NULL)
7138 continue;
7139 sg = sg->next;
7140next_sg:
7141 oldsg = sg;
7142 sg = sg->next;
7143 kfree(oldsg);
7144 if (oldsg != sched_group_nodes[i])
7145 goto next_sg;
7146 }
7147 kfree(sched_group_nodes);
7148 sched_group_nodes_bycpu[cpu] = NULL;
7149 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007150}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007151#else
Mike Travis7c16ec52008-04-04 18:11:11 -07007152static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007153{
7154}
7155#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007156
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007158 * Initialize sched groups cpu_power.
7159 *
7160 * cpu_power indicates the capacity of sched group, which is used while
7161 * distributing the load between different sched groups in a sched domain.
7162 * Typically cpu_power for all the groups in a sched domain will be same unless
7163 * there are asymmetries in the topology. If there are asymmetries, group
7164 * having more cpu_power will pickup more load compared to the group having
7165 * less cpu_power.
7166 *
7167 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7168 * the maximum number of tasks a group can handle in the presence of other idle
7169 * or lightly loaded groups in the same sched domain.
7170 */
7171static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7172{
7173 struct sched_domain *child;
7174 struct sched_group *group;
7175
7176 WARN_ON(!sd || !sd->groups);
7177
7178 if (cpu != first_cpu(sd->groups->cpumask))
7179 return;
7180
7181 child = sd->child;
7182
Eric Dumazet5517d862007-05-08 00:32:57 -07007183 sd->groups->__cpu_power = 0;
7184
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007185 /*
7186 * For perf policy, if the groups in child domain share resources
7187 * (for example cores sharing some portions of the cache hierarchy
7188 * or SMT), then set this domain groups cpu_power such that each group
7189 * can handle only one task, when there are other idle groups in the
7190 * same sched domain.
7191 */
7192 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7193 (child->flags &
7194 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007195 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007196 return;
7197 }
7198
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007199 /*
7200 * add cpu_power of each child group to this groups cpu_power
7201 */
7202 group = child->groups;
7203 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007204 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007205 group = group->next;
7206 } while (group != child->groups);
7207}
7208
7209/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007210 * Initializers for schedule domains
7211 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7212 */
7213
7214#define SD_INIT(sd, type) sd_init_##type(sd)
7215#define SD_INIT_FUNC(type) \
7216static noinline void sd_init_##type(struct sched_domain *sd) \
7217{ \
7218 memset(sd, 0, sizeof(*sd)); \
7219 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007220 sd->level = SD_LV_##type; \
Mike Travis7c16ec52008-04-04 18:11:11 -07007221}
7222
7223SD_INIT_FUNC(CPU)
7224#ifdef CONFIG_NUMA
7225 SD_INIT_FUNC(ALLNODES)
7226 SD_INIT_FUNC(NODE)
7227#endif
7228#ifdef CONFIG_SCHED_SMT
7229 SD_INIT_FUNC(SIBLING)
7230#endif
7231#ifdef CONFIG_SCHED_MC
7232 SD_INIT_FUNC(MC)
7233#endif
7234
7235/*
7236 * To minimize stack usage kmalloc room for cpumasks and share the
7237 * space as the usage in build_sched_domains() dictates. Used only
7238 * if the amount of space is significant.
7239 */
7240struct allmasks {
7241 cpumask_t tmpmask; /* make this one first */
7242 union {
7243 cpumask_t nodemask;
7244 cpumask_t this_sibling_map;
7245 cpumask_t this_core_map;
7246 };
7247 cpumask_t send_covered;
7248
7249#ifdef CONFIG_NUMA
7250 cpumask_t domainspan;
7251 cpumask_t covered;
7252 cpumask_t notcovered;
7253#endif
7254};
7255
7256#if NR_CPUS > 128
7257#define SCHED_CPUMASK_ALLOC 1
7258#define SCHED_CPUMASK_FREE(v) kfree(v)
7259#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
7260#else
7261#define SCHED_CPUMASK_ALLOC 0
7262#define SCHED_CPUMASK_FREE(v)
7263#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
7264#endif
7265
7266#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
7267 ((unsigned long)(a) + offsetof(struct allmasks, v))
7268
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007269static int default_relax_domain_level = -1;
7270
7271static int __init setup_relax_domain_level(char *str)
7272{
7273 default_relax_domain_level = simple_strtoul(str, NULL, 0);
7274 return 1;
7275}
7276__setup("relax_domain_level=", setup_relax_domain_level);
7277
7278static void set_domain_attribute(struct sched_domain *sd,
7279 struct sched_domain_attr *attr)
7280{
7281 int request;
7282
7283 if (!attr || attr->relax_domain_level < 0) {
7284 if (default_relax_domain_level < 0)
7285 return;
7286 else
7287 request = default_relax_domain_level;
7288 } else
7289 request = attr->relax_domain_level;
7290 if (request < sd->level) {
7291 /* turn off idle balance on this domain */
7292 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7293 } else {
7294 /* turn on idle balance on this domain */
7295 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7296 }
7297}
7298
Mike Travis7c16ec52008-04-04 18:11:11 -07007299/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007300 * Build sched domains for a given set of cpus and attach the sched domains
7301 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007303static int __build_sched_domains(const cpumask_t *cpu_map,
7304 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305{
7306 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007307 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007308 SCHED_CPUMASK_DECLARE(allmasks);
7309 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007310#ifdef CONFIG_NUMA
7311 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007312 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007313
7314 /*
7315 * Allocate the per-node list of sched groups
7316 */
Milton Miller5cf9f062007-10-15 17:00:19 +02007317 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007318 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007319 if (!sched_group_nodes) {
7320 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007321 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07007322 }
John Hawkesd1b55132005-09-06 15:18:14 -07007323#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007324
Gregory Haskinsdc938522008-01-25 21:08:26 +01007325 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007326 if (!rd) {
7327 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07007328#ifdef CONFIG_NUMA
7329 kfree(sched_group_nodes);
7330#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007331 return -ENOMEM;
7332 }
7333
Mike Travis7c16ec52008-04-04 18:11:11 -07007334#if SCHED_CPUMASK_ALLOC
7335 /* get space for all scratch cpumask variables */
7336 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7337 if (!allmasks) {
7338 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7339 kfree(rd);
7340#ifdef CONFIG_NUMA
7341 kfree(sched_group_nodes);
7342#endif
7343 return -ENOMEM;
7344 }
7345#endif
7346 tmpmask = (cpumask_t *)allmasks;
7347
7348
7349#ifdef CONFIG_NUMA
7350 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7351#endif
7352
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007354 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007356 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07007358 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359
Mike Travis7c16ec52008-04-04 18:11:11 -07007360 *nodemask = node_to_cpumask(cpu_to_node(i));
7361 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362
7363#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02007364 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07007365 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007366 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007367 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007368 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007369 sd->span = *cpu_map;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007370 sd->first_cpu = first_cpu(sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07007371 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007372 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007373 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007374 } else
7375 p = NULL;
7376
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007378 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007379 set_domain_attribute(sd, attr);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007380 sched_domain_node_span(cpu_to_node(i), &sd->span);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007381 sd->first_cpu = first_cpu(sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007382 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007383 if (p)
7384 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007385 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386#endif
7387
7388 p = sd;
7389 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007390 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007391 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007392 sd->span = *nodemask;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007393 sd->first_cpu = first_cpu(sd->span);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007395 if (p)
7396 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007397 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007398
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007399#ifdef CONFIG_SCHED_MC
7400 p = sd;
7401 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007402 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007403 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007404 sd->span = cpu_coregroup_map(i);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007405 sd->first_cpu = first_cpu(sd->span);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007406 cpus_and(sd->span, sd->span, *cpu_map);
7407 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007408 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007409 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007410#endif
7411
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412#ifdef CONFIG_SCHED_SMT
7413 p = sd;
7414 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007415 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007416 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007417 sd->span = per_cpu(cpu_sibling_map, i);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007418 sd->first_cpu = first_cpu(sd->span);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007419 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007420 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007421 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007422 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007423#endif
7424 }
7425
7426#ifdef CONFIG_SCHED_SMT
7427 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007428 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007429 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7430 SCHED_CPUMASK_VAR(send_covered, allmasks);
7431
7432 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7433 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7434 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435 continue;
7436
Ingo Molnardd41f592007-07-09 18:51:59 +02007437 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007438 &cpu_to_cpu_group,
7439 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007440 }
7441#endif
7442
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007443#ifdef CONFIG_SCHED_MC
7444 /* Set up multi-core groups */
7445 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007446 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7447 SCHED_CPUMASK_VAR(send_covered, allmasks);
7448
7449 *this_core_map = cpu_coregroup_map(i);
7450 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7451 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007452 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007453
Ingo Molnardd41f592007-07-09 18:51:59 +02007454 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007455 &cpu_to_core_group,
7456 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007457 }
7458#endif
7459
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460 /* Set up physical groups */
7461 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007462 SCHED_CPUMASK_VAR(nodemask, allmasks);
7463 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007464
Mike Travis7c16ec52008-04-04 18:11:11 -07007465 *nodemask = node_to_cpumask(i);
7466 cpus_and(*nodemask, *nodemask, *cpu_map);
7467 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007468 continue;
7469
Mike Travis7c16ec52008-04-04 18:11:11 -07007470 init_sched_build_groups(nodemask, cpu_map,
7471 &cpu_to_phys_group,
7472 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473 }
7474
7475#ifdef CONFIG_NUMA
7476 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007477 if (sd_allnodes) {
7478 SCHED_CPUMASK_VAR(send_covered, allmasks);
7479
7480 init_sched_build_groups(cpu_map, cpu_map,
7481 &cpu_to_allnodes_group,
7482 send_covered, tmpmask);
7483 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007484
7485 for (i = 0; i < MAX_NUMNODES; i++) {
7486 /* Set up node groups */
7487 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007488 SCHED_CPUMASK_VAR(nodemask, allmasks);
7489 SCHED_CPUMASK_VAR(domainspan, allmasks);
7490 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007491 int j;
7492
Mike Travis7c16ec52008-04-04 18:11:11 -07007493 *nodemask = node_to_cpumask(i);
7494 cpus_clear(*covered);
7495
7496 cpus_and(*nodemask, *nodemask, *cpu_map);
7497 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007498 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007499 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007500 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007501
Mike Travis4bdbaad32008-04-15 16:35:52 -07007502 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007503 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007504
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007505 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007506 if (!sg) {
7507 printk(KERN_WARNING "Can not alloc domain group for "
7508 "node %d\n", i);
7509 goto error;
7510 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007511 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007512 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007513 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007514
John Hawkes9c1cfda2005-09-06 15:18:14 -07007515 sd = &per_cpu(node_domains, j);
7516 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007517 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007518 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007519 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007520 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007521 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007522 prev = sg;
7523
7524 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007525 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007526 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007527 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007528
Mike Travis7c16ec52008-04-04 18:11:11 -07007529 cpus_complement(*notcovered, *covered);
7530 cpus_and(*tmpmask, *notcovered, *cpu_map);
7531 cpus_and(*tmpmask, *tmpmask, *domainspan);
7532 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007533 break;
7534
Mike Travis7c16ec52008-04-04 18:11:11 -07007535 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7536 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007537 continue;
7538
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007539 sg = kmalloc_node(sizeof(struct sched_group),
7540 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007541 if (!sg) {
7542 printk(KERN_WARNING
7543 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007544 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007545 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007546 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007547 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007548 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007549 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007550 prev->next = sg;
7551 prev = sg;
7552 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007554#endif
7555
7556 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007557#ifdef CONFIG_SCHED_SMT
7558 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007559 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7560
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007561 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007562 }
7563#endif
7564#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007565 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007566 struct sched_domain *sd = &per_cpu(core_domains, i);
7567
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007568 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007569 }
7570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007571
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007572 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007573 struct sched_domain *sd = &per_cpu(phys_domains, i);
7574
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007575 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007576 }
7577
John Hawkes9c1cfda2005-09-06 15:18:14 -07007578#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007579 for (i = 0; i < MAX_NUMNODES; i++)
7580 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007581
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007582 if (sd_allnodes) {
7583 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007584
Mike Travis7c16ec52008-04-04 18:11:11 -07007585 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7586 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007587 init_numa_sched_groups_power(sg);
7588 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007589#endif
7590
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007592 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593 struct sched_domain *sd;
7594#ifdef CONFIG_SCHED_SMT
7595 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007596#elif defined(CONFIG_SCHED_MC)
7597 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007598#else
7599 sd = &per_cpu(phys_domains, i);
7600#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007601 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007603
Mike Travis7c16ec52008-04-04 18:11:11 -07007604 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007605 return 0;
7606
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007607#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007608error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007609 free_sched_groups(cpu_map, tmpmask);
7610 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007611 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007612#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613}
Paul Jackson029190c2007-10-18 23:40:20 -07007614
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007615static int build_sched_domains(const cpumask_t *cpu_map)
7616{
7617 return __build_sched_domains(cpu_map, NULL);
7618}
7619
Paul Jackson029190c2007-10-18 23:40:20 -07007620static cpumask_t *doms_cur; /* current sched domains */
7621static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007622static struct sched_domain_attr *dattr_cur; /* attribues of custom domains
7623 in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007624
7625/*
7626 * Special case: If a kmalloc of a doms_cur partition (array of
7627 * cpumask_t) fails, then fallback to a single sched domain,
7628 * as determined by the single cpumask_t fallback_doms.
7629 */
7630static cpumask_t fallback_doms;
7631
Heiko Carstens22e52b02008-03-12 18:31:59 +01007632void __attribute__((weak)) arch_update_cpu_topology(void)
7633{
7634}
7635
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007636/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007637 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007638 * For now this just excludes isolated cpus, but could be used to
7639 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007640 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007641static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007642{
Milton Miller73785472007-10-24 18:23:48 +02007643 int err;
7644
Heiko Carstens22e52b02008-03-12 18:31:59 +01007645 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007646 ndoms_cur = 1;
7647 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7648 if (!doms_cur)
7649 doms_cur = &fallback_doms;
7650 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007651 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007652 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007653 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007654
7655 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007656}
7657
Mike Travis7c16ec52008-04-04 18:11:11 -07007658static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7659 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660{
Mike Travis7c16ec52008-04-04 18:11:11 -07007661 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007662}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007664/*
7665 * Detach sched domains from a group of cpus specified in cpu_map
7666 * These cpus will now be attached to the NULL domain
7667 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007668static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007669{
Mike Travis7c16ec52008-04-04 18:11:11 -07007670 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007671 int i;
7672
Milton Miller6382bc92007-10-15 17:00:19 +02007673 unregister_sched_domain_sysctl();
7674
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007675 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007676 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007677 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007678 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007679}
7680
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007681/* handle null as "default" */
7682static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7683 struct sched_domain_attr *new, int idx_new)
7684{
7685 struct sched_domain_attr tmp;
7686
7687 /* fast path */
7688 if (!new && !cur)
7689 return 1;
7690
7691 tmp = SD_ATTR_INIT;
7692 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7693 new ? (new + idx_new) : &tmp,
7694 sizeof(struct sched_domain_attr));
7695}
7696
Paul Jackson029190c2007-10-18 23:40:20 -07007697/*
7698 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007699 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007700 * doms_new[] to the current sched domain partitioning, doms_cur[].
7701 * It destroys each deleted domain and builds each new domain.
7702 *
7703 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007704 * The masks don't intersect (don't overlap.) We should setup one
7705 * sched domain for each mask. CPUs not in any of the cpumasks will
7706 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007707 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7708 * it as it is.
7709 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007710 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7711 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007712 * failed the kmalloc call, then it can pass in doms_new == NULL,
7713 * and partition_sched_domains() will fallback to the single partition
7714 * 'fallback_doms'.
7715 *
7716 * Call with hotplug lock held
7717 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007718void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7719 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007720{
7721 int i, j;
7722
Heiko Carstens712555e2008-04-28 11:33:07 +02007723 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007724
Milton Miller73785472007-10-24 18:23:48 +02007725 /* always unregister in case we don't destroy any domains */
7726 unregister_sched_domain_sysctl();
7727
Paul Jackson029190c2007-10-18 23:40:20 -07007728 if (doms_new == NULL) {
7729 ndoms_new = 1;
7730 doms_new = &fallback_doms;
7731 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007732 dattr_new = NULL;
Paul Jackson029190c2007-10-18 23:40:20 -07007733 }
7734
7735 /* Destroy deleted domains */
7736 for (i = 0; i < ndoms_cur; i++) {
7737 for (j = 0; j < ndoms_new; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007738 if (cpus_equal(doms_cur[i], doms_new[j])
7739 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007740 goto match1;
7741 }
7742 /* no match - a current sched domain not in new doms_new[] */
7743 detach_destroy_domains(doms_cur + i);
7744match1:
7745 ;
7746 }
7747
7748 /* Build new domains */
7749 for (i = 0; i < ndoms_new; i++) {
7750 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007751 if (cpus_equal(doms_new[i], doms_cur[j])
7752 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007753 goto match2;
7754 }
7755 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007756 __build_sched_domains(doms_new + i,
7757 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007758match2:
7759 ;
7760 }
7761
7762 /* Remember the new sched domains */
7763 if (doms_cur != &fallback_doms)
7764 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007765 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007766 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007767 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007768 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007769
7770 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007771
Heiko Carstens712555e2008-04-28 11:33:07 +02007772 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007773}
7774
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007775#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007776int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007777{
7778 int err;
7779
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007780 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007781 mutex_lock(&sched_domains_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007782 detach_destroy_domains(&cpu_online_map);
7783 err = arch_init_sched_domains(&cpu_online_map);
Heiko Carstens712555e2008-04-28 11:33:07 +02007784 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007785 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007786
7787 return err;
7788}
7789
7790static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7791{
7792 int ret;
7793
7794 if (buf[0] != '0' && buf[0] != '1')
7795 return -EINVAL;
7796
7797 if (smt)
7798 sched_smt_power_savings = (buf[0] == '1');
7799 else
7800 sched_mc_power_savings = (buf[0] == '1');
7801
7802 ret = arch_reinit_sched_domains();
7803
7804 return ret ? ret : count;
7805}
7806
Adrian Bunk6707de002007-08-12 18:08:19 +02007807#ifdef CONFIG_SCHED_MC
7808static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7809{
7810 return sprintf(page, "%u\n", sched_mc_power_savings);
7811}
7812static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7813 const char *buf, size_t count)
7814{
7815 return sched_power_savings_store(buf, count, 0);
7816}
7817static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7818 sched_mc_power_savings_store);
7819#endif
7820
7821#ifdef CONFIG_SCHED_SMT
7822static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7823{
7824 return sprintf(page, "%u\n", sched_smt_power_savings);
7825}
7826static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7827 const char *buf, size_t count)
7828{
7829 return sched_power_savings_store(buf, count, 1);
7830}
7831static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7832 sched_smt_power_savings_store);
7833#endif
7834
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007835int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7836{
7837 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007838
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007839#ifdef CONFIG_SCHED_SMT
7840 if (smt_capable())
7841 err = sysfs_create_file(&cls->kset.kobj,
7842 &attr_sched_smt_power_savings.attr);
7843#endif
7844#ifdef CONFIG_SCHED_MC
7845 if (!err && mc_capable())
7846 err = sysfs_create_file(&cls->kset.kobj,
7847 &attr_sched_mc_power_savings.attr);
7848#endif
7849 return err;
7850}
7851#endif
7852
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007854 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007855 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007856 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007857 * which will prevent rebalancing while the sched domains are recalculated.
7858 */
7859static int update_sched_domains(struct notifier_block *nfb,
7860 unsigned long action, void *hcpu)
7861{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007862 switch (action) {
7863 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007864 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007866 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007867 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007868 return NOTIFY_OK;
7869
7870 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007871 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007872 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007873 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007874 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007875 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007876 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007877 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007878 /*
7879 * Fall through and re-initialise the domains.
7880 */
7881 break;
7882 default:
7883 return NOTIFY_DONE;
7884 }
7885
7886 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007887 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007888
7889 return NOTIFY_OK;
7890}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891
7892void __init sched_init_smp(void)
7893{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007894 cpumask_t non_isolated_cpus;
7895
Mike Travis434d53b2008-04-04 18:11:04 -07007896#if defined(CONFIG_NUMA)
7897 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7898 GFP_KERNEL);
7899 BUG_ON(sched_group_nodes_bycpu == NULL);
7900#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007901 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007902 mutex_lock(&sched_domains_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007903 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007904 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007905 if (cpus_empty(non_isolated_cpus))
7906 cpu_set(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02007907 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007908 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007909 /* XXX: Theoretical race here - CPU may be hotplugged now */
7910 hotcpu_notifier(update_sched_domains, 0);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02007911 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07007912
7913 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007914 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007915 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007916 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007917}
7918#else
7919void __init sched_init_smp(void)
7920{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007921 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007922}
7923#endif /* CONFIG_SMP */
7924
7925int in_sched_functions(unsigned long addr)
7926{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007927 return in_lock_functions(addr) ||
7928 (addr >= (unsigned long)__sched_text_start
7929 && addr < (unsigned long)__sched_text_end);
7930}
7931
Alexey Dobriyana9957442007-10-15 17:00:13 +02007932static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007933{
7934 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02007935 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02007936#ifdef CONFIG_FAIR_GROUP_SCHED
7937 cfs_rq->rq = rq;
7938#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007939 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007940}
7941
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007942static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7943{
7944 struct rt_prio_array *array;
7945 int i;
7946
7947 array = &rt_rq->active;
7948 for (i = 0; i < MAX_RT_PRIO; i++) {
7949 INIT_LIST_HEAD(array->queue + i);
7950 __clear_bit(i, array->bitmap);
7951 }
7952 /* delimiter for bitsearch: */
7953 __set_bit(MAX_RT_PRIO, array->bitmap);
7954
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007955#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007956 rt_rq->highest_prio = MAX_RT_PRIO;
7957#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007958#ifdef CONFIG_SMP
7959 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007960 rt_rq->overloaded = 0;
7961#endif
7962
7963 rt_rq->rt_time = 0;
7964 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007965 rt_rq->rt_runtime = 0;
7966 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007967
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007968#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007969 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007970 rt_rq->rq = rq;
7971#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007972}
7973
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007974#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007975static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
7976 struct sched_entity *se, int cpu, int add,
7977 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007978{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007979 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007980 tg->cfs_rq[cpu] = cfs_rq;
7981 init_cfs_rq(cfs_rq, rq);
7982 cfs_rq->tg = tg;
7983 if (add)
7984 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7985
7986 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007987 /* se could be NULL for init_task_group */
7988 if (!se)
7989 return;
7990
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007991 if (!parent)
7992 se->cfs_rq = &rq->cfs;
7993 else
7994 se->cfs_rq = parent->my_q;
7995
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007996 se->my_q = cfs_rq;
7997 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02007998 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007999 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008000}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008001#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008002
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008003#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008004static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
8005 struct sched_rt_entity *rt_se, int cpu, int add,
8006 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008007{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008008 struct rq *rq = cpu_rq(cpu);
8009
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008010 tg->rt_rq[cpu] = rt_rq;
8011 init_rt_rq(rt_rq, rq);
8012 rt_rq->tg = tg;
8013 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008014 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008015 if (add)
8016 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
8017
8018 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008019 if (!rt_se)
8020 return;
8021
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008022 if (!parent)
8023 rt_se->rt_rq = &rq->rt;
8024 else
8025 rt_se->rt_rq = parent->my_q;
8026
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008027 rt_se->rt_rq = &rq->rt;
8028 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008029 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008030 INIT_LIST_HEAD(&rt_se->run_list);
8031}
8032#endif
8033
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034void __init sched_init(void)
8035{
Ingo Molnardd41f592007-07-09 18:51:59 +02008036 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008037 unsigned long alloc_size = 0, ptr;
8038
8039#ifdef CONFIG_FAIR_GROUP_SCHED
8040 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8041#endif
8042#ifdef CONFIG_RT_GROUP_SCHED
8043 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8044#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008045#ifdef CONFIG_USER_SCHED
8046 alloc_size *= 2;
8047#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008048 /*
8049 * As sched_init() is called before page_alloc is setup,
8050 * we use alloc_bootmem().
8051 */
8052 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07008053 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07008054
8055#ifdef CONFIG_FAIR_GROUP_SCHED
8056 init_task_group.se = (struct sched_entity **)ptr;
8057 ptr += nr_cpu_ids * sizeof(void **);
8058
8059 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8060 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008061
8062#ifdef CONFIG_USER_SCHED
8063 root_task_group.se = (struct sched_entity **)ptr;
8064 ptr += nr_cpu_ids * sizeof(void **);
8065
8066 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8067 ptr += nr_cpu_ids * sizeof(void **);
8068#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008069#endif
8070#ifdef CONFIG_RT_GROUP_SCHED
8071 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8072 ptr += nr_cpu_ids * sizeof(void **);
8073
8074 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008075 ptr += nr_cpu_ids * sizeof(void **);
8076
8077#ifdef CONFIG_USER_SCHED
8078 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8079 ptr += nr_cpu_ids * sizeof(void **);
8080
8081 root_task_group.rt_rq = (struct rt_rq **)ptr;
8082 ptr += nr_cpu_ids * sizeof(void **);
8083#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008084#endif
8085 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008086
Gregory Haskins57d885f2008-01-25 21:08:18 +01008087#ifdef CONFIG_SMP
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008088 init_aggregate();
Gregory Haskins57d885f2008-01-25 21:08:18 +01008089 init_defrootdomain();
8090#endif
8091
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008092 init_rt_bandwidth(&def_rt_bandwidth,
8093 global_rt_period(), global_rt_runtime());
8094
8095#ifdef CONFIG_RT_GROUP_SCHED
8096 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8097 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008098#ifdef CONFIG_USER_SCHED
8099 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8100 global_rt_period(), RUNTIME_INF);
8101#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008102#endif
8103
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008104#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008105 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008106 INIT_LIST_HEAD(&init_task_group.children);
8107
8108#ifdef CONFIG_USER_SCHED
8109 INIT_LIST_HEAD(&root_task_group.children);
8110 init_task_group.parent = &root_task_group;
8111 list_add(&init_task_group.siblings, &root_task_group.children);
8112#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008113#endif
8114
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008115 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008116 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008117
8118 rq = cpu_rq(i);
8119 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07008120 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07008121 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008122 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008123 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008124#ifdef CONFIG_FAIR_GROUP_SCHED
8125 init_task_group.shares = init_task_group_load;
8126 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008127#ifdef CONFIG_CGROUP_SCHED
8128 /*
8129 * How much cpu bandwidth does init_task_group get?
8130 *
8131 * In case of task-groups formed thr' the cgroup filesystem, it
8132 * gets 100% of the cpu resources in the system. This overall
8133 * system cpu resource is divided among the tasks of
8134 * init_task_group and its child task-groups in a fair manner,
8135 * based on each entity's (task or task-group's) weight
8136 * (se->load.weight).
8137 *
8138 * In other words, if init_task_group has 10 tasks of weight
8139 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8140 * then A0's share of the cpu resource is:
8141 *
8142 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
8143 *
8144 * We achieve this by letting init_task_group's tasks sit
8145 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8146 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008147 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008148#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008149 root_task_group.shares = NICE_0_LOAD;
8150 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008151 /*
8152 * In case of task-groups formed thr' the user id of tasks,
8153 * init_task_group represents tasks belonging to root user.
8154 * Hence it forms a sibling of all subsequent groups formed.
8155 * In this case, init_task_group gets only a fraction of overall
8156 * system cpu resource, based on the weight assigned to root
8157 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8158 * by letting tasks of init_task_group sit in a separate cfs_rq
8159 * (init_cfs_rq) and having one entity represent this group of
8160 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
8161 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008162 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008163 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008164 &per_cpu(init_sched_entity, i), i, 1,
8165 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008166
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008167#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008168#endif /* CONFIG_FAIR_GROUP_SCHED */
8169
8170 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008171#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008172 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008173#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008174 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008175#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008176 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008177 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008178 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008179 &per_cpu(init_sched_rt_entity, i), i, 1,
8180 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008181#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008182#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008183
Ingo Molnardd41f592007-07-09 18:51:59 +02008184 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8185 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008186#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008187 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008188 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008189 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008190 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008191 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008192 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008193 rq->migration_thread = NULL;
8194 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008195 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008196#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008197 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008198 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199 }
8200
Peter Williams2dd73a42006-06-27 02:54:34 -07008201 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008202
Avi Kivitye107be32007-07-26 13:40:43 +02008203#ifdef CONFIG_PREEMPT_NOTIFIERS
8204 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8205#endif
8206
Christoph Lameterc9819f42006-12-10 02:20:25 -08008207#ifdef CONFIG_SMP
8208 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
8209#endif
8210
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008211#ifdef CONFIG_RT_MUTEXES
8212 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8213#endif
8214
Linus Torvalds1da177e2005-04-16 15:20:36 -07008215 /*
8216 * The boot idle thread does lazy MMU switching as well:
8217 */
8218 atomic_inc(&init_mm.mm_count);
8219 enter_lazy_tlb(&init_mm, current);
8220
8221 /*
8222 * Make us the idle thread. Technically, schedule() should not be
8223 * called from this thread, however somewhere below it might be,
8224 * but because we are the idle thread, we just pick up running again
8225 * when this runqueue becomes "idle".
8226 */
8227 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008228 /*
8229 * During early bootup we pretend to be a normal task:
8230 */
8231 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008232
8233 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008234}
8235
8236#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8237void __might_sleep(char *file, int line)
8238{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008239#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008240 static unsigned long prev_jiffy; /* ratelimiting */
8241
8242 if ((in_atomic() || irqs_disabled()) &&
8243 system_state == SYSTEM_RUNNING && !oops_in_progress) {
8244 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8245 return;
8246 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08008247 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07008248 " context at %s:%d\n", file, line);
8249 printk("in_atomic():%d, irqs_disabled():%d\n",
8250 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08008251 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08008252 if (irqs_disabled())
8253 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254 dump_stack();
8255 }
8256#endif
8257}
8258EXPORT_SYMBOL(__might_sleep);
8259#endif
8260
8261#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008262static void normalize_task(struct rq *rq, struct task_struct *p)
8263{
8264 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008265
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008266 update_rq_clock(rq);
8267 on_rq = p->se.on_rq;
8268 if (on_rq)
8269 deactivate_task(rq, p, 0);
8270 __setscheduler(rq, p, SCHED_NORMAL, 0);
8271 if (on_rq) {
8272 activate_task(rq, p, 0);
8273 resched_task(rq->curr);
8274 }
8275}
8276
Linus Torvalds1da177e2005-04-16 15:20:36 -07008277void normalize_rt_tasks(void)
8278{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008279 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008280 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008281 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008282
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008283 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008284 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008285 /*
8286 * Only normalize user tasks:
8287 */
8288 if (!p->mm)
8289 continue;
8290
Ingo Molnardd41f592007-07-09 18:51:59 +02008291 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008292#ifdef CONFIG_SCHEDSTATS
8293 p->se.wait_start = 0;
8294 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008295 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008296#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008297
8298 if (!rt_task(p)) {
8299 /*
8300 * Renice negative nice level userspace
8301 * tasks back to 0:
8302 */
8303 if (TASK_NICE(p) < 0 && p->mm)
8304 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008305 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008307
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008308 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008309 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008310
Ingo Molnar178be792007-10-15 17:00:18 +02008311 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008312
Ingo Molnarb29739f2006-06-27 02:54:51 -07008313 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008314 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008315 } while_each_thread(g, p);
8316
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008317 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008318}
8319
8320#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008321
8322#ifdef CONFIG_IA64
8323/*
8324 * These functions are only useful for the IA64 MCA handling.
8325 *
8326 * They can only be called when the whole system has been
8327 * stopped - every CPU needs to be quiescent, and no scheduling
8328 * activity can take place. Using them for anything else would
8329 * be a serious bug, and as a result, they aren't even visible
8330 * under any other configuration.
8331 */
8332
8333/**
8334 * curr_task - return the current task for a given cpu.
8335 * @cpu: the processor in question.
8336 *
8337 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8338 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008339struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008340{
8341 return cpu_curr(cpu);
8342}
8343
8344/**
8345 * set_curr_task - set the current task for a given cpu.
8346 * @cpu: the processor in question.
8347 * @p: the task pointer to set.
8348 *
8349 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008350 * are serviced on a separate stack. It allows the architecture to switch the
8351 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008352 * must be called with all CPU's synchronized, and interrupts disabled, the
8353 * and caller must save the original value of the current task (see
8354 * curr_task() above) and restore that value before reenabling interrupts and
8355 * re-starting the system.
8356 *
8357 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8358 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008359void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008360{
8361 cpu_curr(cpu) = p;
8362}
8363
8364#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008365
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008366#ifdef CONFIG_FAIR_GROUP_SCHED
8367static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008368{
8369 int i;
8370
8371 for_each_possible_cpu(i) {
8372 if (tg->cfs_rq)
8373 kfree(tg->cfs_rq[i]);
8374 if (tg->se)
8375 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008376 }
8377
8378 kfree(tg->cfs_rq);
8379 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008380}
8381
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008382static
8383int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008384{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008385 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008386 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008387 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008388 int i;
8389
Mike Travis434d53b2008-04-04 18:11:04 -07008390 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008391 if (!tg->cfs_rq)
8392 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008393 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008394 if (!tg->se)
8395 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008396
8397 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008398
8399 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008400 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008401
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008402 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8403 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008404 if (!cfs_rq)
8405 goto err;
8406
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008407 se = kmalloc_node(sizeof(struct sched_entity),
8408 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008409 if (!se)
8410 goto err;
8411
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008412 parent_se = parent ? parent->se[i] : NULL;
8413 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008414 }
8415
8416 return 1;
8417
8418 err:
8419 return 0;
8420}
8421
8422static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8423{
8424 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8425 &cpu_rq(cpu)->leaf_cfs_rq_list);
8426}
8427
8428static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8429{
8430 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8431}
8432#else
8433static inline void free_fair_sched_group(struct task_group *tg)
8434{
8435}
8436
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008437static inline
8438int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008439{
8440 return 1;
8441}
8442
8443static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8444{
8445}
8446
8447static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8448{
8449}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008450#endif
8451
8452#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008453static void free_rt_sched_group(struct task_group *tg)
8454{
8455 int i;
8456
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008457 destroy_rt_bandwidth(&tg->rt_bandwidth);
8458
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008459 for_each_possible_cpu(i) {
8460 if (tg->rt_rq)
8461 kfree(tg->rt_rq[i]);
8462 if (tg->rt_se)
8463 kfree(tg->rt_se[i]);
8464 }
8465
8466 kfree(tg->rt_rq);
8467 kfree(tg->rt_se);
8468}
8469
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008470static
8471int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008472{
8473 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008474 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008475 struct rq *rq;
8476 int i;
8477
Mike Travis434d53b2008-04-04 18:11:04 -07008478 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008479 if (!tg->rt_rq)
8480 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008481 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008482 if (!tg->rt_se)
8483 goto err;
8484
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008485 init_rt_bandwidth(&tg->rt_bandwidth,
8486 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008487
8488 for_each_possible_cpu(i) {
8489 rq = cpu_rq(i);
8490
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008491 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8492 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8493 if (!rt_rq)
8494 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008495
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008496 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8497 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8498 if (!rt_se)
8499 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008500
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008501 parent_se = parent ? parent->rt_se[i] : NULL;
8502 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008503 }
8504
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008505 return 1;
8506
8507 err:
8508 return 0;
8509}
8510
8511static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8512{
8513 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8514 &cpu_rq(cpu)->leaf_rt_rq_list);
8515}
8516
8517static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8518{
8519 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8520}
8521#else
8522static inline void free_rt_sched_group(struct task_group *tg)
8523{
8524}
8525
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008526static inline
8527int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008528{
8529 return 1;
8530}
8531
8532static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8533{
8534}
8535
8536static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8537{
8538}
8539#endif
8540
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008541#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008542static void free_sched_group(struct task_group *tg)
8543{
8544 free_fair_sched_group(tg);
8545 free_rt_sched_group(tg);
8546 kfree(tg);
8547}
8548
8549/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008550struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008551{
8552 struct task_group *tg;
8553 unsigned long flags;
8554 int i;
8555
8556 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8557 if (!tg)
8558 return ERR_PTR(-ENOMEM);
8559
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008560 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008561 goto err;
8562
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008563 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008564 goto err;
8565
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008566 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008567 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008568 register_fair_sched_group(tg, i);
8569 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008570 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008571 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008572
8573 WARN_ON(!parent); /* root should already exist */
8574
8575 tg->parent = parent;
8576 list_add_rcu(&tg->siblings, &parent->children);
8577 INIT_LIST_HEAD(&tg->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008578 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008579
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008580 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008581
8582err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008583 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008584 return ERR_PTR(-ENOMEM);
8585}
8586
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008587/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008588static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008589{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008590 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008591 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008592}
8593
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008594/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008595void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008596{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008597 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008598 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008599
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008600 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008601 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008602 unregister_fair_sched_group(tg, i);
8603 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008604 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008605 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008606 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008607 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008608
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008609 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008610 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008611}
8612
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008613/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008614 * The caller of this function should have put the task in its new group
8615 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8616 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008617 */
8618void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008619{
8620 int on_rq, running;
8621 unsigned long flags;
8622 struct rq *rq;
8623
8624 rq = task_rq_lock(tsk, &flags);
8625
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008626 update_rq_clock(rq);
8627
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008628 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008629 on_rq = tsk->se.on_rq;
8630
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008631 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008632 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008633 if (unlikely(running))
8634 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008635
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008636 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008637
Peter Zijlstra810b3812008-02-29 15:21:01 -05008638#ifdef CONFIG_FAIR_GROUP_SCHED
8639 if (tsk->sched_class->moved_group)
8640 tsk->sched_class->moved_group(tsk);
8641#endif
8642
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008643 if (unlikely(running))
8644 tsk->sched_class->set_curr_task(rq);
8645 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008646 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008647
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008648 task_rq_unlock(rq, &flags);
8649}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008650#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008651
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008652#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008653static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008654{
8655 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008656 int on_rq;
8657
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008658 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008659 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008660 dequeue_entity(cfs_rq, se, 0);
8661
8662 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008663 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008664
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008665 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008666 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008667}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008668
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008669static void set_se_shares(struct sched_entity *se, unsigned long shares)
8670{
8671 struct cfs_rq *cfs_rq = se->cfs_rq;
8672 struct rq *rq = cfs_rq->rq;
8673 unsigned long flags;
8674
8675 spin_lock_irqsave(&rq->lock, flags);
8676 __set_se_shares(se, shares);
8677 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008678}
8679
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008680static DEFINE_MUTEX(shares_mutex);
8681
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008682int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008683{
8684 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008685 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008686
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008687 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008688 * We can't change the weight of the root cgroup.
8689 */
8690 if (!tg->se[0])
8691 return -EINVAL;
8692
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008693 if (shares < MIN_SHARES)
8694 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008695 else if (shares > MAX_SHARES)
8696 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008697
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008698 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008699 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008700 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008701
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008702 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008703 for_each_possible_cpu(i)
8704 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008705 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008706 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008707
8708 /* wait for any ongoing reference to this group to finish */
8709 synchronize_sched();
8710
8711 /*
8712 * Now we are free to modify the group's share on each cpu
8713 * w/o tripping rebalance_share or load_balance_fair.
8714 */
8715 tg->shares = shares;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008716 for_each_possible_cpu(i) {
8717 /*
8718 * force a rebalance
8719 */
8720 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008721 set_se_shares(tg->se[i], shares);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008722 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008723
8724 /*
8725 * Enable load balance activity on this group, by inserting it back on
8726 * each cpu's rq->leaf_cfs_rq_list.
8727 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008728 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008729 for_each_possible_cpu(i)
8730 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008731 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008732 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008733done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008734 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008735 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008736}
8737
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008738unsigned long sched_group_shares(struct task_group *tg)
8739{
8740 return tg->shares;
8741}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008742#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008743
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008744#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008745/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008746 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008747 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008748static DEFINE_MUTEX(rt_constraints_mutex);
8749
8750static unsigned long to_ratio(u64 period, u64 runtime)
8751{
8752 if (runtime == RUNTIME_INF)
8753 return 1ULL << 16;
8754
Roman Zippel6f6d6a12008-05-01 04:34:28 -07008755 return div64_u64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008756}
8757
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008758#ifdef CONFIG_CGROUP_SCHED
8759static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8760{
8761 struct task_group *tgi, *parent = tg->parent;
8762 unsigned long total = 0;
8763
8764 if (!parent) {
8765 if (global_rt_period() < period)
8766 return 0;
8767
8768 return to_ratio(period, runtime) <
8769 to_ratio(global_rt_period(), global_rt_runtime());
8770 }
8771
8772 if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period)
8773 return 0;
8774
8775 rcu_read_lock();
8776 list_for_each_entry_rcu(tgi, &parent->children, siblings) {
8777 if (tgi == tg)
8778 continue;
8779
8780 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8781 tgi->rt_bandwidth.rt_runtime);
8782 }
8783 rcu_read_unlock();
8784
8785 return total + to_ratio(period, runtime) <
8786 to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period),
8787 parent->rt_bandwidth.rt_runtime);
8788}
8789#elif defined CONFIG_USER_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008790static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008791{
8792 struct task_group *tgi;
8793 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008794 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008795 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008796
8797 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008798 list_for_each_entry_rcu(tgi, &task_groups, list) {
8799 if (tgi == tg)
8800 continue;
8801
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008802 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8803 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008804 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008805 rcu_read_unlock();
8806
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008807 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008808}
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008809#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008810
Dhaval Giani521f1a242008-02-28 15:21:56 +05308811/* Must be called with tasklist_lock held */
8812static inline int tg_has_rt_tasks(struct task_group *tg)
8813{
8814 struct task_struct *g, *p;
8815 do_each_thread(g, p) {
8816 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8817 return 1;
8818 } while_each_thread(g, p);
8819 return 0;
8820}
8821
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008822static int tg_set_bandwidth(struct task_group *tg,
8823 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008824{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008825 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008826
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008827 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308828 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008829 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308830 err = -EBUSY;
8831 goto unlock;
8832 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008833 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8834 err = -EINVAL;
8835 goto unlock;
8836 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008837
8838 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008839 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8840 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008841
8842 for_each_possible_cpu(i) {
8843 struct rt_rq *rt_rq = tg->rt_rq[i];
8844
8845 spin_lock(&rt_rq->rt_runtime_lock);
8846 rt_rq->rt_runtime = rt_runtime;
8847 spin_unlock(&rt_rq->rt_runtime_lock);
8848 }
8849 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008850 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308851 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008852 mutex_unlock(&rt_constraints_mutex);
8853
8854 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008855}
8856
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008857int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8858{
8859 u64 rt_runtime, rt_period;
8860
8861 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8862 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8863 if (rt_runtime_us < 0)
8864 rt_runtime = RUNTIME_INF;
8865
8866 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8867}
8868
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008869long sched_group_rt_runtime(struct task_group *tg)
8870{
8871 u64 rt_runtime_us;
8872
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008873 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008874 return -1;
8875
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008876 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008877 do_div(rt_runtime_us, NSEC_PER_USEC);
8878 return rt_runtime_us;
8879}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008880
8881int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8882{
8883 u64 rt_runtime, rt_period;
8884
8885 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8886 rt_runtime = tg->rt_bandwidth.rt_runtime;
8887
8888 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8889}
8890
8891long sched_group_rt_period(struct task_group *tg)
8892{
8893 u64 rt_period_us;
8894
8895 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8896 do_div(rt_period_us, NSEC_PER_USEC);
8897 return rt_period_us;
8898}
8899
8900static int sched_rt_global_constraints(void)
8901{
8902 int ret = 0;
8903
8904 mutex_lock(&rt_constraints_mutex);
8905 if (!__rt_schedulable(NULL, 1, 0))
8906 ret = -EINVAL;
8907 mutex_unlock(&rt_constraints_mutex);
8908
8909 return ret;
8910}
8911#else
8912static int sched_rt_global_constraints(void)
8913{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008914 unsigned long flags;
8915 int i;
8916
8917 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8918 for_each_possible_cpu(i) {
8919 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8920
8921 spin_lock(&rt_rq->rt_runtime_lock);
8922 rt_rq->rt_runtime = global_rt_runtime();
8923 spin_unlock(&rt_rq->rt_runtime_lock);
8924 }
8925 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8926
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008927 return 0;
8928}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008929#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008930
8931int sched_rt_handler(struct ctl_table *table, int write,
8932 struct file *filp, void __user *buffer, size_t *lenp,
8933 loff_t *ppos)
8934{
8935 int ret;
8936 int old_period, old_runtime;
8937 static DEFINE_MUTEX(mutex);
8938
8939 mutex_lock(&mutex);
8940 old_period = sysctl_sched_rt_period;
8941 old_runtime = sysctl_sched_rt_runtime;
8942
8943 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8944
8945 if (!ret && write) {
8946 ret = sched_rt_global_constraints();
8947 if (ret) {
8948 sysctl_sched_rt_period = old_period;
8949 sysctl_sched_rt_runtime = old_runtime;
8950 } else {
8951 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8952 def_rt_bandwidth.rt_period =
8953 ns_to_ktime(global_rt_period());
8954 }
8955 }
8956 mutex_unlock(&mutex);
8957
8958 return ret;
8959}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008960
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008961#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008962
8963/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008964static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008965{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008966 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8967 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008968}
8969
8970static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02008971cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008972{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008973 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008974
Paul Menage2b01dfe2007-10-24 18:23:50 +02008975 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008976 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008977 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008978 return &init_task_group.css;
8979 }
8980
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008981 parent = cgroup_tg(cgrp->parent);
8982 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008983 if (IS_ERR(tg))
8984 return ERR_PTR(-ENOMEM);
8985
8986 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008987 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008988
8989 return &tg->css;
8990}
8991
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008992static void
8993cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008994{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008995 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008996
8997 sched_destroy_group(tg);
8998}
8999
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009000static int
9001cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
9002 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009003{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009004#ifdef CONFIG_RT_GROUP_SCHED
9005 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009006 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009007 return -EINVAL;
9008#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009009 /* We don't support RT-tasks being in separate groups */
9010 if (tsk->sched_class != &fair_sched_class)
9011 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009012#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009013
9014 return 0;
9015}
9016
9017static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02009018cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009019 struct cgroup *old_cont, struct task_struct *tsk)
9020{
9021 sched_move_task(tsk);
9022}
9023
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009024#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07009025static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009026 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009027{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009028 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009029}
9030
Paul Menagef4c753b2008-04-29 00:59:56 -07009031static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009032{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009033 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009034
9035 return (u64) tg->shares;
9036}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009037#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009038
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009039#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07009040static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009041 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009042{
Paul Menage06ecb272008-04-29 01:00:06 -07009043 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009044}
9045
Paul Menage06ecb272008-04-29 01:00:06 -07009046static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009047{
Paul Menage06ecb272008-04-29 01:00:06 -07009048 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009049}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009050
9051static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9052 u64 rt_period_us)
9053{
9054 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9055}
9056
9057static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9058{
9059 return sched_group_rt_period(cgroup_tg(cgrp));
9060}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009061#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009062
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009063static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009064#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009065 {
9066 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009067 .read_u64 = cpu_shares_read_u64,
9068 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009069 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009070#endif
9071#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009072 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009073 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009074 .read_s64 = cpu_rt_runtime_read,
9075 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009076 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009077 {
9078 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009079 .read_u64 = cpu_rt_period_read_uint,
9080 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009081 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009082#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009083};
9084
9085static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9086{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009087 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009088}
9089
9090struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009091 .name = "cpu",
9092 .create = cpu_cgroup_create,
9093 .destroy = cpu_cgroup_destroy,
9094 .can_attach = cpu_cgroup_can_attach,
9095 .attach = cpu_cgroup_attach,
9096 .populate = cpu_cgroup_populate,
9097 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009098 .early_init = 1,
9099};
9100
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009101#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009102
9103#ifdef CONFIG_CGROUP_CPUACCT
9104
9105/*
9106 * CPU accounting code for task groups.
9107 *
9108 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9109 * (balbir@in.ibm.com).
9110 */
9111
9112/* track cpu usage of a group of tasks */
9113struct cpuacct {
9114 struct cgroup_subsys_state css;
9115 /* cpuusage holds pointer to a u64-type object on every cpu */
9116 u64 *cpuusage;
9117};
9118
9119struct cgroup_subsys cpuacct_subsys;
9120
9121/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309122static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009123{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309124 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009125 struct cpuacct, css);
9126}
9127
9128/* return cpu accounting group to which this task belongs */
9129static inline struct cpuacct *task_ca(struct task_struct *tsk)
9130{
9131 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9132 struct cpuacct, css);
9133}
9134
9135/* create a new cpu accounting group */
9136static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309137 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009138{
9139 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9140
9141 if (!ca)
9142 return ERR_PTR(-ENOMEM);
9143
9144 ca->cpuusage = alloc_percpu(u64);
9145 if (!ca->cpuusage) {
9146 kfree(ca);
9147 return ERR_PTR(-ENOMEM);
9148 }
9149
9150 return &ca->css;
9151}
9152
9153/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009154static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309155cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009156{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309157 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009158
9159 free_percpu(ca->cpuusage);
9160 kfree(ca);
9161}
9162
9163/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309164static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009165{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309166 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009167 u64 totalcpuusage = 0;
9168 int i;
9169
9170 for_each_possible_cpu(i) {
9171 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9172
9173 /*
9174 * Take rq->lock to make 64-bit addition safe on 32-bit
9175 * platforms.
9176 */
9177 spin_lock_irq(&cpu_rq(i)->lock);
9178 totalcpuusage += *cpuusage;
9179 spin_unlock_irq(&cpu_rq(i)->lock);
9180 }
9181
9182 return totalcpuusage;
9183}
9184
Dhaval Giani0297b802008-02-29 10:02:44 +05309185static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9186 u64 reset)
9187{
9188 struct cpuacct *ca = cgroup_ca(cgrp);
9189 int err = 0;
9190 int i;
9191
9192 if (reset) {
9193 err = -EINVAL;
9194 goto out;
9195 }
9196
9197 for_each_possible_cpu(i) {
9198 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9199
9200 spin_lock_irq(&cpu_rq(i)->lock);
9201 *cpuusage = 0;
9202 spin_unlock_irq(&cpu_rq(i)->lock);
9203 }
9204out:
9205 return err;
9206}
9207
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009208static struct cftype files[] = {
9209 {
9210 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009211 .read_u64 = cpuusage_read,
9212 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009213 },
9214};
9215
Dhaval Giani32cd7562008-02-29 10:02:43 +05309216static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009217{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309218 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009219}
9220
9221/*
9222 * charge this task's execution time to its accounting group.
9223 *
9224 * called with rq->lock held.
9225 */
9226static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9227{
9228 struct cpuacct *ca;
9229
9230 if (!cpuacct_subsys.active)
9231 return;
9232
9233 ca = task_ca(tsk);
9234 if (ca) {
9235 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
9236
9237 *cpuusage += cputime;
9238 }
9239}
9240
9241struct cgroup_subsys cpuacct_subsys = {
9242 .name = "cpuacct",
9243 .create = cpuacct_create,
9244 .destroy = cpuacct_destroy,
9245 .populate = cpuacct_populate,
9246 .subsys_id = cpuacct_subsys_id,
9247};
9248#endif /* CONFIG_CGROUP_CPUACCT */