blob: 4de56108c86fdf85a3af17b20b440197496819f3 [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>
Alexey Dobriyanb5aadf72008-10-06 13:23:43 +040058#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/seq_file.h>
Nick Piggine692ab52007-07-26 13:40:43 +020060#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/syscalls.h>
62#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070063#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080064#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070065#include <linux/delayacct.h>
Eric Dumazet5517d862007-05-08 00:32:57 -070066#include <linux/reciprocal_div.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020067#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020068#include <linux/pagemap.h>
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010069#include <linux/hrtimer.h>
Reynes Philippe30914a52008-03-17 16:19:05 -070070#include <linux/tick.h>
Mike Travis434d53b2008-04-04 18:11:04 -070071#include <linux/bootmem.h>
Peter Zijlstraf00b45c2008-04-19 19:45:00 +020072#include <linux/debugfs.h>
73#include <linux/ctype.h>
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +020074#include <linux/ftrace.h>
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -040075#include <trace/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Eric Dumazet5517d862007-05-08 00:32:57 -070077#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020078#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Gregory Haskins6e0534f2008-05-12 21:21:01 +020080#include "sched_cpupri.h"
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/*
83 * Convert user-nice values [ -20 ... 0 ... 19 ]
84 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
85 * and back.
86 */
87#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
88#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
89#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
90
91/*
92 * 'User priority' is the nice value converted to something we
93 * can work with better when scaling various scheduler parameters,
94 * it's a [ 0 ... 39 ] range.
95 */
96#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
97#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
98#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
99
100/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100101 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100103#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200105#define NICE_0_LOAD SCHED_LOAD_SCALE
106#define NICE_0_SHIFT SCHED_LOAD_SHIFT
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 * These are the 'tuning knobs' of the scheduler:
110 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200111 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * Timeslices get refilled after they expire.
113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700115
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200116/*
117 * single value that denotes runtime == period, ie unlimited time.
118 */
119#define RUNTIME_INF ((u64)~0ULL)
120
Mathieu Desnoyers7e066fb2008-11-14 17:47:47 -0500121DEFINE_TRACE(sched_wait_task);
122DEFINE_TRACE(sched_wakeup);
123DEFINE_TRACE(sched_wakeup_new);
124DEFINE_TRACE(sched_switch);
125DEFINE_TRACE(sched_migrate_task);
126
Eric Dumazet5517d862007-05-08 00:32:57 -0700127#ifdef CONFIG_SMP
128/*
129 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
130 * Since cpu_power is a 'constant', we can use a reciprocal divide.
131 */
132static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
133{
134 return reciprocal_divide(load, sg->reciprocal_cpu_power);
135}
136
137/*
138 * Each time a sched group cpu_power is changed,
139 * we must compute its reciprocal value
140 */
141static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
142{
143 sg->__cpu_power += val;
144 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
145}
146#endif
147
Ingo Molnare05606d2007-07-09 18:51:59 +0200148static inline int rt_policy(int policy)
149{
Roel Kluin3f33a7c2008-05-13 23:44:11 +0200150 if (unlikely(policy == SCHED_FIFO || policy == SCHED_RR))
Ingo Molnare05606d2007-07-09 18:51:59 +0200151 return 1;
152 return 0;
153}
154
155static inline int task_has_rt_policy(struct task_struct *p)
156{
157 return rt_policy(p->policy);
158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200161 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200163struct rt_prio_array {
164 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
165 struct list_head queue[MAX_RT_PRIO];
166};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200168struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100169 /* nests inside the rq lock: */
170 spinlock_t rt_runtime_lock;
171 ktime_t rt_period;
172 u64 rt_runtime;
173 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200174};
175
176static struct rt_bandwidth def_rt_bandwidth;
177
178static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
179
180static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
181{
182 struct rt_bandwidth *rt_b =
183 container_of(timer, struct rt_bandwidth, rt_period_timer);
184 ktime_t now;
185 int overrun;
186 int idle = 0;
187
188 for (;;) {
189 now = hrtimer_cb_get_time(timer);
190 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
191
192 if (!overrun)
193 break;
194
195 idle = do_sched_rt_period_timer(rt_b, overrun);
196 }
197
198 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
199}
200
201static
202void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
203{
204 rt_b->rt_period = ns_to_ktime(period);
205 rt_b->rt_runtime = runtime;
206
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200207 spin_lock_init(&rt_b->rt_runtime_lock);
208
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200209 hrtimer_init(&rt_b->rt_period_timer,
210 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
211 rt_b->rt_period_timer.function = sched_rt_period_timer;
Thomas Gleixnerccc7dad2008-09-29 15:47:42 +0200212 rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_UNLOCKED;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200213}
214
Krzysztof Heltc8bfff62008-09-05 23:46:19 +0200215static inline int rt_bandwidth_enabled(void)
216{
217 return sysctl_sched_rt_runtime >= 0;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200218}
219
220static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
221{
222 ktime_t now;
223
Peter Zijlstra0b148fa2008-08-19 12:33:04 +0200224 if (rt_bandwidth_enabled() && rt_b->rt_runtime == RUNTIME_INF)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200225 return;
226
227 if (hrtimer_active(&rt_b->rt_period_timer))
228 return;
229
230 spin_lock(&rt_b->rt_runtime_lock);
231 for (;;) {
232 if (hrtimer_active(&rt_b->rt_period_timer))
233 break;
234
235 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
236 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700237 hrtimer_start_expires(&rt_b->rt_period_timer,
238 HRTIMER_MODE_ABS);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200239 }
240 spin_unlock(&rt_b->rt_runtime_lock);
241}
242
243#ifdef CONFIG_RT_GROUP_SCHED
244static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
245{
246 hrtimer_cancel(&rt_b->rt_period_timer);
247}
248#endif
249
Heiko Carstens712555e2008-04-28 11:33:07 +0200250/*
251 * sched_domains_mutex serializes calls to arch_init_sched_domains,
252 * detach_destroy_domains and partition_sched_domains.
253 */
254static DEFINE_MUTEX(sched_domains_mutex);
255
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100256#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200257
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700258#include <linux/cgroup.h>
259
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200260struct cfs_rq;
261
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100262static LIST_HEAD(task_groups);
263
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200264/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200265struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100266#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700267 struct cgroup_subsys_state css;
268#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100269
270#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200271 /* schedulable entities of this group on each cpu */
272 struct sched_entity **se;
273 /* runqueue "owned" by this group on each cpu */
274 struct cfs_rq **cfs_rq;
275 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100276#endif
277
278#ifdef CONFIG_RT_GROUP_SCHED
279 struct sched_rt_entity **rt_se;
280 struct rt_rq **rt_rq;
281
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200282 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100283#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100284
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100285 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100286 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200287
288 struct task_group *parent;
289 struct list_head siblings;
290 struct list_head children;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200291};
292
Dhaval Giani354d60c2008-04-19 19:44:59 +0200293#ifdef CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200294
295/*
296 * Root task group.
297 * Every UID task group (including init_task_group aka UID-0) will
298 * be a child to this group.
299 */
300struct task_group root_task_group;
301
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100302#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200303/* Default task group's sched entity on each cpu */
304static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
305/* Default task group's cfs_rq on each cpu */
306static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200307#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100308
309#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100310static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
311static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200312#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +0200313#else /* !CONFIG_USER_SCHED */
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200314#define root_task_group init_task_group
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +0200315#endif /* CONFIG_USER_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100316
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100317/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100318 * a task group's cpu shares.
319 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100320static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100321
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100322#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100323#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100324# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200325#else /* !CONFIG_USER_SCHED */
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100326# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200327#endif /* CONFIG_USER_SCHED */
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200328
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800329/*
Lai Jiangshan2e084782008-06-12 16:42:58 +0800330 * A weight of 0 or 1 can cause arithmetics problems.
331 * A weight of a cfs_rq is the sum of weights of which entities
332 * are queued on this cfs_rq, so a weight of a entity should not be
333 * too large, so as the shares value of a task group.
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800334 * (The default weight is 1024 - so there's no practical
335 * limitation from this.)
336 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200337#define MIN_SHARES 2
Lai Jiangshan2e084782008-06-12 16:42:58 +0800338#define MAX_SHARES (1UL << 18)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200339
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100340static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100341#endif
342
343/* Default task group.
344 * Every task in system belong to this group at bootup.
345 */
Mike Travis434d53b2008-04-04 18:11:04 -0700346struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200347
348/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200349static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200350{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200351 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200352
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100353#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200354 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100355#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700356 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
357 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200358#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100359 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200360#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200361 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200362}
363
364/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100365static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200366{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100367#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100368 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
369 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100370#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100371
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100372#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100373 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
374 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100375#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200376}
377
378#else
379
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100380static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Peter Zijlstra83378262008-06-27 13:41:37 +0200381static inline struct task_group *task_group(struct task_struct *p)
382{
383 return NULL;
384}
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200385
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100386#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200387
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200388/* CFS-related fields in a runqueue */
389struct cfs_rq {
390 struct load_weight load;
391 unsigned long nr_running;
392
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200393 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200394 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200395
396 struct rb_root tasks_timeline;
397 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200398
399 struct list_head tasks;
400 struct list_head *balance_iterator;
401
402 /*
403 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200404 * It is set to NULL otherwise (i.e when none are currently running).
405 */
Peter Zijlstra47932412008-11-04 21:25:09 +0100406 struct sched_entity *curr, *next, *last;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200407
Peter Zijlstra5ac5c4d2008-11-10 10:46:32 +0100408 unsigned int nr_spread_over;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200409
Ingo Molnar62160e32007-10-15 17:00:03 +0200410#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200411 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
412
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100413 /*
414 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200415 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
416 * (like users, containers etc.)
417 *
418 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
419 * list is used during load balance.
420 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100421 struct list_head leaf_cfs_rq_list;
422 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200423
424#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200425 /*
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200426 * the part of load.weight contributed by tasks
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200427 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200428 unsigned long task_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200429
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200430 /*
431 * h_load = weight * f(tg)
432 *
433 * Where f(tg) is the recursive weight fraction assigned to
434 * this group.
435 */
436 unsigned long h_load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200437
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200438 /*
439 * this cpu's part of tg->shares
440 */
441 unsigned long shares;
Peter Zijlstraf1d239f2008-06-27 13:41:38 +0200442
443 /*
444 * load.weight at the time we set shares
445 */
446 unsigned long rq_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200447#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200448#endif
449};
450
451/* Real-Time classes' related field in a runqueue: */
452struct rt_rq {
453 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100454 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100455#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100456 int highest_prio; /* highest queued rt task prio */
457#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100458#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100459 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100460 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100461#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100462 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100463 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200464 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100465 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200466 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100467
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100468#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100469 unsigned long rt_nr_boosted;
470
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100471 struct rq *rq;
472 struct list_head leaf_rt_rq_list;
473 struct task_group *tg;
474 struct sched_rt_entity *rt_se;
475#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200476};
477
Gregory Haskins57d885f2008-01-25 21:08:18 +0100478#ifdef CONFIG_SMP
479
480/*
481 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100482 * variables. Each exclusive cpuset essentially defines an island domain by
483 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100484 * exclusive cpuset is created, we also create and attach a new root-domain
485 * object.
486 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100487 */
488struct root_domain {
489 atomic_t refcount;
490 cpumask_t span;
491 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100492
Ingo Molnar0eab9142008-01-25 21:08:19 +0100493 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100494 * The "RT overload" flag: it gets set if a CPU has more than
495 * one runnable RT task.
496 */
497 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100498 atomic_t rto_count;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200499#ifdef CONFIG_SMP
500 struct cpupri cpupri;
501#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +0100502};
503
Gregory Haskinsdc938522008-01-25 21:08:26 +0100504/*
505 * By default the system creates a single root-domain with all cpus as
506 * members (mimicking the global state we have today).
507 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100508static struct root_domain def_root_domain;
509
510#endif
511
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200512/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 * This is the main, per-CPU runqueue data structure.
514 *
515 * Locking rule: those places that want to lock multiple runqueues
516 * (such as the load balancing or the thread migration code), lock
517 * acquire operations must be ordered by ascending &runqueue.
518 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700519struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200520 /* runqueue lock: */
521 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 /*
524 * nr_running and cpu_load should be in the same cacheline because
525 * remote CPUs use both these fields when doing load calculation.
526 */
527 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200528 #define CPU_LOAD_IDX_MAX 5
529 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700530 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700531#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200532 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700533 unsigned char in_nohz_recently;
534#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200535 /* capture load from *all* tasks on this cpu: */
536 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200537 unsigned long nr_load_updates;
538 u64 nr_switches;
539
540 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100541 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100542
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200543#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200544 /* list of leaf cfs_rq on this cpu: */
545 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100546#endif
547#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100548 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 /*
552 * This is part of a global counter where only the total sum
553 * over all CPUs matters. A task can increase this counter on
554 * one CPU and if it got migrated afterwards it may decrease
555 * it on another CPU. Always updated under the runqueue lock:
556 */
557 unsigned long nr_uninterruptible;
558
Ingo Molnar36c8b582006-07-03 00:25:41 -0700559 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800560 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200562
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200563 u64 clock;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 atomic_t nr_iowait;
566
567#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100568 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 struct sched_domain *sd;
570
571 /* For active balancing */
572 int active_balance;
573 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200574 /* cpu of this runqueue: */
575 int cpu;
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400576 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Peter Zijlstraa8a51d52008-06-27 13:41:26 +0200578 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Ingo Molnar36c8b582006-07-03 00:25:41 -0700580 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 struct list_head migration_queue;
582#endif
583
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100584#ifdef CONFIG_SCHED_HRTICK
Peter Zijlstra31656512008-07-18 18:01:23 +0200585#ifdef CONFIG_SMP
586 int hrtick_csd_pending;
587 struct call_single_data hrtick_csd;
588#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100589 struct hrtimer hrtick_timer;
590#endif
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592#ifdef CONFIG_SCHEDSTATS
593 /* latency stats */
594 struct sched_info rq_sched_info;
595
596 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200597 unsigned int yld_exp_empty;
598 unsigned int yld_act_empty;
599 unsigned int yld_both_empty;
600 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200603 unsigned int sched_switch;
604 unsigned int sched_count;
605 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200608 unsigned int ttwu_count;
609 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200610
611 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200612 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613#endif
614};
615
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700616static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Peter Zijlstra15afe092008-09-20 23:38:02 +0200618static inline void check_preempt_curr(struct rq *rq, struct task_struct *p, int sync)
Ingo Molnardd41f592007-07-09 18:51:59 +0200619{
Peter Zijlstra15afe092008-09-20 23:38:02 +0200620 rq->curr->sched_class->check_preempt_curr(rq, p, sync);
Ingo Molnardd41f592007-07-09 18:51:59 +0200621}
622
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700623static inline int cpu_of(struct rq *rq)
624{
625#ifdef CONFIG_SMP
626 return rq->cpu;
627#else
628 return 0;
629#endif
630}
631
Ingo Molnar20d315d2007-07-09 18:51:58 +0200632/*
Nick Piggin674311d2005-06-25 14:57:27 -0700633 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700634 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700635 *
636 * The domain tree of any CPU may only be accessed from within
637 * preempt-disabled sections.
638 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700639#define for_each_domain(cpu, __sd) \
640 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
643#define this_rq() (&__get_cpu_var(runqueues))
644#define task_rq(p) cpu_rq(task_cpu(p))
645#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
646
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200647static inline void update_rq_clock(struct rq *rq)
648{
649 rq->clock = sched_clock_cpu(cpu_of(rq));
650}
651
Ingo Molnare436d802007-07-19 21:28:35 +0200652/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200653 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
654 */
655#ifdef CONFIG_SCHED_DEBUG
656# define const_debug __read_mostly
657#else
658# define const_debug static const
659#endif
660
Ingo Molnar017730c2008-05-12 21:20:52 +0200661/**
662 * runqueue_is_locked
663 *
664 * Returns true if the current cpu runqueue is locked.
665 * This interface allows printk to be called with the runqueue lock
666 * held and know whether or not it is OK to wake up the klogd.
667 */
668int runqueue_is_locked(void)
669{
670 int cpu = get_cpu();
671 struct rq *rq = cpu_rq(cpu);
672 int ret;
673
674 ret = spin_is_locked(&rq->lock);
675 put_cpu();
676 return ret;
677}
678
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200679/*
680 * Debugging: various feature bits
681 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200682
683#define SCHED_FEAT(name, enabled) \
684 __SCHED_FEAT_##name ,
685
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200686enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200687#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200688};
689
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200690#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200691
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200692#define SCHED_FEAT(name, enabled) \
693 (1UL << __SCHED_FEAT_##name) * enabled |
694
695const_debug unsigned int sysctl_sched_features =
696#include "sched_features.h"
697 0;
698
699#undef SCHED_FEAT
700
701#ifdef CONFIG_SCHED_DEBUG
702#define SCHED_FEAT(name, enabled) \
703 #name ,
704
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700705static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200706#include "sched_features.h"
707 NULL
708};
709
710#undef SCHED_FEAT
711
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700712static int sched_feat_open(struct inode *inode, struct file *filp)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200713{
714 filp->private_data = inode->i_private;
715 return 0;
716}
717
718static ssize_t
719sched_feat_read(struct file *filp, char __user *ubuf,
720 size_t cnt, loff_t *ppos)
721{
722 char *buf;
723 int r = 0;
724 int len = 0;
725 int i;
726
727 for (i = 0; sched_feat_names[i]; i++) {
728 len += strlen(sched_feat_names[i]);
729 len += 4;
730 }
731
732 buf = kmalloc(len + 2, GFP_KERNEL);
733 if (!buf)
734 return -ENOMEM;
735
736 for (i = 0; sched_feat_names[i]; i++) {
737 if (sysctl_sched_features & (1UL << i))
738 r += sprintf(buf + r, "%s ", sched_feat_names[i]);
739 else
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200740 r += sprintf(buf + r, "NO_%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200741 }
742
743 r += sprintf(buf + r, "\n");
744 WARN_ON(r >= len + 2);
745
746 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
747
748 kfree(buf);
749
750 return r;
751}
752
753static ssize_t
754sched_feat_write(struct file *filp, const char __user *ubuf,
755 size_t cnt, loff_t *ppos)
756{
757 char buf[64];
758 char *cmp = buf;
759 int neg = 0;
760 int i;
761
762 if (cnt > 63)
763 cnt = 63;
764
765 if (copy_from_user(&buf, ubuf, cnt))
766 return -EFAULT;
767
768 buf[cnt] = 0;
769
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200770 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200771 neg = 1;
772 cmp += 3;
773 }
774
775 for (i = 0; sched_feat_names[i]; i++) {
776 int len = strlen(sched_feat_names[i]);
777
778 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
779 if (neg)
780 sysctl_sched_features &= ~(1UL << i);
781 else
782 sysctl_sched_features |= (1UL << i);
783 break;
784 }
785 }
786
787 if (!sched_feat_names[i])
788 return -EINVAL;
789
790 filp->f_pos += cnt;
791
792 return cnt;
793}
794
795static struct file_operations sched_feat_fops = {
796 .open = sched_feat_open,
797 .read = sched_feat_read,
798 .write = sched_feat_write,
799};
800
801static __init int sched_init_debug(void)
802{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200803 debugfs_create_file("sched_features", 0644, NULL, NULL,
804 &sched_feat_fops);
805
806 return 0;
807}
808late_initcall(sched_init_debug);
809
810#endif
811
812#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200813
814/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100815 * Number of tasks to iterate in a single balance run.
816 * Limited because this is done with IRQs disabled.
817 */
818const_debug unsigned int sysctl_sched_nr_migrate = 32;
819
820/*
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200821 * ratelimit for updating the group shares.
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200822 * default: 0.25ms
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200823 */
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200824unsigned int sysctl_sched_shares_ratelimit = 250000;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200825
826/*
Peter Zijlstraffda12a2008-10-17 19:27:02 +0200827 * Inject some fuzzyness into changing the per-cpu group shares
828 * this avoids remote rq-locks at the expense of fairness.
829 * default: 4
830 */
831unsigned int sysctl_sched_shares_thresh = 4;
832
833/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100834 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100835 * default: 1s
836 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100837unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100838
Ingo Molnar6892b752008-02-13 14:02:36 +0100839static __read_mostly int scheduler_running;
840
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100841/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100842 * part of the period that we allow rt tasks to run in us.
843 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100844 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100845int sysctl_sched_rt_runtime = 950000;
846
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200847static inline u64 global_rt_period(void)
848{
849 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
850}
851
852static inline u64 global_rt_runtime(void)
853{
roel kluine26873b2008-07-22 16:51:15 -0400854 if (sysctl_sched_rt_runtime < 0)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200855 return RUNTIME_INF;
856
857 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
858}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700861# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700863#ifndef finish_arch_switch
864# define finish_arch_switch(prev) do { } while (0)
865#endif
866
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100867static inline int task_current(struct rq *rq, struct task_struct *p)
868{
869 return rq->curr == p;
870}
871
Nick Piggin4866cde2005-06-25 14:57:23 -0700872#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700873static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700874{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100875 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700876}
877
Ingo Molnar70b97a72006-07-03 00:25:42 -0700878static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700879{
880}
881
Ingo Molnar70b97a72006-07-03 00:25:42 -0700882static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700883{
Ingo Molnarda04c032005-09-13 11:17:59 +0200884#ifdef CONFIG_DEBUG_SPINLOCK
885 /* this is a valid case when another task releases the spinlock */
886 rq->lock.owner = current;
887#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700888 /*
889 * If we are tracking spinlock dependencies then we have to
890 * fix up the runqueue lock - which gets 'carried over' from
891 * prev into current:
892 */
893 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
894
Nick Piggin4866cde2005-06-25 14:57:23 -0700895 spin_unlock_irq(&rq->lock);
896}
897
898#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700899static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700900{
901#ifdef CONFIG_SMP
902 return p->oncpu;
903#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100904 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700905#endif
906}
907
Ingo Molnar70b97a72006-07-03 00:25:42 -0700908static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700909{
910#ifdef CONFIG_SMP
911 /*
912 * We can optimise this out completely for !SMP, because the
913 * SMP rebalancing from interrupt is the only thing that cares
914 * here.
915 */
916 next->oncpu = 1;
917#endif
918#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
919 spin_unlock_irq(&rq->lock);
920#else
921 spin_unlock(&rq->lock);
922#endif
923}
924
Ingo Molnar70b97a72006-07-03 00:25:42 -0700925static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700926{
927#ifdef CONFIG_SMP
928 /*
929 * After ->oncpu is cleared, the task can be moved to a different CPU.
930 * We must ensure this doesn't happen until the switch is completely
931 * finished.
932 */
933 smp_wmb();
934 prev->oncpu = 0;
935#endif
936#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
937 local_irq_enable();
938#endif
939}
940#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700943 * __task_rq_lock - lock the runqueue a given task resides on.
944 * Must be called interrupts disabled.
945 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700946static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700947 __acquires(rq->lock)
948{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200949 for (;;) {
950 struct rq *rq = task_rq(p);
951 spin_lock(&rq->lock);
952 if (likely(rq == task_rq(p)))
953 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700954 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700955 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700956}
957
958/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100960 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 * explicitly disabling preemption.
962 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700963static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 __acquires(rq->lock)
965{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700966 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Andi Kleen3a5c3592007-10-15 17:00:14 +0200968 for (;;) {
969 local_irq_save(*flags);
970 rq = task_rq(p);
971 spin_lock(&rq->lock);
972 if (likely(rq == task_rq(p)))
973 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976}
977
Oleg Nesterovad474ca2008-11-10 15:39:30 +0100978void task_rq_unlock_wait(struct task_struct *p)
979{
980 struct rq *rq = task_rq(p);
981
982 smp_mb(); /* spin-unlock-wait is not a full memory barrier */
983 spin_unlock_wait(&rq->lock);
984}
985
Alexey Dobriyana9957442007-10-15 17:00:13 +0200986static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700987 __releases(rq->lock)
988{
989 spin_unlock(&rq->lock);
990}
991
Ingo Molnar70b97a72006-07-03 00:25:42 -0700992static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 __releases(rq->lock)
994{
995 spin_unlock_irqrestore(&rq->lock, *flags);
996}
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800999 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001001static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 __acquires(rq->lock)
1003{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001004 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 local_irq_disable();
1007 rq = this_rq();
1008 spin_lock(&rq->lock);
1009
1010 return rq;
1011}
1012
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001013#ifdef CONFIG_SCHED_HRTICK
1014/*
1015 * Use HR-timers to deliver accurate preemption points.
1016 *
1017 * Its all a bit involved since we cannot program an hrt while holding the
1018 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1019 * reschedule event.
1020 *
1021 * When we get rescheduled we reprogram the hrtick_timer outside of the
1022 * rq->lock.
1023 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001024
1025/*
1026 * Use hrtick when:
1027 * - enabled by features
1028 * - hrtimer is actually high res
1029 */
1030static inline int hrtick_enabled(struct rq *rq)
1031{
1032 if (!sched_feat(HRTICK))
1033 return 0;
Ingo Molnarba420592008-07-20 11:02:06 +02001034 if (!cpu_active(cpu_of(rq)))
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001035 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001036 return hrtimer_is_hres_active(&rq->hrtick_timer);
1037}
1038
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001039static void hrtick_clear(struct rq *rq)
1040{
1041 if (hrtimer_active(&rq->hrtick_timer))
1042 hrtimer_cancel(&rq->hrtick_timer);
1043}
1044
1045/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001046 * High-resolution timer tick.
1047 * Runs from hardirq context with interrupts disabled.
1048 */
1049static enum hrtimer_restart hrtick(struct hrtimer *timer)
1050{
1051 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1052
1053 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1054
1055 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001056 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001057 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1058 spin_unlock(&rq->lock);
1059
1060 return HRTIMER_NORESTART;
1061}
1062
Rabin Vincent95e904c72008-05-11 05:55:33 +05301063#ifdef CONFIG_SMP
Peter Zijlstra31656512008-07-18 18:01:23 +02001064/*
1065 * called from hardirq (IPI) context
1066 */
1067static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001068{
Peter Zijlstra31656512008-07-18 18:01:23 +02001069 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001070
Peter Zijlstra31656512008-07-18 18:01:23 +02001071 spin_lock(&rq->lock);
1072 hrtimer_restart(&rq->hrtick_timer);
1073 rq->hrtick_csd_pending = 0;
1074 spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001075}
1076
Peter Zijlstra31656512008-07-18 18:01:23 +02001077/*
1078 * Called to set the hrtick timer state.
1079 *
1080 * called with rq->lock held and irqs disabled
1081 */
1082static void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001083{
Peter Zijlstra31656512008-07-18 18:01:23 +02001084 struct hrtimer *timer = &rq->hrtick_timer;
1085 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001086
Arjan van de Vencc584b22008-09-01 15:02:30 -07001087 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +02001088
1089 if (rq == this_rq()) {
1090 hrtimer_restart(timer);
1091 } else if (!rq->hrtick_csd_pending) {
1092 __smp_call_function_single(cpu_of(rq), &rq->hrtick_csd);
1093 rq->hrtick_csd_pending = 1;
1094 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001095}
1096
1097static int
1098hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1099{
1100 int cpu = (int)(long)hcpu;
1101
1102 switch (action) {
1103 case CPU_UP_CANCELED:
1104 case CPU_UP_CANCELED_FROZEN:
1105 case CPU_DOWN_PREPARE:
1106 case CPU_DOWN_PREPARE_FROZEN:
1107 case CPU_DEAD:
1108 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +02001109 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001110 return NOTIFY_OK;
1111 }
1112
1113 return NOTIFY_DONE;
1114}
1115
Rakib Mullickfa748202008-09-22 14:55:45 -07001116static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001117{
1118 hotcpu_notifier(hotplug_hrtick, 0);
1119}
Peter Zijlstra31656512008-07-18 18:01:23 +02001120#else
1121/*
1122 * Called to set the hrtick timer state.
1123 *
1124 * called with rq->lock held and irqs disabled
1125 */
1126static void hrtick_start(struct rq *rq, u64 delay)
1127{
1128 hrtimer_start(&rq->hrtick_timer, ns_to_ktime(delay), HRTIMER_MODE_REL);
1129}
1130
Andrew Morton006c75f2008-09-22 14:55:46 -07001131static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +02001132{
1133}
Rabin Vincent95e904c72008-05-11 05:55:33 +05301134#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001135
1136static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001137{
Peter Zijlstra31656512008-07-18 18:01:23 +02001138#ifdef CONFIG_SMP
1139 rq->hrtick_csd_pending = 0;
1140
1141 rq->hrtick_csd.flags = 0;
1142 rq->hrtick_csd.func = __hrtick_start;
1143 rq->hrtick_csd.info = rq;
1144#endif
1145
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001146 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1147 rq->hrtick_timer.function = hrtick;
Thomas Gleixnerccc7dad2008-09-29 15:47:42 +02001148 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_PERCPU;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001149}
Andrew Morton006c75f2008-09-22 14:55:46 -07001150#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001151static inline void hrtick_clear(struct rq *rq)
1152{
1153}
1154
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001155static inline void init_rq_hrtick(struct rq *rq)
1156{
1157}
1158
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001159static inline void init_hrtick(void)
1160{
1161}
Andrew Morton006c75f2008-09-22 14:55:46 -07001162#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001163
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001164/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001165 * resched_task - mark a task 'to be rescheduled now'.
1166 *
1167 * On UP this means the setting of the need_resched flag, on SMP it
1168 * might also involve a cross-CPU call to trigger the scheduler on
1169 * the target CPU.
1170 */
1171#ifdef CONFIG_SMP
1172
1173#ifndef tsk_is_polling
1174#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1175#endif
1176
Peter Zijlstra31656512008-07-18 18:01:23 +02001177static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001178{
1179 int cpu;
1180
1181 assert_spin_locked(&task_rq(p)->lock);
1182
Peter Zijlstra31656512008-07-18 18:01:23 +02001183 if (unlikely(test_tsk_thread_flag(p, TIF_NEED_RESCHED)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001184 return;
1185
Peter Zijlstra31656512008-07-18 18:01:23 +02001186 set_tsk_thread_flag(p, TIF_NEED_RESCHED);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001187
1188 cpu = task_cpu(p);
1189 if (cpu == smp_processor_id())
1190 return;
1191
1192 /* NEED_RESCHED must be visible before we test polling */
1193 smp_mb();
1194 if (!tsk_is_polling(p))
1195 smp_send_reschedule(cpu);
1196}
1197
1198static void resched_cpu(int cpu)
1199{
1200 struct rq *rq = cpu_rq(cpu);
1201 unsigned long flags;
1202
1203 if (!spin_trylock_irqsave(&rq->lock, flags))
1204 return;
1205 resched_task(cpu_curr(cpu));
1206 spin_unlock_irqrestore(&rq->lock, flags);
1207}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001208
1209#ifdef CONFIG_NO_HZ
1210/*
1211 * When add_timer_on() enqueues a timer into the timer wheel of an
1212 * idle CPU then this timer might expire before the next timer event
1213 * which is scheduled to wake up that CPU. In case of a completely
1214 * idle system the next event might even be infinite time into the
1215 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1216 * leaves the inner idle loop so the newly added timer is taken into
1217 * account when the CPU goes back to idle and evaluates the timer
1218 * wheel for the next timer event.
1219 */
1220void wake_up_idle_cpu(int cpu)
1221{
1222 struct rq *rq = cpu_rq(cpu);
1223
1224 if (cpu == smp_processor_id())
1225 return;
1226
1227 /*
1228 * This is safe, as this function is called with the timer
1229 * wheel base lock of (cpu) held. When the CPU is on the way
1230 * to idle and has not yet set rq->curr to idle then it will
1231 * be serialized on the timer wheel base lock and take the new
1232 * timer into account automatically.
1233 */
1234 if (rq->curr != rq->idle)
1235 return;
1236
1237 /*
1238 * We can set TIF_RESCHED on the idle task of the other CPU
1239 * lockless. The worst case is that the other CPU runs the
1240 * idle task through an additional NOOP schedule()
1241 */
1242 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1243
1244 /* NEED_RESCHED must be visible before we test polling */
1245 smp_mb();
1246 if (!tsk_is_polling(rq->idle))
1247 smp_send_reschedule(cpu);
1248}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001249#endif /* CONFIG_NO_HZ */
Thomas Gleixner06d83082008-03-22 09:20:24 +01001250
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001251#else /* !CONFIG_SMP */
Peter Zijlstra31656512008-07-18 18:01:23 +02001252static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001253{
1254 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001255 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001256}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001257#endif /* CONFIG_SMP */
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001258
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001259#if BITS_PER_LONG == 32
1260# define WMULT_CONST (~0UL)
1261#else
1262# define WMULT_CONST (1UL << 32)
1263#endif
1264
1265#define WMULT_SHIFT 32
1266
Ingo Molnar194081e2007-08-09 11:16:51 +02001267/*
1268 * Shift right and round:
1269 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001270#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001271
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001272/*
1273 * delta *= weight / lw
1274 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001275static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001276calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1277 struct load_weight *lw)
1278{
1279 u64 tmp;
1280
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001281 if (!lw->inv_weight) {
1282 if (BITS_PER_LONG > 32 && unlikely(lw->weight >= WMULT_CONST))
1283 lw->inv_weight = 1;
1284 else
1285 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)
1286 / (lw->weight+1);
1287 }
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001288
1289 tmp = (u64)delta_exec * weight;
1290 /*
1291 * Check whether we'd overflow the 64-bit multiplication:
1292 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001293 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001294 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001295 WMULT_SHIFT/2);
1296 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001297 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001298
Ingo Molnarecf691d2007-08-02 17:41:40 +02001299 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001300}
1301
Ingo Molnar10919852007-10-15 17:00:04 +02001302static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001303{
1304 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001305 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001306}
1307
Ingo Molnar10919852007-10-15 17:00:04 +02001308static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001309{
1310 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001311 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001312}
1313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001315 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1316 * of tasks with abnormal "nice" values across CPUs the contribution that
1317 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001318 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001319 * scaled version of the new time slice allocation that they receive on time
1320 * slice expiry etc.
1321 */
1322
Ingo Molnardd41f592007-07-09 18:51:59 +02001323#define WEIGHT_IDLEPRIO 2
1324#define WMULT_IDLEPRIO (1 << 31)
1325
1326/*
1327 * Nice levels are multiplicative, with a gentle 10% change for every
1328 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1329 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1330 * that remained on nice 0.
1331 *
1332 * The "10% effect" is relative and cumulative: from _any_ nice level,
1333 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001334 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1335 * If a task goes up by ~10% and another task goes down by ~10% then
1336 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001337 */
1338static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001339 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1340 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1341 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1342 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1343 /* 0 */ 1024, 820, 655, 526, 423,
1344 /* 5 */ 335, 272, 215, 172, 137,
1345 /* 10 */ 110, 87, 70, 56, 45,
1346 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001347};
1348
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001349/*
1350 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1351 *
1352 * In cases where the weight does not change often, we can use the
1353 * precalculated inverse to speed up arithmetics by turning divisions
1354 * into multiplications:
1355 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001356static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001357 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1358 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1359 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1360 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1361 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1362 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1363 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1364 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001365};
Peter Williams2dd73a42006-06-27 02:54:34 -07001366
Ingo Molnardd41f592007-07-09 18:51:59 +02001367static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1368
1369/*
1370 * runqueue iterator, to support SMP load-balancing between different
1371 * scheduling classes, without having to expose their internal data
1372 * structures to the load-balancing proper:
1373 */
1374struct rq_iterator {
1375 void *arg;
1376 struct task_struct *(*start)(void *);
1377 struct task_struct *(*next)(void *);
1378};
1379
Peter Williamse1d14842007-10-24 18:23:51 +02001380#ifdef CONFIG_SMP
1381static unsigned long
1382balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1383 unsigned long max_load_move, struct sched_domain *sd,
1384 enum cpu_idle_type idle, int *all_pinned,
1385 int *this_best_prio, struct rq_iterator *iterator);
1386
1387static int
1388iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1389 struct sched_domain *sd, enum cpu_idle_type idle,
1390 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001391#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001392
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001393#ifdef CONFIG_CGROUP_CPUACCT
1394static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1395#else
1396static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1397#endif
1398
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001399static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1400{
1401 update_load_add(&rq->load, load);
1402}
1403
1404static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1405{
1406 update_load_sub(&rq->load, load);
1407}
1408
Ingo Molnar7940ca32008-08-19 13:40:47 +02001409#if (defined(CONFIG_SMP) && defined(CONFIG_FAIR_GROUP_SCHED)) || defined(CONFIG_RT_GROUP_SCHED)
Peter Zijlstraeb755802008-08-19 12:33:05 +02001410typedef int (*tg_visitor)(struct task_group *, void *);
1411
1412/*
1413 * Iterate the full tree, calling @down when first entering a node and @up when
1414 * leaving it for the final time.
1415 */
1416static int walk_tg_tree(tg_visitor down, tg_visitor up, void *data)
1417{
1418 struct task_group *parent, *child;
1419 int ret;
1420
1421 rcu_read_lock();
1422 parent = &root_task_group;
1423down:
1424 ret = (*down)(parent, data);
1425 if (ret)
1426 goto out_unlock;
1427 list_for_each_entry_rcu(child, &parent->children, siblings) {
1428 parent = child;
1429 goto down;
1430
1431up:
1432 continue;
1433 }
1434 ret = (*up)(parent, data);
1435 if (ret)
1436 goto out_unlock;
1437
1438 child = parent;
1439 parent = parent->parent;
1440 if (parent)
1441 goto up;
1442out_unlock:
1443 rcu_read_unlock();
1444
1445 return ret;
1446}
1447
1448static int tg_nop(struct task_group *tg, void *data)
1449{
1450 return 0;
1451}
1452#endif
1453
Gregory Haskinse7693a32008-01-25 21:08:09 +01001454#ifdef CONFIG_SMP
1455static unsigned long source_load(int cpu, int type);
1456static unsigned long target_load(int cpu, int type);
Gregory Haskinse7693a32008-01-25 21:08:09 +01001457static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001458
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001459static unsigned long cpu_avg_load_per_task(int cpu)
1460{
1461 struct rq *rq = cpu_rq(cpu);
1462
1463 if (rq->nr_running)
1464 rq->avg_load_per_task = rq->load.weight / rq->nr_running;
Balbir Singha2d47772008-11-12 16:19:00 +05301465 else
1466 rq->avg_load_per_task = 0;
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001467
1468 return rq->avg_load_per_task;
1469}
1470
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001471#ifdef CONFIG_FAIR_GROUP_SCHED
1472
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001473static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1474
1475/*
1476 * Calculate and set the cpu's group shares.
1477 */
1478static void
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001479update_group_shares_cpu(struct task_group *tg, int cpu,
1480 unsigned long sd_shares, unsigned long sd_rq_weight)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001481{
1482 int boost = 0;
1483 unsigned long shares;
1484 unsigned long rq_weight;
1485
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001486 if (!tg->se[cpu])
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001487 return;
1488
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001489 rq_weight = tg->cfs_rq[cpu]->load.weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001490
1491 /*
1492 * If there are currently no tasks on the cpu pretend there is one of
1493 * average load so that when a new task gets to run here it will not
1494 * get delayed by group starvation.
1495 */
1496 if (!rq_weight) {
1497 boost = 1;
1498 rq_weight = NICE_0_LOAD;
1499 }
1500
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001501 if (unlikely(rq_weight > sd_rq_weight))
1502 rq_weight = sd_rq_weight;
1503
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001504 /*
1505 * \Sum shares * rq_weight
1506 * shares = -----------------------
1507 * \Sum rq_weight
1508 *
1509 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001510 shares = (sd_shares * rq_weight) / (sd_rq_weight + 1);
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001511 shares = clamp_t(unsigned long, shares, MIN_SHARES, MAX_SHARES);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001512
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001513 if (abs(shares - tg->se[cpu]->load.weight) >
1514 sysctl_sched_shares_thresh) {
1515 struct rq *rq = cpu_rq(cpu);
1516 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001517
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001518 spin_lock_irqsave(&rq->lock, flags);
1519 /*
1520 * record the actual number of shares, not the boosted amount.
1521 */
1522 tg->cfs_rq[cpu]->shares = boost ? 0 : shares;
1523 tg->cfs_rq[cpu]->rq_weight = rq_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001524
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001525 __set_se_shares(tg->se[cpu], shares);
1526 spin_unlock_irqrestore(&rq->lock, flags);
1527 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001528}
1529
1530/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001531 * Re-compute the task group their per cpu shares over the given domain.
1532 * This needs to be done in a bottom-up fashion because the rq weight of a
1533 * parent group depends on the shares of its child groups.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001534 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001535static int tg_shares_up(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001536{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001537 unsigned long rq_weight = 0;
1538 unsigned long shares = 0;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001539 struct sched_domain *sd = data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001540 int i;
1541
1542 for_each_cpu_mask(i, sd->span) {
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001543 rq_weight += tg->cfs_rq[i]->load.weight;
1544 shares += tg->cfs_rq[i]->shares;
1545 }
1546
1547 if ((!shares && rq_weight) || shares > tg->shares)
1548 shares = tg->shares;
1549
1550 if (!sd->parent || !(sd->parent->flags & SD_LOAD_BALANCE))
1551 shares = tg->shares;
1552
Peter Zijlstracd809172008-06-27 13:41:34 +02001553 if (!rq_weight)
1554 rq_weight = cpus_weight(sd->span) * NICE_0_LOAD;
1555
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001556 for_each_cpu_mask(i, sd->span)
1557 update_group_shares_cpu(tg, i, shares, rq_weight);
Peter Zijlstraeb755802008-08-19 12:33:05 +02001558
1559 return 0;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001560}
1561
1562/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001563 * Compute the cpu's hierarchical load factor for each task group.
1564 * This needs to be done in a top-down fashion because the load of a child
1565 * group is a fraction of its parents load.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001566 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001567static int tg_load_down(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001568{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001569 unsigned long load;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001570 long cpu = (long)data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001571
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001572 if (!tg->parent) {
1573 load = cpu_rq(cpu)->load.weight;
1574 } else {
1575 load = tg->parent->cfs_rq[cpu]->h_load;
1576 load *= tg->cfs_rq[cpu]->shares;
1577 load /= tg->parent->cfs_rq[cpu]->load.weight + 1;
1578 }
1579
1580 tg->cfs_rq[cpu]->h_load = load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001581
Peter Zijlstraeb755802008-08-19 12:33:05 +02001582 return 0;
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001583}
1584
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001585static void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001586{
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001587 u64 now = cpu_clock(raw_smp_processor_id());
1588 s64 elapsed = now - sd->last_update;
1589
1590 if (elapsed >= (s64)(u64)sysctl_sched_shares_ratelimit) {
1591 sd->last_update = now;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001592 walk_tg_tree(tg_nop, tg_shares_up, sd);
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001593 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001594}
1595
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001596static void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1597{
1598 spin_unlock(&rq->lock);
1599 update_shares(sd);
1600 spin_lock(&rq->lock);
1601}
1602
Peter Zijlstraeb755802008-08-19 12:33:05 +02001603static void update_h_load(long cpu)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001604{
Peter Zijlstraeb755802008-08-19 12:33:05 +02001605 walk_tg_tree(tg_load_down, tg_nop, (void *)cpu);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001606}
1607
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001608#else
1609
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001610static inline void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001611{
1612}
1613
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001614static inline void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1615{
1616}
1617
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001618#endif
1619
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001620#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001621
1622#ifdef CONFIG_FAIR_GROUP_SCHED
1623static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1624{
Vegard Nossum30432092008-06-27 21:35:50 +02001625#ifdef CONFIG_SMP
Ingo Molnar34e83e82008-06-27 15:42:36 +02001626 cfs_rq->shares = shares;
1627#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001628}
1629#endif
1630
Ingo Molnardd41f592007-07-09 18:51:59 +02001631#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001632#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001633#include "sched_fair.c"
1634#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001635#ifdef CONFIG_SCHED_DEBUG
1636# include "sched_debug.c"
1637#endif
1638
1639#define sched_class_highest (&rt_sched_class)
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001640#define for_each_class(class) \
1641 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001642
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001643static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001644{
1645 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001646}
1647
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001648static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001649{
1650 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001651}
1652
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001653static void set_load_weight(struct task_struct *p)
1654{
1655 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001656 p->se.load.weight = prio_to_weight[0] * 2;
1657 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1658 return;
1659 }
1660
1661 /*
1662 * SCHED_IDLE tasks get minimal weight:
1663 */
1664 if (p->policy == SCHED_IDLE) {
1665 p->se.load.weight = WEIGHT_IDLEPRIO;
1666 p->se.load.inv_weight = WMULT_IDLEPRIO;
1667 return;
1668 }
1669
1670 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1671 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001672}
1673
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001674static void update_avg(u64 *avg, u64 sample)
1675{
1676 s64 diff = sample - *avg;
1677 *avg += diff >> 3;
1678}
1679
Ingo Molnar8159f872007-08-09 11:16:49 +02001680static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001681{
1682 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001683 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001684 p->se.on_rq = 1;
1685}
1686
Ingo Molnar69be72c2007-08-09 11:16:49 +02001687static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001688{
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001689 if (sleep && p->se.last_wakeup) {
1690 update_avg(&p->se.avg_overlap,
1691 p->se.sum_exec_runtime - p->se.last_wakeup);
1692 p->se.last_wakeup = 0;
1693 }
1694
Ankita Garg46ac22b2008-07-01 14:30:06 +05301695 sched_info_dequeued(p);
Ingo Molnarf02231e2007-08-09 11:16:48 +02001696 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001697 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001698}
1699
1700/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001701 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001702 */
Ingo Molnar14531182007-07-09 18:51:59 +02001703static inline int __normal_prio(struct task_struct *p)
1704{
Ingo Molnardd41f592007-07-09 18:51:59 +02001705 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001706}
1707
1708/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001709 * Calculate the expected normal priority: i.e. priority
1710 * without taking RT-inheritance into account. Might be
1711 * boosted by interactivity modifiers. Changes upon fork,
1712 * setprio syscalls, and whenever the interactivity
1713 * estimator recalculates.
1714 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001715static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001716{
1717 int prio;
1718
Ingo Molnare05606d2007-07-09 18:51:59 +02001719 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001720 prio = MAX_RT_PRIO-1 - p->rt_priority;
1721 else
1722 prio = __normal_prio(p);
1723 return prio;
1724}
1725
1726/*
1727 * Calculate the current priority, i.e. the priority
1728 * taken into account by the scheduler. This value might
1729 * be boosted by RT tasks, or might be boosted by
1730 * interactivity modifiers. Will be RT if the task got
1731 * RT-boosted. If not then it returns p->normal_prio.
1732 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001733static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001734{
1735 p->normal_prio = normal_prio(p);
1736 /*
1737 * If we are RT tasks or we were boosted to RT priority,
1738 * keep the priority unchanged. Otherwise, update priority
1739 * to the normal priority:
1740 */
1741 if (!rt_prio(p->prio))
1742 return p->normal_prio;
1743 return p->prio;
1744}
1745
1746/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001747 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001749static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001751 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001752 rq->nr_uninterruptible--;
1753
Ingo Molnar8159f872007-08-09 11:16:49 +02001754 enqueue_task(rq, p, wakeup);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001755 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756}
1757
1758/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 * deactivate_task - remove a task from the runqueue.
1760 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001761static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001763 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001764 rq->nr_uninterruptible++;
1765
Ingo Molnar69be72c2007-08-09 11:16:49 +02001766 dequeue_task(rq, p, sleep);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001767 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770/**
1771 * task_curr - is this task currently executing on a CPU?
1772 * @p: the task in question.
1773 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001774inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
1776 return cpu_curr(task_cpu(p)) == p;
1777}
1778
Ingo Molnardd41f592007-07-09 18:51:59 +02001779static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1780{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001781 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001782#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001783 /*
1784 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1785 * successfuly executed on another CPU. We must ensure that updates of
1786 * per-task data have been completed by this moment.
1787 */
1788 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001789 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001790#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001791}
1792
Steven Rostedtcb469842008-01-25 21:08:22 +01001793static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1794 const struct sched_class *prev_class,
1795 int oldprio, int running)
1796{
1797 if (prev_class != p->sched_class) {
1798 if (prev_class->switched_from)
1799 prev_class->switched_from(rq, p, running);
1800 p->sched_class->switched_to(rq, p, running);
1801 } else
1802 p->sched_class->prio_changed(rq, p, oldprio, running);
1803}
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001806
Thomas Gleixnere958b362008-06-04 23:22:32 +02001807/* Used instead of source_load when we know the type == 0 */
1808static unsigned long weighted_cpuload(const int cpu)
1809{
1810 return cpu_rq(cpu)->load.weight;
1811}
1812
Ingo Molnarcc367732007-10-15 17:00:18 +02001813/*
1814 * Is this task likely cache-hot:
1815 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001816static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001817task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1818{
1819 s64 delta;
1820
Ingo Molnarf540a602008-03-15 17:10:34 +01001821 /*
1822 * Buddy candidates are cache hot:
1823 */
Peter Zijlstra47932412008-11-04 21:25:09 +01001824 if (sched_feat(CACHE_HOT_BUDDY) &&
1825 (&p->se == cfs_rq_of(&p->se)->next ||
1826 &p->se == cfs_rq_of(&p->se)->last))
Ingo Molnarf540a602008-03-15 17:10:34 +01001827 return 1;
1828
Ingo Molnarcc367732007-10-15 17:00:18 +02001829 if (p->sched_class != &fair_sched_class)
1830 return 0;
1831
Ingo Molnar6bc16652007-10-15 17:00:18 +02001832 if (sysctl_sched_migration_cost == -1)
1833 return 1;
1834 if (sysctl_sched_migration_cost == 0)
1835 return 0;
1836
Ingo Molnarcc367732007-10-15 17:00:18 +02001837 delta = now - p->se.exec_start;
1838
1839 return delta < (s64)sysctl_sched_migration_cost;
1840}
1841
1842
Ingo Molnardd41f592007-07-09 18:51:59 +02001843void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001844{
Ingo Molnardd41f592007-07-09 18:51:59 +02001845 int old_cpu = task_cpu(p);
1846 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001847 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1848 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001849 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001850
1851 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001852
1853#ifdef CONFIG_SCHEDSTATS
1854 if (p->se.wait_start)
1855 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001856 if (p->se.sleep_start)
1857 p->se.sleep_start -= clock_offset;
1858 if (p->se.block_start)
1859 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001860 if (old_cpu != new_cpu) {
1861 schedstat_inc(p, se.nr_migrations);
1862 if (task_hot(p, old_rq->clock, NULL))
1863 schedstat_inc(p, se.nr_forced2_migrations);
1864 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001865#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001866 p->se.vruntime -= old_cfsrq->min_vruntime -
1867 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001868
1869 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001870}
1871
Ingo Molnar70b97a72006-07-03 00:25:42 -07001872struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Ingo Molnar36c8b582006-07-03 00:25:41 -07001875 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 int dest_cpu;
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001879};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
1881/*
1882 * The task's runqueue lock must be held.
1883 * Returns true if you have to wait for migration thread.
1884 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001885static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001886migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001888 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890 /*
1891 * If the task is not on a runqueue (and not running), then
1892 * it is sufficient to simply update the task's cpu field.
1893 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001894 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 set_task_cpu(p, dest_cpu);
1896 return 0;
1897 }
1898
1899 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 req->task = p;
1901 req->dest_cpu = dest_cpu;
1902 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 return 1;
1905}
1906
1907/*
1908 * wait_task_inactive - wait for a thread to unschedule.
1909 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07001910 * If @match_state is nonzero, it's the @p->state value just checked and
1911 * not expected to change. If it changes, i.e. @p might have woken up,
1912 * then return zero. When we succeed in waiting for @p to be off its CPU,
1913 * we return a positive number (its total switch count). If a second call
1914 * a short while later returns the same number, the caller can be sure that
1915 * @p has remained unscheduled the whole time.
1916 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 * The caller must ensure that the task *will* unschedule sometime soon,
1918 * else this function might spin for a *long* time. This function can't
1919 * be called with interrupts off, or it may introduce deadlock with
1920 * smp_call_function() if an IPI is sent by the same process we are
1921 * waiting to become inactive.
1922 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001923unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
1925 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001926 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001927 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001928 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Andi Kleen3a5c3592007-10-15 17:00:14 +02001930 for (;;) {
1931 /*
1932 * We do the initial early heuristics without holding
1933 * any task-queue locks at all. We'll only try to get
1934 * the runqueue lock when things look like they will
1935 * work out!
1936 */
1937 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001938
Andi Kleen3a5c3592007-10-15 17:00:14 +02001939 /*
1940 * If the task is actively running on another CPU
1941 * still, just relax and busy-wait without holding
1942 * any locks.
1943 *
1944 * NOTE! Since we don't hold any locks, it's not
1945 * even sure that "rq" stays as the right runqueue!
1946 * But we don't care, since "task_running()" will
1947 * return false if the runqueue has changed and p
1948 * is actually now running somewhere else!
1949 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001950 while (task_running(rq, p)) {
1951 if (match_state && unlikely(p->state != match_state))
1952 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02001953 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07001954 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001955
Andi Kleen3a5c3592007-10-15 17:00:14 +02001956 /*
1957 * Ok, time to look more closely! We need the rq
1958 * lock now, to be *sure*. If we're wrong, we'll
1959 * just go back and repeat.
1960 */
1961 rq = task_rq_lock(p, &flags);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04001962 trace_sched_wait_task(rq, p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001963 running = task_running(rq, p);
1964 on_rq = p->se.on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001965 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07001966 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07001967 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Andi Kleen3a5c3592007-10-15 17:00:14 +02001968 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001969
Andi Kleen3a5c3592007-10-15 17:00:14 +02001970 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07001971 * If it changed from the expected state, bail out now.
1972 */
1973 if (unlikely(!ncsw))
1974 break;
1975
1976 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02001977 * Was it really running after all now that we
1978 * checked with the proper locks actually held?
1979 *
1980 * Oops. Go back and try again..
1981 */
1982 if (unlikely(running)) {
1983 cpu_relax();
1984 continue;
1985 }
1986
1987 /*
1988 * It's not enough that it's not actively running,
1989 * it must be off the runqueue _entirely_, and not
1990 * preempted!
1991 *
1992 * So if it wa still runnable (but just not actively
1993 * running right now), it's preempted, and we should
1994 * yield - it could be a while.
1995 */
1996 if (unlikely(on_rq)) {
1997 schedule_timeout_uninterruptible(1);
1998 continue;
1999 }
2000
2001 /*
2002 * Ahh, all good. It wasn't running, and it wasn't
2003 * runnable, which means that it will never become
2004 * running in the future either. We're all done!
2005 */
2006 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07002008
2009 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010}
2011
2012/***
2013 * kick_process - kick a running thread to enter/exit the kernel
2014 * @p: the to-be-kicked thread
2015 *
2016 * Cause a process which is running on another CPU to enter
2017 * kernel-mode, without any delay. (to get signals handled.)
2018 *
2019 * NOTE: this function doesnt have to take the runqueue lock,
2020 * because all it wants to ensure is that the remote task enters
2021 * the kernel. If the IPI races and the task has been migrated
2022 * to another CPU then no harm is done and the purpose has been
2023 * achieved as well.
2024 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002025void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
2027 int cpu;
2028
2029 preempt_disable();
2030 cpu = task_cpu(p);
2031 if ((cpu != smp_processor_id()) && task_curr(p))
2032 smp_send_reschedule(cpu);
2033 preempt_enable();
2034}
2035
2036/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002037 * Return a low guess at the load of a migration-source cpu weighted
2038 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 *
2040 * We want to under-estimate the load of migration sources, to
2041 * balance conservatively.
2042 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002043static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002044{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002045 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002046 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002047
Peter Zijlstra93b75212008-06-27 13:41:33 +02002048 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002049 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002050
Ingo Molnardd41f592007-07-09 18:51:59 +02002051 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052}
2053
2054/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002055 * Return a high guess at the load of a migration-target cpu weighted
2056 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002058static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002059{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002060 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002061 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002062
Peter Zijlstra93b75212008-06-27 13:41:33 +02002063 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002064 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002065
Ingo Molnardd41f592007-07-09 18:51:59 +02002066 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002067}
2068
2069/*
Nick Piggin147cbb42005-06-25 14:57:19 -07002070 * find_idlest_group finds and returns the least busy CPU group within the
2071 * domain.
2072 */
2073static struct sched_group *
2074find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2075{
2076 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2077 unsigned long min_load = ULONG_MAX, this_load = 0;
2078 int load_idx = sd->forkexec_idx;
2079 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2080
2081 do {
2082 unsigned long load, avg_load;
2083 int local_group;
2084 int i;
2085
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002086 /* Skip over this group if it has no CPUs allowed */
2087 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002088 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002089
Nick Piggin147cbb42005-06-25 14:57:19 -07002090 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07002091
2092 /* Tally up the load of all CPUs in the group */
2093 avg_load = 0;
2094
Mike Travis363ab6f2008-05-12 21:21:13 +02002095 for_each_cpu_mask_nr(i, group->cpumask) {
Nick Piggin147cbb42005-06-25 14:57:19 -07002096 /* Bias balancing toward cpus of our domain */
2097 if (local_group)
2098 load = source_load(i, load_idx);
2099 else
2100 load = target_load(i, load_idx);
2101
2102 avg_load += load;
2103 }
2104
2105 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002106 avg_load = sg_div_cpu_power(group,
2107 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002108
2109 if (local_group) {
2110 this_load = avg_load;
2111 this = group;
2112 } else if (avg_load < min_load) {
2113 min_load = avg_load;
2114 idlest = group;
2115 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002116 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002117
2118 if (!idlest || 100*this_load < imbalance*min_load)
2119 return NULL;
2120 return idlest;
2121}
2122
2123/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002124 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002125 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002126static int
Mike Travis7c16ec52008-04-04 18:11:11 -07002127find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
2128 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07002129{
2130 unsigned long load, min_load = ULONG_MAX;
2131 int idlest = -1;
2132 int i;
2133
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002134 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07002135 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002136
Mike Travis363ab6f2008-05-12 21:21:13 +02002137 for_each_cpu_mask_nr(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002138 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002139
2140 if (load < min_load || (load == min_load && i == this_cpu)) {
2141 min_load = load;
2142 idlest = i;
2143 }
2144 }
2145
2146 return idlest;
2147}
2148
Nick Piggin476d1392005-06-25 14:57:29 -07002149/*
2150 * sched_balance_self: balance the current task (running on cpu) in domains
2151 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2152 * SD_BALANCE_EXEC.
2153 *
2154 * Balance, ie. select the least loaded group.
2155 *
2156 * Returns the target CPU number, or the same CPU if no balancing is needed.
2157 *
2158 * preempt must be disabled.
2159 */
2160static int sched_balance_self(int cpu, int flag)
2161{
2162 struct task_struct *t = current;
2163 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002164
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002165 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002166 /*
2167 * If power savings logic is enabled for a domain, stop there.
2168 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002169 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2170 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002171 if (tmp->flags & flag)
2172 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002173 }
Nick Piggin476d1392005-06-25 14:57:29 -07002174
Peter Zijlstra039a1c42008-06-27 13:41:25 +02002175 if (sd)
2176 update_shares(sd);
2177
Nick Piggin476d1392005-06-25 14:57:29 -07002178 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07002179 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07002180 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002181 int new_cpu, weight;
2182
2183 if (!(sd->flags & flag)) {
2184 sd = sd->child;
2185 continue;
2186 }
Nick Piggin476d1392005-06-25 14:57:29 -07002187
2188 span = sd->span;
2189 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002190 if (!group) {
2191 sd = sd->child;
2192 continue;
2193 }
Nick Piggin476d1392005-06-25 14:57:29 -07002194
Mike Travis7c16ec52008-04-04 18:11:11 -07002195 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002196 if (new_cpu == -1 || new_cpu == cpu) {
2197 /* Now try balancing at a lower domain level of cpu */
2198 sd = sd->child;
2199 continue;
2200 }
Nick Piggin476d1392005-06-25 14:57:29 -07002201
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002202 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002203 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07002204 sd = NULL;
2205 weight = cpus_weight(span);
2206 for_each_domain(cpu, tmp) {
2207 if (weight <= cpus_weight(tmp->span))
2208 break;
2209 if (tmp->flags & flag)
2210 sd = tmp;
2211 }
2212 /* while loop will break here if sd == NULL */
2213 }
2214
2215 return cpu;
2216}
2217
2218#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220/***
2221 * try_to_wake_up - wake up a thread
2222 * @p: the to-be-woken-up thread
2223 * @state: the mask of task states that can be woken
2224 * @sync: do a synchronous wakeup?
2225 *
2226 * Put it on the run-queue if it's not already there. The "current"
2227 * thread is always on the run-queue (except when the actual
2228 * re-schedule is in progress), and as such you're allowed to do
2229 * the simpler "current->state = TASK_RUNNING" to mark yourself
2230 * runnable without the overhead of this.
2231 *
2232 * returns failure only if the task is already active.
2233 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002234static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
Ingo Molnarcc367732007-10-15 17:00:18 +02002236 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 unsigned long flags;
2238 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002239 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Ingo Molnarb85d0662008-03-16 20:03:22 +01002241 if (!sched_feat(SYNC_WAKEUPS))
2242 sync = 0;
2243
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002244#ifdef CONFIG_SMP
2245 if (sched_feat(LB_WAKEUP_UPDATE)) {
2246 struct sched_domain *sd;
2247
2248 this_cpu = raw_smp_processor_id();
2249 cpu = task_cpu(p);
2250
2251 for_each_domain(this_cpu, sd) {
2252 if (cpu_isset(cpu, sd->span)) {
2253 update_shares(sd);
2254 break;
2255 }
2256 }
2257 }
2258#endif
2259
Linus Torvalds04e2f172008-02-23 18:05:03 -08002260 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 rq = task_rq_lock(p, &flags);
2262 old_state = p->state;
2263 if (!(old_state & state))
2264 goto out;
2265
Ingo Molnardd41f592007-07-09 18:51:59 +02002266 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 goto out_running;
2268
2269 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002270 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 this_cpu = smp_processor_id();
2272
2273#ifdef CONFIG_SMP
2274 if (unlikely(task_running(rq, p)))
2275 goto out_activate;
2276
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002277 cpu = p->sched_class->select_task_rq(p, sync);
2278 if (cpu != orig_cpu) {
2279 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 task_rq_unlock(rq, &flags);
2281 /* might preempt at this point */
2282 rq = task_rq_lock(p, &flags);
2283 old_state = p->state;
2284 if (!(old_state & state))
2285 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002286 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 goto out_running;
2288
2289 this_cpu = smp_processor_id();
2290 cpu = task_cpu(p);
2291 }
2292
Gregory Haskinse7693a32008-01-25 21:08:09 +01002293#ifdef CONFIG_SCHEDSTATS
2294 schedstat_inc(rq, ttwu_count);
2295 if (cpu == this_cpu)
2296 schedstat_inc(rq, ttwu_local);
2297 else {
2298 struct sched_domain *sd;
2299 for_each_domain(this_cpu, sd) {
2300 if (cpu_isset(cpu, sd->span)) {
2301 schedstat_inc(sd, ttwu_wake_remote);
2302 break;
2303 }
2304 }
2305 }
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002306#endif /* CONFIG_SCHEDSTATS */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308out_activate:
2309#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002310 schedstat_inc(p, se.nr_wakeups);
2311 if (sync)
2312 schedstat_inc(p, se.nr_wakeups_sync);
2313 if (orig_cpu != cpu)
2314 schedstat_inc(p, se.nr_wakeups_migrate);
2315 if (cpu == this_cpu)
2316 schedstat_inc(p, se.nr_wakeups_local);
2317 else
2318 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002319 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002320 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 success = 1;
2322
2323out_running:
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002324 trace_sched_wakeup(rq, p);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002325 check_preempt_curr(rq, p, sync);
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002326
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002328#ifdef CONFIG_SMP
2329 if (p->sched_class->task_wake_up)
2330 p->sched_class->task_wake_up(rq, p);
2331#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332out:
Gregory Haskins2087a1a2008-06-27 14:30:00 -06002333 current->se.last_wakeup = current->se.sum_exec_runtime;
2334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 task_rq_unlock(rq, &flags);
2336
2337 return success;
2338}
2339
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002340int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002342 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344EXPORT_SYMBOL(wake_up_process);
2345
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002346int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347{
2348 return try_to_wake_up(p, state, 0);
2349}
2350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351/*
2352 * Perform scheduler related setup for a newly forked process p.
2353 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002354 *
2355 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002357static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358{
Ingo Molnardd41f592007-07-09 18:51:59 +02002359 p->se.exec_start = 0;
2360 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002361 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002362 p->se.last_wakeup = 0;
2363 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002364
2365#ifdef CONFIG_SCHEDSTATS
2366 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002367 p->se.sum_sleep_runtime = 0;
2368 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002369 p->se.block_start = 0;
2370 p->se.sleep_max = 0;
2371 p->se.block_max = 0;
2372 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002373 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002374 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002375#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002376
Peter Zijlstrafa717062008-01-25 21:08:27 +01002377 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002378 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002379 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002380
Avi Kivitye107be32007-07-26 13:40:43 +02002381#ifdef CONFIG_PREEMPT_NOTIFIERS
2382 INIT_HLIST_HEAD(&p->preempt_notifiers);
2383#endif
2384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 /*
2386 * We mark the process as running here, but have not actually
2387 * inserted it onto the runqueue yet. This guarantees that
2388 * nobody will actually run it, and a signal or other external
2389 * event cannot wake it up and insert it on the runqueue either.
2390 */
2391 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002392}
2393
2394/*
2395 * fork()/clone()-time setup:
2396 */
2397void sched_fork(struct task_struct *p, int clone_flags)
2398{
2399 int cpu = get_cpu();
2400
2401 __sched_fork(p);
2402
2403#ifdef CONFIG_SMP
2404 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2405#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002406 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002407
2408 /*
2409 * Make sure we do not leak PI boosting priority to the child:
2410 */
2411 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002412 if (!rt_prio(p->prio))
2413 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002414
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002415#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002416 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002417 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002419#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002420 p->oncpu = 0;
2421#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002423 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002424 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002426 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428
2429/*
2430 * wake_up_new_task - wake up a newly created task for the first time.
2431 *
2432 * This function will do some initial scheduler statistics housekeeping
2433 * that must be done for every newly created context, then puts the task
2434 * on the runqueue and wakes it.
2435 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002436void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
2438 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002439 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
2441 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002443 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 p->prio = effective_prio(p);
2446
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002447 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002448 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002451 * Let the scheduling class do new task startup
2452 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002454 p->sched_class->task_new(rq, p);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02002455 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 }
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002457 trace_sched_wakeup_new(rq, p);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002458 check_preempt_curr(rq, p, 0);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002459#ifdef CONFIG_SMP
2460 if (p->sched_class->task_wake_up)
2461 p->sched_class->task_wake_up(rq, p);
2462#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002463 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464}
2465
Avi Kivitye107be32007-07-26 13:40:43 +02002466#ifdef CONFIG_PREEMPT_NOTIFIERS
2467
2468/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002469 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2470 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002471 */
2472void preempt_notifier_register(struct preempt_notifier *notifier)
2473{
2474 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2475}
2476EXPORT_SYMBOL_GPL(preempt_notifier_register);
2477
2478/**
2479 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002480 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002481 *
2482 * This is safe to call from within a preemption notifier.
2483 */
2484void preempt_notifier_unregister(struct preempt_notifier *notifier)
2485{
2486 hlist_del(&notifier->link);
2487}
2488EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2489
2490static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2491{
2492 struct preempt_notifier *notifier;
2493 struct hlist_node *node;
2494
2495 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2496 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2497}
2498
2499static void
2500fire_sched_out_preempt_notifiers(struct task_struct *curr,
2501 struct task_struct *next)
2502{
2503 struct preempt_notifier *notifier;
2504 struct hlist_node *node;
2505
2506 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2507 notifier->ops->sched_out(notifier, next);
2508}
2509
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002510#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002511
2512static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2513{
2514}
2515
2516static void
2517fire_sched_out_preempt_notifiers(struct task_struct *curr,
2518 struct task_struct *next)
2519{
2520}
2521
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002522#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002525 * prepare_task_switch - prepare to switch tasks
2526 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002527 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002528 * @next: the task we are going to switch to.
2529 *
2530 * This is called with the rq lock held and interrupts off. It must
2531 * be paired with a subsequent finish_task_switch after the context
2532 * switch.
2533 *
2534 * prepare_task_switch sets up locking and calls architecture specific
2535 * hooks.
2536 */
Avi Kivitye107be32007-07-26 13:40:43 +02002537static inline void
2538prepare_task_switch(struct rq *rq, struct task_struct *prev,
2539 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002540{
Avi Kivitye107be32007-07-26 13:40:43 +02002541 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002542 prepare_lock_switch(rq, next);
2543 prepare_arch_switch(next);
2544}
2545
2546/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002548 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 * @prev: the thread we just switched away from.
2550 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002551 * finish_task_switch must be called after the context switch, paired
2552 * with a prepare_task_switch call before the context switch.
2553 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2554 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 *
2556 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002557 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 * with the lock held can cause deadlocks; see schedule() for
2559 * details.)
2560 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002561static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 __releases(rq->lock)
2563{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002565 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
2567 rq->prev_mm = NULL;
2568
2569 /*
2570 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002571 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002572 * schedule one last time. The schedule call will never return, and
2573 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002574 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 * still held, otherwise prev could be scheduled on another cpu, die
2576 * there before we look at prev->state, and then the reference would
2577 * be dropped twice.
2578 * Manfred Spraul <manfred@colorfullife.com>
2579 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002580 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002581 finish_arch_switch(prev);
2582 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002583#ifdef CONFIG_SMP
2584 if (current->sched_class->post_schedule)
2585 current->sched_class->post_schedule(rq);
2586#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002587
Avi Kivitye107be32007-07-26 13:40:43 +02002588 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 if (mm)
2590 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002591 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002592 /*
2593 * Remove function-return probe instances associated with this
2594 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002595 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002596 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599}
2600
2601/**
2602 * schedule_tail - first thing a freshly forked thread must call.
2603 * @prev: the thread we just switched away from.
2604 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002605asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 __releases(rq->lock)
2607{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002608 struct rq *rq = this_rq();
2609
Nick Piggin4866cde2005-06-25 14:57:23 -07002610 finish_task_switch(rq, prev);
2611#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2612 /* In this case, finish_task_switch does not reenable preemption */
2613 preempt_enable();
2614#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002616 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617}
2618
2619/*
2620 * context_switch - switch to the new MM and the new
2621 * thread's register state.
2622 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002623static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002624context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002625 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626{
Ingo Molnardd41f592007-07-09 18:51:59 +02002627 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
Avi Kivitye107be32007-07-26 13:40:43 +02002629 prepare_task_switch(rq, prev, next);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002630 trace_sched_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002631 mm = next->mm;
2632 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002633 /*
2634 * For paravirt, this is coupled with an exit in switch_to to
2635 * combine the page table reload and the switch backend into
2636 * one hypercall.
2637 */
2638 arch_enter_lazy_cpu_mode();
2639
Ingo Molnardd41f592007-07-09 18:51:59 +02002640 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 next->active_mm = oldmm;
2642 atomic_inc(&oldmm->mm_count);
2643 enter_lazy_tlb(oldmm, next);
2644 } else
2645 switch_mm(oldmm, mm, next);
2646
Ingo Molnardd41f592007-07-09 18:51:59 +02002647 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 rq->prev_mm = oldmm;
2650 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002651 /*
2652 * Since the runqueue lock will be released by the next
2653 * task (which is an invalid locking op but in the case
2654 * of the scheduler it's an obvious special-case), so we
2655 * do an early lockdep release here:
2656 */
2657#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002658 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002659#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661 /* Here we just switch the register state and the stack. */
2662 switch_to(prev, next, prev);
2663
Ingo Molnardd41f592007-07-09 18:51:59 +02002664 barrier();
2665 /*
2666 * this_rq must be evaluated again because prev may have moved
2667 * CPUs since it called schedule(), thus the 'rq' on its stack
2668 * frame will be invalid.
2669 */
2670 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671}
2672
2673/*
2674 * nr_running, nr_uninterruptible and nr_context_switches:
2675 *
2676 * externally visible scheduler statistics: current number of runnable
2677 * threads, current number of uninterruptible-sleeping threads, total
2678 * number of context switches performed since bootup.
2679 */
2680unsigned long nr_running(void)
2681{
2682 unsigned long i, sum = 0;
2683
2684 for_each_online_cpu(i)
2685 sum += cpu_rq(i)->nr_running;
2686
2687 return sum;
2688}
2689
2690unsigned long nr_uninterruptible(void)
2691{
2692 unsigned long i, sum = 0;
2693
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002694 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 sum += cpu_rq(i)->nr_uninterruptible;
2696
2697 /*
2698 * Since we read the counters lockless, it might be slightly
2699 * inaccurate. Do not allow it to go below zero though:
2700 */
2701 if (unlikely((long)sum < 0))
2702 sum = 0;
2703
2704 return sum;
2705}
2706
2707unsigned long long nr_context_switches(void)
2708{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002709 int i;
2710 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002712 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 sum += cpu_rq(i)->nr_switches;
2714
2715 return sum;
2716}
2717
2718unsigned long nr_iowait(void)
2719{
2720 unsigned long i, sum = 0;
2721
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002722 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2724
2725 return sum;
2726}
2727
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002728unsigned long nr_active(void)
2729{
2730 unsigned long i, running = 0, uninterruptible = 0;
2731
2732 for_each_online_cpu(i) {
2733 running += cpu_rq(i)->nr_running;
2734 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2735 }
2736
2737 if (unlikely((long)uninterruptible < 0))
2738 uninterruptible = 0;
2739
2740 return running + uninterruptible;
2741}
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002744 * Update rq->cpu_load[] statistics. This function is usually called every
2745 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002746 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002747static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002748{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002749 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002750 int i, scale;
2751
2752 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002753
2754 /* Update our load: */
2755 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2756 unsigned long old_load, new_load;
2757
2758 /* scale is effectively 1 << i now, and >> i divides by scale */
2759
2760 old_load = this_rq->cpu_load[i];
2761 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002762 /*
2763 * Round up the averaging division if load is increasing. This
2764 * prevents us from getting stuck on 9 if the load is 10, for
2765 * example.
2766 */
2767 if (new_load > old_load)
2768 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002769 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2770 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002771}
2772
Ingo Molnardd41f592007-07-09 18:51:59 +02002773#ifdef CONFIG_SMP
2774
Ingo Molnar48f24c42006-07-03 00:25:40 -07002775/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 * double_rq_lock - safely lock two runqueues
2777 *
2778 * Note this does not disable interrupts like task_rq_lock,
2779 * you need to do so manually before calling.
2780 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002781static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 __acquires(rq1->lock)
2783 __acquires(rq2->lock)
2784{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002785 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 if (rq1 == rq2) {
2787 spin_lock(&rq1->lock);
2788 __acquire(rq2->lock); /* Fake it out ;) */
2789 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002790 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 spin_lock(&rq1->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002792 spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 } else {
2794 spin_lock(&rq2->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002795 spin_lock_nested(&rq1->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 }
2797 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002798 update_rq_clock(rq1);
2799 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800}
2801
2802/*
2803 * double_rq_unlock - safely unlock two runqueues
2804 *
2805 * Note this does not restore interrupts like task_rq_unlock,
2806 * you need to do so manually after calling.
2807 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002808static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 __releases(rq1->lock)
2810 __releases(rq2->lock)
2811{
2812 spin_unlock(&rq1->lock);
2813 if (rq1 != rq2)
2814 spin_unlock(&rq2->lock);
2815 else
2816 __release(rq2->lock);
2817}
2818
2819/*
2820 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2821 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002822static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 __releases(this_rq->lock)
2824 __acquires(busiest->lock)
2825 __acquires(this_rq->lock)
2826{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002827 int ret = 0;
2828
Kirill Korotaev054b9102006-12-10 02:20:11 -08002829 if (unlikely(!irqs_disabled())) {
2830 /* printk() doesn't work good under rq->lock */
2831 spin_unlock(&this_rq->lock);
2832 BUG_ON(1);
2833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002835 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 spin_unlock(&this_rq->lock);
2837 spin_lock(&busiest->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002838 spin_lock_nested(&this_rq->lock, SINGLE_DEPTH_NESTING);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002839 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 } else
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002841 spin_lock_nested(&busiest->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002843 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844}
2845
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02002846static void double_unlock_balance(struct rq *this_rq, struct rq *busiest)
2847 __releases(busiest->lock)
2848{
2849 spin_unlock(&busiest->lock);
2850 lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_);
2851}
2852
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 * If dest_cpu is allowed for this process, migrate the task to it.
2855 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002856 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 * the cpu_allowed mask is restored.
2858 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002859static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002861 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002863 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
2865 rq = task_rq_lock(p, &flags);
2866 if (!cpu_isset(dest_cpu, p->cpus_allowed)
Max Krasnyanskye761b772008-07-15 04:43:49 -07002867 || unlikely(!cpu_active(dest_cpu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 goto out;
2869
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002870 trace_sched_migrate_task(rq, p, dest_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 /* force the process onto the specified CPU */
2872 if (migrate_task(p, dest_cpu, &req)) {
2873 /* Need to wait for migration thread (might exit: take ref). */
2874 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002875
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 get_task_struct(mt);
2877 task_rq_unlock(rq, &flags);
2878 wake_up_process(mt);
2879 put_task_struct(mt);
2880 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002881
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 return;
2883 }
2884out:
2885 task_rq_unlock(rq, &flags);
2886}
2887
2888/*
Nick Piggin476d1392005-06-25 14:57:29 -07002889 * sched_exec - execve() is a valuable balancing opportunity, because at
2890 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 */
2892void sched_exec(void)
2893{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002895 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002897 if (new_cpu != this_cpu)
2898 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899}
2900
2901/*
2902 * pull_task - move a task from a remote runqueue to the local runqueue.
2903 * Both runqueues must be locked.
2904 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002905static void pull_task(struct rq *src_rq, struct task_struct *p,
2906 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002908 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002910 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 /*
2912 * Note that idle threads have a prio of MAX_PRIO, for this test
2913 * to be always true for them.
2914 */
Peter Zijlstra15afe092008-09-20 23:38:02 +02002915 check_preempt_curr(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916}
2917
2918/*
2919 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2920 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002921static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002922int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002923 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002924 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925{
2926 /*
2927 * We do not migrate tasks that are:
2928 * 1) running (obviously), or
2929 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2930 * 3) are cache-hot on their current CPU.
2931 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002932 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2933 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002935 }
Nick Piggin81026792005-06-25 14:57:07 -07002936 *all_pinned = 0;
2937
Ingo Molnarcc367732007-10-15 17:00:18 +02002938 if (task_running(rq, p)) {
2939 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002940 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Ingo Molnarda84d962007-10-15 17:00:18 +02002943 /*
2944 * Aggressive migration if:
2945 * 1) task is cache cold, or
2946 * 2) too many balance attempts have failed.
2947 */
2948
Ingo Molnar6bc16652007-10-15 17:00:18 +02002949 if (!task_hot(p, rq->clock, sd) ||
2950 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002951#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002952 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002953 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002954 schedstat_inc(p, se.nr_forced_migrations);
2955 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002956#endif
2957 return 1;
2958 }
2959
Ingo Molnarcc367732007-10-15 17:00:18 +02002960 if (task_hot(p, rq->clock, sd)) {
2961 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002962 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 return 1;
2965}
2966
Peter Williamse1d14842007-10-24 18:23:51 +02002967static unsigned long
2968balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2969 unsigned long max_load_move, struct sched_domain *sd,
2970 enum cpu_idle_type idle, int *all_pinned,
2971 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002972{
Peter Zijlstra051c6762008-06-27 13:41:31 +02002973 int loops = 0, pulled = 0, pinned = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002974 struct task_struct *p;
2975 long rem_load_move = max_load_move;
2976
Peter Williamse1d14842007-10-24 18:23:51 +02002977 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002978 goto out;
2979
2980 pinned = 1;
2981
2982 /*
2983 * Start the load-balancing iterator:
2984 */
2985 p = iterator->start(iterator->arg);
2986next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002987 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002988 goto out;
Peter Zijlstra051c6762008-06-27 13:41:31 +02002989
2990 if ((p->se.load.weight >> 1) > rem_load_move ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002991 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002992 p = iterator->next(iterator->arg);
2993 goto next;
2994 }
2995
2996 pull_task(busiest, p, this_rq, this_cpu);
2997 pulled++;
2998 rem_load_move -= p->se.load.weight;
2999
3000 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003001 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003002 */
Peter Williamse1d14842007-10-24 18:23:51 +02003003 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003004 if (p->prio < *this_best_prio)
3005 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003006 p = iterator->next(iterator->arg);
3007 goto next;
3008 }
3009out:
3010 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003011 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003012 * so we can safely collect pull_task() stats here rather than
3013 * inside pull_task().
3014 */
3015 schedstat_add(sd, lb_gained[idle], pulled);
3016
3017 if (all_pinned)
3018 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003019
3020 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003021}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003022
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023/*
Peter Williams43010652007-08-09 11:16:46 +02003024 * move_tasks tries to move up to max_load_move weighted load from busiest to
3025 * this_rq, as part of a balancing operation within domain "sd".
3026 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 *
3028 * Called with both runqueues locked.
3029 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003030static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003031 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003032 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003033 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003035 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003036 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003037 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Ingo Molnardd41f592007-07-09 18:51:59 +02003039 do {
Peter Williams43010652007-08-09 11:16:46 +02003040 total_load_moved +=
3041 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003042 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003043 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003044 class = class->next;
Gregory Haskinsc4acb2c2008-06-27 14:29:55 -06003045
3046 if (idle == CPU_NEWLY_IDLE && this_rq->nr_running)
3047 break;
3048
Peter Williams43010652007-08-09 11:16:46 +02003049 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
Peter Williams43010652007-08-09 11:16:46 +02003051 return total_load_moved > 0;
3052}
3053
Peter Williamse1d14842007-10-24 18:23:51 +02003054static int
3055iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3056 struct sched_domain *sd, enum cpu_idle_type idle,
3057 struct rq_iterator *iterator)
3058{
3059 struct task_struct *p = iterator->start(iterator->arg);
3060 int pinned = 0;
3061
3062 while (p) {
3063 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3064 pull_task(busiest, p, this_rq, this_cpu);
3065 /*
3066 * Right now, this is only the second place pull_task()
3067 * is called, so we can safely collect pull_task()
3068 * stats here rather than inside pull_task().
3069 */
3070 schedstat_inc(sd, lb_gained[idle]);
3071
3072 return 1;
3073 }
3074 p = iterator->next(iterator->arg);
3075 }
3076
3077 return 0;
3078}
3079
Peter Williams43010652007-08-09 11:16:46 +02003080/*
3081 * move_one_task tries to move exactly one task from busiest to this_rq, as
3082 * part of active balancing operations within "domain".
3083 * Returns 1 if successful and 0 otherwise.
3084 *
3085 * Called with both runqueues locked.
3086 */
3087static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3088 struct sched_domain *sd, enum cpu_idle_type idle)
3089{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003090 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003091
3092 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003093 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003094 return 1;
3095
3096 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097}
3098
3099/*
3100 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003101 * domain. It calculates and returns the amount of weighted load which
3102 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 */
3104static struct sched_group *
3105find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003106 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003107 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108{
3109 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3110 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003111 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003112 unsigned long busiest_load_per_task, busiest_nr_running;
3113 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003114 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003115#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3116 int power_savings_balance = 1;
3117 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3118 unsigned long min_nr_running = ULONG_MAX;
3119 struct sched_group *group_min = NULL, *group_leader = NULL;
3120#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121
3122 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003123 busiest_load_per_task = busiest_nr_running = 0;
3124 this_load_per_task = this_nr_running = 0;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003125
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003126 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003127 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003128 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003129 load_idx = sd->newidle_idx;
3130 else
3131 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
3133 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003134 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 int local_group;
3136 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003137 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003138 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003139 unsigned long sum_nr_running, sum_weighted_load;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003140 unsigned long sum_avg_load_per_task;
3141 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
3143 local_group = cpu_isset(this_cpu, group->cpumask);
3144
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003145 if (local_group)
3146 balance_cpu = first_cpu(group->cpumask);
3147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003149 sum_weighted_load = sum_nr_running = avg_load = 0;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003150 sum_avg_load_per_task = avg_load_per_task = 0;
3151
Ken Chen908a7c12007-10-17 16:55:11 +02003152 max_cpu_load = 0;
3153 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Mike Travis363ab6f2008-05-12 21:21:13 +02003155 for_each_cpu_mask_nr(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003156 struct rq *rq;
3157
3158 if (!cpu_isset(i, *cpus))
3159 continue;
3160
3161 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003162
Suresh Siddha9439aab2007-07-19 21:28:35 +02003163 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003164 *sd_idle = 0;
3165
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003167 if (local_group) {
3168 if (idle_cpu(i) && !first_idle_cpu) {
3169 first_idle_cpu = 1;
3170 balance_cpu = i;
3171 }
3172
Nick Piggina2000572006-02-10 01:51:02 -08003173 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003174 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003175 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003176 if (load > max_cpu_load)
3177 max_cpu_load = load;
3178 if (min_cpu_load > load)
3179 min_cpu_load = load;
3180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
3182 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003183 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003184 sum_weighted_load += weighted_cpuload(i);
Peter Zijlstra408ed062008-06-27 13:41:28 +02003185
3186 sum_avg_load_per_task += cpu_avg_load_per_task(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 }
3188
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003189 /*
3190 * First idle cpu or the first cpu(busiest) in this sched group
3191 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003192 * domains. In the newly idle case, we will allow all the cpu's
3193 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003194 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003195 if (idle != CPU_NEWLY_IDLE && local_group &&
3196 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003197 *balance = 0;
3198 goto ret;
3199 }
3200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003202 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
3204 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003205 avg_load = sg_div_cpu_power(group,
3206 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Peter Zijlstra408ed062008-06-27 13:41:28 +02003208
3209 /*
3210 * Consider the group unbalanced when the imbalance is larger
3211 * than the average weight of two tasks.
3212 *
3213 * APZ: with cgroup the avg task weight can vary wildly and
3214 * might not be a suitable number - should we keep a
3215 * normalized nr_running number somewhere that negates
3216 * the hierarchy?
3217 */
3218 avg_load_per_task = sg_div_cpu_power(group,
3219 sum_avg_load_per_task * SCHED_LOAD_SCALE);
3220
3221 if ((max_cpu_load - min_cpu_load) > 2*avg_load_per_task)
Ken Chen908a7c12007-10-17 16:55:11 +02003222 __group_imb = 1;
3223
Eric Dumazet5517d862007-05-08 00:32:57 -07003224 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003225
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 if (local_group) {
3227 this_load = avg_load;
3228 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003229 this_nr_running = sum_nr_running;
3230 this_load_per_task = sum_weighted_load;
3231 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003232 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 max_load = avg_load;
3234 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003235 busiest_nr_running = sum_nr_running;
3236 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003237 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003239
3240#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3241 /*
3242 * Busy processors will not participate in power savings
3243 * balance.
3244 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003245 if (idle == CPU_NOT_IDLE ||
3246 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3247 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003248
3249 /*
3250 * If the local group is idle or completely loaded
3251 * no need to do power savings balance at this domain
3252 */
3253 if (local_group && (this_nr_running >= group_capacity ||
3254 !this_nr_running))
3255 power_savings_balance = 0;
3256
Ingo Molnardd41f592007-07-09 18:51:59 +02003257 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003258 * If a group is already running at full capacity or idle,
3259 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003260 */
3261 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003262 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003263 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003264
Ingo Molnardd41f592007-07-09 18:51:59 +02003265 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003266 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003267 * This is the group from where we need to pick up the load
3268 * for saving power
3269 */
3270 if ((sum_nr_running < min_nr_running) ||
3271 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003272 first_cpu(group->cpumask) <
3273 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003274 group_min = group;
3275 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003276 min_load_per_task = sum_weighted_load /
3277 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003278 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003279
Ingo Molnardd41f592007-07-09 18:51:59 +02003280 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003281 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003282 * capacity but still has some space to pick up some load
3283 * from other group and save more power
3284 */
3285 if (sum_nr_running <= group_capacity - 1) {
3286 if (sum_nr_running > leader_nr_running ||
3287 (sum_nr_running == leader_nr_running &&
3288 first_cpu(group->cpumask) >
3289 first_cpu(group_leader->cpumask))) {
3290 group_leader = group;
3291 leader_nr_running = sum_nr_running;
3292 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003293 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003294group_next:
3295#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 group = group->next;
3297 } while (group != sd->groups);
3298
Peter Williams2dd73a42006-06-27 02:54:34 -07003299 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 goto out_balanced;
3301
3302 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3303
3304 if (this_load >= avg_load ||
3305 100*max_load <= sd->imbalance_pct*this_load)
3306 goto out_balanced;
3307
Peter Williams2dd73a42006-06-27 02:54:34 -07003308 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003309 if (group_imb)
3310 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3311
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 /*
3313 * We're trying to get all the cpus to the average_load, so we don't
3314 * want to push ourselves above the average load, nor do we wish to
3315 * reduce the max loaded cpu below the average load, as either of these
3316 * actions would just result in more rebalancing later, and ping-pong
3317 * tasks around. Thus we look for the minimum possible imbalance.
3318 * Negative imbalances (*we* are more loaded than anyone else) will
3319 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003320 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 * appear as very large values with unsigned longs.
3322 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003323 if (max_load <= busiest_load_per_task)
3324 goto out_balanced;
3325
3326 /*
3327 * In the presence of smp nice balancing, certain scenarios can have
3328 * max load less than avg load(as we skip the groups at or below
3329 * its cpu_power, while calculating max_load..)
3330 */
3331 if (max_load < avg_load) {
3332 *imbalance = 0;
3333 goto small_imbalance;
3334 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003335
3336 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003337 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003338
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003340 *imbalance = min(max_pull * busiest->__cpu_power,
3341 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 / SCHED_LOAD_SCALE;
3343
Peter Williams2dd73a42006-06-27 02:54:34 -07003344 /*
3345 * if *imbalance is less than the average load per runnable task
3346 * there is no gaurantee that any tasks will be moved so we'll have
3347 * a think about bumping its value to force at least one task to be
3348 * moved
3349 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003350 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003351 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003352 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
Peter Williams2dd73a42006-06-27 02:54:34 -07003354small_imbalance:
3355 pwr_move = pwr_now = 0;
3356 imbn = 2;
3357 if (this_nr_running) {
3358 this_load_per_task /= this_nr_running;
3359 if (busiest_load_per_task > this_load_per_task)
3360 imbn = 1;
3361 } else
Peter Zijlstra408ed062008-06-27 13:41:28 +02003362 this_load_per_task = cpu_avg_load_per_task(this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07003363
Peter Zijlstra01c8c572008-10-24 11:06:12 +02003364 if (max_load - this_load + busiest_load_per_task >=
Ingo Molnardd41f592007-07-09 18:51:59 +02003365 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003366 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 return busiest;
3368 }
3369
3370 /*
3371 * OK, we don't have enough imbalance to justify moving tasks,
3372 * however we may be able to increase total CPU power used by
3373 * moving them.
3374 */
3375
Eric Dumazet5517d862007-05-08 00:32:57 -07003376 pwr_now += busiest->__cpu_power *
3377 min(busiest_load_per_task, max_load);
3378 pwr_now += this->__cpu_power *
3379 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 pwr_now /= SCHED_LOAD_SCALE;
3381
3382 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003383 tmp = sg_div_cpu_power(busiest,
3384 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003386 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003387 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
3389 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003390 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003391 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003392 tmp = sg_div_cpu_power(this,
3393 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003395 tmp = sg_div_cpu_power(this,
3396 busiest_load_per_task * SCHED_LOAD_SCALE);
3397 pwr_move += this->__cpu_power *
3398 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 pwr_move /= SCHED_LOAD_SCALE;
3400
3401 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003402 if (pwr_move > pwr_now)
3403 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 }
3405
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 return busiest;
3407
3408out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003409#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003410 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003411 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003413 if (this == group_leader && group_leader != group_min) {
3414 *imbalance = min_load_per_task;
3415 return group_min;
3416 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003417#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003418ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 *imbalance = 0;
3420 return NULL;
3421}
3422
3423/*
3424 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3425 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003426static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003427find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003428 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003430 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003431 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 int i;
3433
Mike Travis363ab6f2008-05-12 21:21:13 +02003434 for_each_cpu_mask_nr(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003435 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003436
3437 if (!cpu_isset(i, *cpus))
3438 continue;
3439
Ingo Molnar48f24c42006-07-03 00:25:40 -07003440 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003441 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Ingo Molnardd41f592007-07-09 18:51:59 +02003443 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003444 continue;
3445
Ingo Molnardd41f592007-07-09 18:51:59 +02003446 if (wl > max_load) {
3447 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003448 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 }
3450 }
3451
3452 return busiest;
3453}
3454
3455/*
Nick Piggin77391d72005-06-25 14:57:30 -07003456 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3457 * so long as it is large enough.
3458 */
3459#define MAX_PINNED_INTERVAL 512
3460
3461/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3463 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003465static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003466 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003467 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468{
Peter Williams43010652007-08-09 11:16:46 +02003469 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003472 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003473 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07003474
Mike Travis7c16ec52008-04-04 18:11:11 -07003475 cpus_setall(*cpus);
3476
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003477 /*
3478 * When power savings policy is enabled for the parent domain, idle
3479 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003480 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003481 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003482 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003483 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003484 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003485 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
Ingo Molnar2d723762007-10-15 17:00:12 +02003487 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003489redo:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02003490 update_shares(sd);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003491 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003492 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003493
Chen, Kenneth W06066712006-12-10 02:20:35 -08003494 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003495 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003496
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 if (!group) {
3498 schedstat_inc(sd, lb_nobusyg[idle]);
3499 goto out_balanced;
3500 }
3501
Mike Travis7c16ec52008-04-04 18:11:11 -07003502 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 if (!busiest) {
3504 schedstat_inc(sd, lb_nobusyq[idle]);
3505 goto out_balanced;
3506 }
3507
Nick Piggindb935db2005-06-25 14:57:11 -07003508 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509
3510 schedstat_add(sd, lb_imbalance[idle], imbalance);
3511
Peter Williams43010652007-08-09 11:16:46 +02003512 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 if (busiest->nr_running > 1) {
3514 /*
3515 * Attempt to move tasks. If find_busiest_group has found
3516 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003517 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 * correctly treated as an imbalance.
3519 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003520 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003521 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003522 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003523 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003524 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003525 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003526
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003527 /*
3528 * some other cpu did the load balance for us.
3529 */
Peter Williams43010652007-08-09 11:16:46 +02003530 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003531 resched_cpu(this_cpu);
3532
Nick Piggin81026792005-06-25 14:57:07 -07003533 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003534 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003535 cpu_clear(cpu_of(busiest), *cpus);
3536 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003537 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003538 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 }
Nick Piggin81026792005-06-25 14:57:07 -07003541
Peter Williams43010652007-08-09 11:16:46 +02003542 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 schedstat_inc(sd, lb_failed[idle]);
3544 sd->nr_balance_failed++;
3545
3546 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003548 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003549
3550 /* don't kick the migration_thread, if the curr
3551 * task on busiest cpu can't be moved to this_cpu
3552 */
3553 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003554 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003555 all_pinned = 1;
3556 goto out_one_pinned;
3557 }
3558
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 if (!busiest->active_balance) {
3560 busiest->active_balance = 1;
3561 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003562 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003564 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003565 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 wake_up_process(busiest->migration_thread);
3567
3568 /*
3569 * We've kicked active balancing, reset the failure
3570 * counter.
3571 */
Nick Piggin39507452005-06-25 14:57:09 -07003572 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 }
Nick Piggin81026792005-06-25 14:57:07 -07003574 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 sd->nr_balance_failed = 0;
3576
Nick Piggin81026792005-06-25 14:57:07 -07003577 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 /* We were unbalanced, so reset the balancing interval */
3579 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003580 } else {
3581 /*
3582 * If we've begun active balancing, start to back off. This
3583 * case may not be covered by the all_pinned logic if there
3584 * is only 1 task on the busy runqueue (because we don't call
3585 * move_tasks).
3586 */
3587 if (sd->balance_interval < sd->max_interval)
3588 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 }
3590
Peter Williams43010652007-08-09 11:16:46 +02003591 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003592 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003593 ld_moved = -1;
3594
3595 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596
3597out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 schedstat_inc(sd, lb_balanced[idle]);
3599
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003600 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003601
3602out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003604 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3605 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 sd->balance_interval *= 2;
3607
Ingo Molnar48f24c42006-07-03 00:25:40 -07003608 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003609 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003610 ld_moved = -1;
3611 else
3612 ld_moved = 0;
3613out:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02003614 if (ld_moved)
3615 update_shares(sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003616 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617}
3618
3619/*
3620 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3621 * tasks if there is an imbalance.
3622 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003623 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 * this_rq is locked.
3625 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003626static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003627load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3628 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629{
3630 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003631 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003633 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003634 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003635 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003636
3637 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003638
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,
3642 * let the state of idle sibling percolate up as 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 */
3645 if (sd->flags & SD_SHARE_CPUPOWER &&
3646 !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[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003650redo:
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02003651 update_shares_locked(this_rq, sd);
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003652 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003653 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003655 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003656 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 }
3658
Mike Travis7c16ec52008-04-04 18:11:11 -07003659 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003660 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003661 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003662 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 }
3664
Nick Piggindb935db2005-06-25 14:57:11 -07003665 BUG_ON(busiest == this_rq);
3666
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003667 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003668
Peter Williams43010652007-08-09 11:16:46 +02003669 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003670 if (busiest->nr_running > 1) {
3671 /* Attempt to move tasks */
3672 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003673 /* this_rq->clock is already updated */
3674 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003675 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003676 imbalance, sd, CPU_NEWLY_IDLE,
3677 &all_pinned);
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02003678 double_unlock_balance(this_rq, busiest);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003679
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003680 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003681 cpu_clear(cpu_of(busiest), *cpus);
3682 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003683 goto redo;
3684 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003685 }
3686
Peter Williams43010652007-08-09 11:16:46 +02003687 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003688 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003689 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3690 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003691 return -1;
3692 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003693 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02003695 update_shares_locked(this_rq, sd);
Peter Williams43010652007-08-09 11:16:46 +02003696 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003697
3698out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003699 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003700 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003701 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003702 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003703 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003704
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003705 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706}
3707
3708/*
3709 * idle_balance is called by schedule() if this_cpu is about to become
3710 * idle. Attempts to pull tasks from other CPUs.
3711 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003712static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713{
3714 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003715 int pulled_task = -1;
3716 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003717 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
3719 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003720 unsigned long interval;
3721
3722 if (!(sd->flags & SD_LOAD_BALANCE))
3723 continue;
3724
3725 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003726 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003727 pulled_task = load_balance_newidle(this_cpu, this_rq,
3728 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003729
3730 interval = msecs_to_jiffies(sd->balance_interval);
3731 if (time_after(next_balance, sd->last_balance + interval))
3732 next_balance = sd->last_balance + interval;
3733 if (pulled_task)
3734 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003736 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003737 /*
3738 * We are going idle. next_balance may be set based on
3739 * a busy processor. So reset next_balance.
3740 */
3741 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743}
3744
3745/*
3746 * active_load_balance is run by migration threads. It pushes running tasks
3747 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3748 * running on each physical CPU where possible, and avoids physical /
3749 * logical imbalances.
3750 *
3751 * Called with busiest_rq locked.
3752 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003753static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754{
Nick Piggin39507452005-06-25 14:57:09 -07003755 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003756 struct sched_domain *sd;
3757 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003758
Ingo Molnar48f24c42006-07-03 00:25:40 -07003759 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003760 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003761 return;
3762
3763 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
3765 /*
Nick Piggin39507452005-06-25 14:57:09 -07003766 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003767 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003768 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 */
Nick Piggin39507452005-06-25 14:57:09 -07003770 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Nick Piggin39507452005-06-25 14:57:09 -07003772 /* move a task from busiest_rq to target_rq */
3773 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003774 update_rq_clock(busiest_rq);
3775 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776
Nick Piggin39507452005-06-25 14:57:09 -07003777 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003778 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003779 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003780 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003781 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
Ingo Molnar48f24c42006-07-03 00:25:40 -07003784 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003785 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
Peter Williams43010652007-08-09 11:16:46 +02003787 if (move_one_task(target_rq, target_cpu, busiest_rq,
3788 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003789 schedstat_inc(sd, alb_pushed);
3790 else
3791 schedstat_inc(sd, alb_failed);
3792 }
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02003793 double_unlock_balance(busiest_rq, target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794}
3795
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003796#ifdef CONFIG_NO_HZ
3797static struct {
3798 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003799 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003800} nohz ____cacheline_aligned = {
3801 .load_balancer = ATOMIC_INIT(-1),
3802 .cpu_mask = CPU_MASK_NONE,
3803};
3804
Christoph Lameter7835b982006-12-10 02:20:22 -08003805/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003806 * This routine will try to nominate the ilb (idle load balancing)
3807 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3808 * load balancing on behalf of all those cpus. If all the cpus in the system
3809 * go into this tickless mode, then there will be no ilb owner (as there is
3810 * no need for one) and all the cpus will sleep till the next wakeup event
3811 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003812 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003813 * For the ilb owner, tick is not stopped. And this tick will be used
3814 * for idle load balancing. ilb owner will still be part of
3815 * nohz.cpu_mask..
3816 *
3817 * While stopping the tick, this cpu will become the ilb owner if there
3818 * is no other owner. And will be the owner till that cpu becomes busy
3819 * or if all cpus in the system stop their ticks at which point
3820 * there is no need for ilb owner.
3821 *
3822 * When the ilb owner becomes busy, it nominates another owner, during the
3823 * next busy scheduler_tick()
3824 */
3825int select_nohz_load_balancer(int stop_tick)
3826{
3827 int cpu = smp_processor_id();
3828
3829 if (stop_tick) {
3830 cpu_set(cpu, nohz.cpu_mask);
3831 cpu_rq(cpu)->in_nohz_recently = 1;
3832
3833 /*
3834 * If we are going offline and still the leader, give up!
3835 */
Max Krasnyanskye761b772008-07-15 04:43:49 -07003836 if (!cpu_active(cpu) &&
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003837 atomic_read(&nohz.load_balancer) == cpu) {
3838 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3839 BUG();
3840 return 0;
3841 }
3842
3843 /* time for ilb owner also to sleep */
3844 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3845 if (atomic_read(&nohz.load_balancer) == cpu)
3846 atomic_set(&nohz.load_balancer, -1);
3847 return 0;
3848 }
3849
3850 if (atomic_read(&nohz.load_balancer) == -1) {
3851 /* make me the ilb owner */
3852 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3853 return 1;
3854 } else if (atomic_read(&nohz.load_balancer) == cpu)
3855 return 1;
3856 } else {
3857 if (!cpu_isset(cpu, nohz.cpu_mask))
3858 return 0;
3859
3860 cpu_clear(cpu, nohz.cpu_mask);
3861
3862 if (atomic_read(&nohz.load_balancer) == cpu)
3863 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3864 BUG();
3865 }
3866 return 0;
3867}
3868#endif
3869
3870static DEFINE_SPINLOCK(balancing);
3871
3872/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003873 * It checks each scheduling domain to see if it is due to be balanced,
3874 * and initiates a balancing operation if so.
3875 *
3876 * Balancing parameters are set up in arch_init_sched_domains.
3877 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003878static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003879{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003880 int balance = 1;
3881 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003882 unsigned long interval;
3883 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003884 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003885 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003886 int update_next_balance = 0;
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003887 int need_serialize;
Mike Travis7c16ec52008-04-04 18:11:11 -07003888 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003890 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 if (!(sd->flags & SD_LOAD_BALANCE))
3892 continue;
3893
3894 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003895 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 interval *= sd->busy_factor;
3897
3898 /* scale ms to jiffies */
3899 interval = msecs_to_jiffies(interval);
3900 if (unlikely(!interval))
3901 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003902 if (interval > HZ*NR_CPUS/10)
3903 interval = HZ*NR_CPUS/10;
3904
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003905 need_serialize = sd->flags & SD_SERIALIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003907 if (need_serialize) {
Christoph Lameter08c183f2006-12-10 02:20:29 -08003908 if (!spin_trylock(&balancing))
3909 goto out;
3910 }
3911
Christoph Lameterc9819f42006-12-10 02:20:25 -08003912 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003913 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003914 /*
3915 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003916 * longer idle, or one of our SMT siblings is
3917 * not idle.
3918 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003919 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003921 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 }
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003923 if (need_serialize)
Christoph Lameter08c183f2006-12-10 02:20:29 -08003924 spin_unlock(&balancing);
3925out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003926 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003927 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003928 update_next_balance = 1;
3929 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003930
3931 /*
3932 * Stop the load balance at this level. There is another
3933 * CPU in our sched group which is doing load balancing more
3934 * actively.
3935 */
3936 if (!balance)
3937 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003939
3940 /*
3941 * next_balance will be updated only when there is a need.
3942 * When the cpu is attached to null domain for ex, it will not be
3943 * updated.
3944 */
3945 if (likely(update_next_balance))
3946 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003947}
3948
3949/*
3950 * run_rebalance_domains is triggered when needed from the scheduler tick.
3951 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3952 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3953 */
3954static void run_rebalance_domains(struct softirq_action *h)
3955{
Ingo Molnardd41f592007-07-09 18:51:59 +02003956 int this_cpu = smp_processor_id();
3957 struct rq *this_rq = cpu_rq(this_cpu);
3958 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3959 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003960
Ingo Molnardd41f592007-07-09 18:51:59 +02003961 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003962
3963#ifdef CONFIG_NO_HZ
3964 /*
3965 * If this cpu is the owner for idle load balancing, then do the
3966 * balancing on behalf of the other idle cpus whose ticks are
3967 * stopped.
3968 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003969 if (this_rq->idle_at_tick &&
3970 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003971 cpumask_t cpus = nohz.cpu_mask;
3972 struct rq *rq;
3973 int balance_cpu;
3974
Ingo Molnardd41f592007-07-09 18:51:59 +02003975 cpu_clear(this_cpu, cpus);
Mike Travis363ab6f2008-05-12 21:21:13 +02003976 for_each_cpu_mask_nr(balance_cpu, cpus) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003977 /*
3978 * If this cpu gets work to do, stop the load balancing
3979 * work being done for other cpus. Next load
3980 * balancing owner will pick it up.
3981 */
3982 if (need_resched())
3983 break;
3984
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003985 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003986
3987 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003988 if (time_after(this_rq->next_balance, rq->next_balance))
3989 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003990 }
3991 }
3992#endif
3993}
3994
3995/*
3996 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3997 *
3998 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3999 * idle load balancing owner or decide to stop the periodic load balancing,
4000 * if the whole system is idle.
4001 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004002static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004003{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004004#ifdef CONFIG_NO_HZ
4005 /*
4006 * If we were in the nohz mode recently and busy at the current
4007 * scheduler tick, then check if we need to nominate new idle
4008 * load balancer.
4009 */
4010 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4011 rq->in_nohz_recently = 0;
4012
4013 if (atomic_read(&nohz.load_balancer) == cpu) {
4014 cpu_clear(cpu, nohz.cpu_mask);
4015 atomic_set(&nohz.load_balancer, -1);
4016 }
4017
4018 if (atomic_read(&nohz.load_balancer) == -1) {
4019 /*
4020 * simple selection for now: Nominate the
4021 * first cpu in the nohz list to be the next
4022 * ilb owner.
4023 *
4024 * TBD: Traverse the sched domains and nominate
4025 * the nearest cpu in the nohz.cpu_mask.
4026 */
4027 int ilb = first_cpu(nohz.cpu_mask);
4028
Mike Travis434d53b2008-04-04 18:11:04 -07004029 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004030 resched_cpu(ilb);
4031 }
4032 }
4033
4034 /*
4035 * If this cpu is idle and doing idle load balancing for all the
4036 * cpus with ticks stopped, is it time for that to stop?
4037 */
4038 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
4039 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4040 resched_cpu(cpu);
4041 return;
4042 }
4043
4044 /*
4045 * If this cpu is idle and the idle load balancing is done by
4046 * someone else, then no need raise the SCHED_SOFTIRQ
4047 */
4048 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
4049 cpu_isset(cpu, nohz.cpu_mask))
4050 return;
4051#endif
4052 if (time_after_eq(jiffies, rq->next_balance))
4053 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054}
Ingo Molnardd41f592007-07-09 18:51:59 +02004055
4056#else /* CONFIG_SMP */
4057
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058/*
4059 * on UP we do not need to balance between CPUs:
4060 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004061static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062{
4063}
Ingo Molnardd41f592007-07-09 18:51:59 +02004064
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065#endif
4066
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067DEFINE_PER_CPU(struct kernel_stat, kstat);
4068
4069EXPORT_PER_CPU_SYMBOL(kstat);
4070
4071/*
Frank Mayharf06febc2008-09-12 09:54:39 -07004072 * Return any ns on the sched_clock that have not yet been banked in
4073 * @p in case that task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 */
Frank Mayharbb34d922008-09-12 09:54:39 -07004075unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004078 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07004079 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004080
Ingo Molnar41b86e92007-07-09 18:51:58 +02004081 rq = task_rq_lock(p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02004082
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004083 if (task_current(rq, p)) {
Frank Mayharf06febc2008-09-12 09:54:39 -07004084 u64 delta_exec;
4085
Ingo Molnara8e504d2007-08-09 11:16:47 +02004086 update_rq_clock(rq);
4087 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004088 if ((s64)delta_exec > 0)
Frank Mayharbb34d922008-09-12 09:54:39 -07004089 ns = delta_exec;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004090 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07004091
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 task_rq_unlock(rq, &flags);
4093
4094 return ns;
4095}
4096
4097/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 * Account user cpu time to a process.
4099 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 * @cputime: the cpu time spent in user space since the last update
4101 */
4102void account_user_time(struct task_struct *p, cputime_t cputime)
4103{
4104 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4105 cputime64_t tmp;
4106
4107 p->utime = cputime_add(p->utime, cputime);
Frank Mayharf06febc2008-09-12 09:54:39 -07004108 account_group_user_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109
4110 /* Add user time to cpustat. */
4111 tmp = cputime_to_cputime64(cputime);
4112 if (TASK_NICE(p) > 0)
4113 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4114 else
4115 cpustat->user = cputime64_add(cpustat->user, tmp);
Jonathan Lim49b5cf32008-07-25 01:48:40 -07004116 /* Account for user time used */
4117 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118}
4119
4120/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004121 * Account guest cpu time to a process.
4122 * @p: the process that the cpu time gets accounted to
4123 * @cputime: the cpu time spent in virtual machine since the last update
4124 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004125static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004126{
4127 cputime64_t tmp;
4128 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4129
4130 tmp = cputime_to_cputime64(cputime);
4131
4132 p->utime = cputime_add(p->utime, cputime);
Frank Mayharf06febc2008-09-12 09:54:39 -07004133 account_group_user_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02004134 p->gtime = cputime_add(p->gtime, cputime);
4135
4136 cpustat->user = cputime64_add(cpustat->user, tmp);
4137 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4138}
4139
4140/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004141 * Account scaled user cpu time to a process.
4142 * @p: the process that the cpu time gets accounted to
4143 * @cputime: the cpu time spent in user space since the last update
4144 */
4145void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4146{
4147 p->utimescaled = cputime_add(p->utimescaled, cputime);
4148}
4149
4150/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 * Account system cpu time to a process.
4152 * @p: the process that the cpu time gets accounted to
4153 * @hardirq_offset: the offset to subtract from hardirq_count()
4154 * @cputime: the cpu time spent in kernel space since the last update
4155 */
4156void account_system_time(struct task_struct *p, int hardirq_offset,
4157 cputime_t cputime)
4158{
4159 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004160 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161 cputime64_t tmp;
4162
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004163 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
4164 account_guest_time(p, cputime);
4165 return;
4166 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004167
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 p->stime = cputime_add(p->stime, cputime);
Frank Mayharf06febc2008-09-12 09:54:39 -07004169 account_group_system_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170
4171 /* Add system time to cpustat. */
4172 tmp = cputime_to_cputime64(cputime);
4173 if (hardirq_count() - hardirq_offset)
4174 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4175 else if (softirq_count())
4176 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004177 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004179 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4181 else
4182 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4183 /* Account for system time used */
4184 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185}
4186
4187/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004188 * Account scaled system cpu time to a process.
4189 * @p: the process that the cpu time gets accounted to
4190 * @hardirq_offset: the offset to subtract from hardirq_count()
4191 * @cputime: the cpu time spent in kernel space since the last update
4192 */
4193void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4194{
4195 p->stimescaled = cputime_add(p->stimescaled, cputime);
4196}
4197
4198/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 * Account for involuntary wait time.
4200 * @p: the process from which the cpu time has been stolen
4201 * @steal: the cpu time spent in involuntary wait
4202 */
4203void account_steal_time(struct task_struct *p, cputime_t steal)
4204{
4205 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4206 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004207 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208
4209 if (p == rq->idle) {
4210 p->stime = cputime_add(p->stime, steal);
Frank Mayharf06febc2008-09-12 09:54:39 -07004211 account_group_system_time(p, steal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 if (atomic_read(&rq->nr_iowait) > 0)
4213 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4214 else
4215 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004216 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4218}
4219
Christoph Lameter7835b982006-12-10 02:20:22 -08004220/*
Balbir Singh49048622008-09-05 18:12:23 +02004221 * Use precise platform statistics if available:
4222 */
4223#ifdef CONFIG_VIRT_CPU_ACCOUNTING
4224cputime_t task_utime(struct task_struct *p)
4225{
4226 return p->utime;
4227}
4228
4229cputime_t task_stime(struct task_struct *p)
4230{
4231 return p->stime;
4232}
4233#else
4234cputime_t task_utime(struct task_struct *p)
4235{
4236 clock_t utime = cputime_to_clock_t(p->utime),
4237 total = utime + cputime_to_clock_t(p->stime);
4238 u64 temp;
4239
4240 /*
4241 * Use CFS's precise accounting:
4242 */
4243 temp = (u64)nsec_to_clock_t(p->se.sum_exec_runtime);
4244
4245 if (total) {
4246 temp *= utime;
4247 do_div(temp, total);
4248 }
4249 utime = (clock_t)temp;
4250
4251 p->prev_utime = max(p->prev_utime, clock_t_to_cputime(utime));
4252 return p->prev_utime;
4253}
4254
4255cputime_t task_stime(struct task_struct *p)
4256{
4257 clock_t stime;
4258
4259 /*
4260 * Use CFS's precise accounting. (we subtract utime from
4261 * the total, to make sure the total observed by userspace
4262 * grows monotonically - apps rely on that):
4263 */
4264 stime = nsec_to_clock_t(p->se.sum_exec_runtime) -
4265 cputime_to_clock_t(task_utime(p));
4266
4267 if (stime >= 0)
4268 p->prev_stime = max(p->prev_stime, clock_t_to_cputime(stime));
4269
4270 return p->prev_stime;
4271}
4272#endif
4273
4274inline cputime_t task_gtime(struct task_struct *p)
4275{
4276 return p->gtime;
4277}
4278
4279/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004280 * This function gets called by the timer code, with HZ frequency.
4281 * We call it with interrupts disabled.
4282 *
4283 * It also gets called by the fork code, when changing the parent's
4284 * timeslices.
4285 */
4286void scheduler_tick(void)
4287{
Christoph Lameter7835b982006-12-10 02:20:22 -08004288 int cpu = smp_processor_id();
4289 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004290 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004291
4292 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004293
Ingo Molnardd41f592007-07-09 18:51:59 +02004294 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004295 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004296 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004297 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004298 spin_unlock(&rq->lock);
4299
Christoph Lametere418e1c2006-12-10 02:20:23 -08004300#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004301 rq->idle_at_tick = idle_cpu(cpu);
4302 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004303#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304}
4305
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004306#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
4307 defined(CONFIG_PREEMPT_TRACER))
4308
4309static inline unsigned long get_parent_ip(unsigned long addr)
4310{
4311 if (in_lock_functions(addr)) {
4312 addr = CALLER_ADDR2;
4313 if (in_lock_functions(addr))
4314 addr = CALLER_ADDR3;
4315 }
4316 return addr;
4317}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318
Srinivasa Ds43627582008-02-23 15:24:04 -08004319void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004321#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 /*
4323 * Underflow?
4324 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004325 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4326 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004327#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004329#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 /*
4331 * Spinlock count overflowing soon?
4332 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004333 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4334 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004335#endif
4336 if (preempt_count() == val)
4337 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338}
4339EXPORT_SYMBOL(add_preempt_count);
4340
Srinivasa Ds43627582008-02-23 15:24:04 -08004341void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004343#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 /*
4345 * Underflow?
4346 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004347 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4348 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 /*
4350 * Is the spinlock portion underflowing?
4351 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004352 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4353 !(preempt_count() & PREEMPT_MASK)))
4354 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004355#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004356
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004357 if (preempt_count() == val)
4358 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 preempt_count() -= val;
4360}
4361EXPORT_SYMBOL(sub_preempt_count);
4362
4363#endif
4364
4365/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004366 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004368static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369{
Satyam Sharma838225b2007-10-24 18:23:50 +02004370 struct pt_regs *regs = get_irq_regs();
4371
4372 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4373 prev->comm, prev->pid, preempt_count());
4374
Ingo Molnardd41f592007-07-09 18:51:59 +02004375 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07004376 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02004377 if (irqs_disabled())
4378 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004379
4380 if (regs)
4381 show_regs(regs);
4382 else
4383 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004384}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
Ingo Molnardd41f592007-07-09 18:51:59 +02004386/*
4387 * Various schedule()-time debugging checks and statistics:
4388 */
4389static inline void schedule_debug(struct task_struct *prev)
4390{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004392 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 * schedule() atomically, we ignore that path for now.
4394 * Otherwise, whine if we are scheduling when we should not be.
4395 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02004396 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02004397 __schedule_bug(prev);
4398
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4400
Ingo Molnar2d723762007-10-15 17:00:12 +02004401 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004402#ifdef CONFIG_SCHEDSTATS
4403 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004404 schedstat_inc(this_rq(), bkl_count);
4405 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004406 }
4407#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004408}
4409
4410/*
4411 * Pick up the highest-prio task:
4412 */
4413static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004414pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004415{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004416 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004417 struct task_struct *p;
4418
4419 /*
4420 * Optimization: we know that if all tasks are in
4421 * the fair class we can call that function directly:
4422 */
4423 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004424 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004425 if (likely(p))
4426 return p;
4427 }
4428
4429 class = sched_class_highest;
4430 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004431 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004432 if (p)
4433 return p;
4434 /*
4435 * Will never be NULL as the idle class always
4436 * returns a non-NULL p:
4437 */
4438 class = class->next;
4439 }
4440}
4441
4442/*
4443 * schedule() is the main scheduler function.
4444 */
4445asmlinkage void __sched schedule(void)
4446{
4447 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004448 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004449 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02004450 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02004451
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452need_resched:
4453 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004454 cpu = smp_processor_id();
4455 rq = cpu_rq(cpu);
4456 rcu_qsctr_inc(cpu);
4457 prev = rq->curr;
4458 switch_count = &prev->nivcsw;
4459
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 release_kernel_lock(prev);
4461need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
Ingo Molnardd41f592007-07-09 18:51:59 +02004463 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
Peter Zijlstra31656512008-07-18 18:01:23 +02004465 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004466 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004467
Peter Zijlstra8cd162c2008-10-15 20:37:23 +02004468 spin_lock_irq(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004469 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004470 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471
Ingo Molnardd41f592007-07-09 18:51:59 +02004472 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Oleg Nesterov16882c12008-06-08 21:20:41 +04004473 if (unlikely(signal_pending_state(prev->state, prev)))
Ingo Molnardd41f592007-07-09 18:51:59 +02004474 prev->state = TASK_RUNNING;
Oleg Nesterov16882c12008-06-08 21:20:41 +04004475 else
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004476 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004477 switch_count = &prev->nvcsw;
4478 }
4479
Steven Rostedt9a897c52008-01-25 21:08:22 +01004480#ifdef CONFIG_SMP
4481 if (prev->sched_class->pre_schedule)
4482 prev->sched_class->pre_schedule(rq, prev);
4483#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004484
Ingo Molnardd41f592007-07-09 18:51:59 +02004485 if (unlikely(!rq->nr_running))
4486 idle_balance(cpu, rq);
4487
Ingo Molnar31ee5292007-08-09 11:16:49 +02004488 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004489 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004492 sched_info_switch(prev, next);
4493
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 rq->nr_switches++;
4495 rq->curr = next;
4496 ++*switch_count;
4497
Ingo Molnardd41f592007-07-09 18:51:59 +02004498 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004499 /*
4500 * the context switch might have flipped the stack from under
4501 * us, hence refresh the local variables.
4502 */
4503 cpu = smp_processor_id();
4504 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 } else
4506 spin_unlock_irq(&rq->lock);
4507
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004508 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004510
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 preempt_enable_no_resched();
4512 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4513 goto need_resched;
4514}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515EXPORT_SYMBOL(schedule);
4516
4517#ifdef CONFIG_PREEMPT
4518/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004519 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004520 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521 * occur there and call schedule directly.
4522 */
4523asmlinkage void __sched preempt_schedule(void)
4524{
4525 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004526
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 /*
4528 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004529 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004531 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 return;
4533
Andi Kleen3a5c3592007-10-15 17:00:14 +02004534 do {
4535 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004536 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004537 sub_preempt_count(PREEMPT_ACTIVE);
4538
4539 /*
4540 * Check again in case we missed a preemption opportunity
4541 * between schedule and now.
4542 */
4543 barrier();
4544 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546EXPORT_SYMBOL(preempt_schedule);
4547
4548/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004549 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 * off of irq context.
4551 * Note, that this is called and return with irqs disabled. This will
4552 * protect us against recursive calling from irq.
4553 */
4554asmlinkage void __sched preempt_schedule_irq(void)
4555{
4556 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004557
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004558 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 BUG_ON(ti->preempt_count || !irqs_disabled());
4560
Andi Kleen3a5c3592007-10-15 17:00:14 +02004561 do {
4562 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004563 local_irq_enable();
4564 schedule();
4565 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004566 sub_preempt_count(PREEMPT_ACTIVE);
4567
4568 /*
4569 * Check again in case we missed a preemption opportunity
4570 * between schedule and now.
4571 */
4572 barrier();
4573 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574}
4575
4576#endif /* CONFIG_PREEMPT */
4577
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004578int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4579 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004581 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583EXPORT_SYMBOL(default_wake_function);
4584
4585/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004586 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4587 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 * number) then we wake all the non-exclusive tasks and one exclusive task.
4589 *
4590 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004591 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4593 */
4594static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4595 int nr_exclusive, int sync, void *key)
4596{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004597 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004599 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004600 unsigned flags = curr->flags;
4601
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004603 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 break;
4605 }
4606}
4607
4608/**
4609 * __wake_up - wake up threads blocked on a waitqueue.
4610 * @q: the waitqueue
4611 * @mode: which threads
4612 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004613 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004615void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004616 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617{
4618 unsigned long flags;
4619
4620 spin_lock_irqsave(&q->lock, flags);
4621 __wake_up_common(q, mode, nr_exclusive, 0, key);
4622 spin_unlock_irqrestore(&q->lock, flags);
4623}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624EXPORT_SYMBOL(__wake_up);
4625
4626/*
4627 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4628 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004629void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630{
4631 __wake_up_common(q, mode, 1, 0, NULL);
4632}
4633
4634/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004635 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 * @q: the waitqueue
4637 * @mode: which threads
4638 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4639 *
4640 * The sync wakeup differs that the waker knows that it will schedule
4641 * away soon, so while the target thread will be woken up, it will not
4642 * be migrated to another CPU - ie. the two threads are 'synchronized'
4643 * with each other. This can prevent needless bouncing between CPUs.
4644 *
4645 * On UP it can prevent extra preemption.
4646 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004647void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004648__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649{
4650 unsigned long flags;
4651 int sync = 1;
4652
4653 if (unlikely(!q))
4654 return;
4655
4656 if (unlikely(!nr_exclusive))
4657 sync = 0;
4658
4659 spin_lock_irqsave(&q->lock, flags);
4660 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4661 spin_unlock_irqrestore(&q->lock, flags);
4662}
4663EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4664
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004665/**
4666 * complete: - signals a single thread waiting on this completion
4667 * @x: holds the state of this particular completion
4668 *
4669 * This will wake up a single thread waiting on this completion. Threads will be
4670 * awakened in the same order in which they were queued.
4671 *
4672 * See also complete_all(), wait_for_completion() and related routines.
4673 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004674void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675{
4676 unsigned long flags;
4677
4678 spin_lock_irqsave(&x->wait.lock, flags);
4679 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004680 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 spin_unlock_irqrestore(&x->wait.lock, flags);
4682}
4683EXPORT_SYMBOL(complete);
4684
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004685/**
4686 * complete_all: - signals all threads waiting on this completion
4687 * @x: holds the state of this particular completion
4688 *
4689 * This will wake up all threads waiting on this particular completion event.
4690 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004691void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692{
4693 unsigned long flags;
4694
4695 spin_lock_irqsave(&x->wait.lock, flags);
4696 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004697 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 spin_unlock_irqrestore(&x->wait.lock, flags);
4699}
4700EXPORT_SYMBOL(complete_all);
4701
Andi Kleen8cbbe862007-10-15 17:00:14 +02004702static inline long __sched
4703do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 if (!x->done) {
4706 DECLARE_WAITQUEUE(wait, current);
4707
4708 wait.flags |= WQ_FLAG_EXCLUSIVE;
4709 __add_wait_queue_tail(&x->wait, &wait);
4710 do {
Oleg Nesterov94d3d822008-08-20 16:54:41 -07004711 if (signal_pending_state(state, current)) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04004712 timeout = -ERESTARTSYS;
4713 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004714 }
4715 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004717 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004719 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004721 if (!x->done)
4722 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 }
4724 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04004725 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004726}
4727
4728static long __sched
4729wait_for_common(struct completion *x, long timeout, int state)
4730{
4731 might_sleep();
4732
4733 spin_lock_irq(&x->wait.lock);
4734 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004736 return timeout;
4737}
4738
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004739/**
4740 * wait_for_completion: - waits for completion of a task
4741 * @x: holds the state of this particular completion
4742 *
4743 * This waits to be signaled for completion of a specific task. It is NOT
4744 * interruptible and there is no timeout.
4745 *
4746 * See also similar routines (i.e. wait_for_completion_timeout()) with timeout
4747 * and interrupt capability. Also see complete().
4748 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004749void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004750{
4751 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752}
4753EXPORT_SYMBOL(wait_for_completion);
4754
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004755/**
4756 * wait_for_completion_timeout: - waits for completion of a task (w/timeout)
4757 * @x: holds the state of this particular completion
4758 * @timeout: timeout value in jiffies
4759 *
4760 * This waits for either a completion of a specific task to be signaled or for a
4761 * specified timeout to expire. The timeout is in jiffies. It is not
4762 * interruptible.
4763 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004764unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4766{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004767 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768}
4769EXPORT_SYMBOL(wait_for_completion_timeout);
4770
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004771/**
4772 * wait_for_completion_interruptible: - waits for completion of a task (w/intr)
4773 * @x: holds the state of this particular completion
4774 *
4775 * This waits for completion of a specific task to be signaled. It is
4776 * interruptible.
4777 */
Andi Kleen8cbbe862007-10-15 17:00:14 +02004778int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779{
Andi Kleen51e97992007-10-18 21:32:55 +02004780 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4781 if (t == -ERESTARTSYS)
4782 return t;
4783 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784}
4785EXPORT_SYMBOL(wait_for_completion_interruptible);
4786
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004787/**
4788 * wait_for_completion_interruptible_timeout: - waits for completion (w/(to,intr))
4789 * @x: holds the state of this particular completion
4790 * @timeout: timeout value in jiffies
4791 *
4792 * This waits for either a completion of a specific task to be signaled or for a
4793 * specified timeout to expire. It is interruptible. The timeout is in jiffies.
4794 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004795unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796wait_for_completion_interruptible_timeout(struct completion *x,
4797 unsigned long timeout)
4798{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004799 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800}
4801EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4802
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004803/**
4804 * wait_for_completion_killable: - waits for completion of a task (killable)
4805 * @x: holds the state of this particular completion
4806 *
4807 * This waits to be signaled for completion of a specific task. It can be
4808 * interrupted by a kill signal.
4809 */
Matthew Wilcox009e5772007-12-06 12:29:54 -05004810int __sched wait_for_completion_killable(struct completion *x)
4811{
4812 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4813 if (t == -ERESTARTSYS)
4814 return t;
4815 return 0;
4816}
4817EXPORT_SYMBOL(wait_for_completion_killable);
4818
Dave Chinnerbe4de352008-08-15 00:40:44 -07004819/**
4820 * try_wait_for_completion - try to decrement a completion without blocking
4821 * @x: completion structure
4822 *
4823 * Returns: 0 if a decrement cannot be done without blocking
4824 * 1 if a decrement succeeded.
4825 *
4826 * If a completion is being used as a counting completion,
4827 * attempt to decrement the counter without blocking. This
4828 * enables us to avoid waiting if the resource the completion
4829 * is protecting is not available.
4830 */
4831bool try_wait_for_completion(struct completion *x)
4832{
4833 int ret = 1;
4834
4835 spin_lock_irq(&x->wait.lock);
4836 if (!x->done)
4837 ret = 0;
4838 else
4839 x->done--;
4840 spin_unlock_irq(&x->wait.lock);
4841 return ret;
4842}
4843EXPORT_SYMBOL(try_wait_for_completion);
4844
4845/**
4846 * completion_done - Test to see if a completion has any waiters
4847 * @x: completion structure
4848 *
4849 * Returns: 0 if there are waiters (wait_for_completion() in progress)
4850 * 1 if there are no waiters.
4851 *
4852 */
4853bool completion_done(struct completion *x)
4854{
4855 int ret = 1;
4856
4857 spin_lock_irq(&x->wait.lock);
4858 if (!x->done)
4859 ret = 0;
4860 spin_unlock_irq(&x->wait.lock);
4861 return ret;
4862}
4863EXPORT_SYMBOL(completion_done);
4864
Andi Kleen8cbbe862007-10-15 17:00:14 +02004865static long __sched
4866sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004867{
4868 unsigned long flags;
4869 wait_queue_t wait;
4870
4871 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872
Andi Kleen8cbbe862007-10-15 17:00:14 +02004873 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874
Andi Kleen8cbbe862007-10-15 17:00:14 +02004875 spin_lock_irqsave(&q->lock, flags);
4876 __add_wait_queue(q, &wait);
4877 spin_unlock(&q->lock);
4878 timeout = schedule_timeout(timeout);
4879 spin_lock_irq(&q->lock);
4880 __remove_wait_queue(q, &wait);
4881 spin_unlock_irqrestore(&q->lock, flags);
4882
4883 return timeout;
4884}
4885
4886void __sched interruptible_sleep_on(wait_queue_head_t *q)
4887{
4888 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890EXPORT_SYMBOL(interruptible_sleep_on);
4891
Ingo Molnar0fec1712007-07-09 18:52:01 +02004892long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004893interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004895 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4898
Ingo Molnar0fec1712007-07-09 18:52:01 +02004899void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004901 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903EXPORT_SYMBOL(sleep_on);
4904
Ingo Molnar0fec1712007-07-09 18:52:01 +02004905long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004907 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909EXPORT_SYMBOL(sleep_on_timeout);
4910
Ingo Molnarb29739f2006-06-27 02:54:51 -07004911#ifdef CONFIG_RT_MUTEXES
4912
4913/*
4914 * rt_mutex_setprio - set the current priority of a task
4915 * @p: task
4916 * @prio: prio value (kernel-internal form)
4917 *
4918 * This function changes the 'effective' priority of a task. It does
4919 * not touch ->normal_prio like __setscheduler().
4920 *
4921 * Used by the rt_mutex code to implement priority inheritance logic.
4922 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004923void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004924{
4925 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004926 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004927 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004928 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004929
4930 BUG_ON(prio < 0 || prio > MAX_PRIO);
4931
4932 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004933 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004934
Andrew Mortond5f9f942007-05-08 20:27:06 -07004935 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004936 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004937 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004938 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004939 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004940 if (running)
4941 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004942
4943 if (rt_prio(prio))
4944 p->sched_class = &rt_sched_class;
4945 else
4946 p->sched_class = &fair_sched_class;
4947
Ingo Molnarb29739f2006-06-27 02:54:51 -07004948 p->prio = prio;
4949
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004950 if (running)
4951 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004952 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004953 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004954
4955 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004956 }
4957 task_rq_unlock(rq, &flags);
4958}
4959
4960#endif
4961
Ingo Molnar36c8b582006-07-03 00:25:41 -07004962void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963{
Ingo Molnardd41f592007-07-09 18:51:59 +02004964 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004966 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967
4968 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4969 return;
4970 /*
4971 * We have to be careful, if called from sys_setpriority(),
4972 * the task might be in the middle of scheduling on another CPU.
4973 */
4974 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004975 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 /*
4977 * The RT priorities are set via sched_setscheduler(), but we still
4978 * allow the 'normal' nice value to be set - but as expected
4979 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004980 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004982 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 p->static_prio = NICE_TO_PRIO(nice);
4984 goto out_unlock;
4985 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004986 on_rq = p->se.on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004987 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004988 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004991 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004992 old_prio = p->prio;
4993 p->prio = effective_prio(p);
4994 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
Ingo Molnardd41f592007-07-09 18:51:59 +02004996 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004997 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004999 * If the task increased its priority or is running and
5000 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07005002 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003 resched_task(rq->curr);
5004 }
5005out_unlock:
5006 task_rq_unlock(rq, &flags);
5007}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008EXPORT_SYMBOL(set_user_nice);
5009
Matt Mackalle43379f2005-05-01 08:59:00 -07005010/*
5011 * can_nice - check if a task can reduce its nice value
5012 * @p: task
5013 * @nice: nice value
5014 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005015int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07005016{
Matt Mackall024f4742005-08-18 11:24:19 -07005017 /* convert nice value [19,-20] to rlimit style value [1,40] */
5018 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005019
Matt Mackalle43379f2005-05-01 08:59:00 -07005020 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
5021 capable(CAP_SYS_NICE));
5022}
5023
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024#ifdef __ARCH_WANT_SYS_NICE
5025
5026/*
5027 * sys_nice - change the priority of the current process.
5028 * @increment: priority increment
5029 *
5030 * sys_setpriority is a more generic, but much slower function that
5031 * does similar things.
5032 */
5033asmlinkage long sys_nice(int increment)
5034{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005035 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
5037 /*
5038 * Setpriority might change our priority at the same moment.
5039 * We don't have to worry. Conceptually one call occurs first
5040 * and we have a single winner.
5041 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005042 if (increment < -40)
5043 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 if (increment > 40)
5045 increment = 40;
5046
5047 nice = PRIO_TO_NICE(current->static_prio) + increment;
5048 if (nice < -20)
5049 nice = -20;
5050 if (nice > 19)
5051 nice = 19;
5052
Matt Mackalle43379f2005-05-01 08:59:00 -07005053 if (increment < 0 && !can_nice(current, nice))
5054 return -EPERM;
5055
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 retval = security_task_setnice(current, nice);
5057 if (retval)
5058 return retval;
5059
5060 set_user_nice(current, nice);
5061 return 0;
5062}
5063
5064#endif
5065
5066/**
5067 * task_prio - return the priority value of a given task.
5068 * @p: the task in question.
5069 *
5070 * This is the priority value as seen by users in /proc.
5071 * RT tasks are offset by -200. Normal tasks are centered
5072 * around 0, value goes from -16 to +15.
5073 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005074int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075{
5076 return p->prio - MAX_RT_PRIO;
5077}
5078
5079/**
5080 * task_nice - return the nice value of a given task.
5081 * @p: the task in question.
5082 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005083int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084{
5085 return TASK_NICE(p);
5086}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005087EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088
5089/**
5090 * idle_cpu - is a given cpu idle currently?
5091 * @cpu: the processor in question.
5092 */
5093int idle_cpu(int cpu)
5094{
5095 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5096}
5097
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098/**
5099 * idle_task - return the idle task for a given cpu.
5100 * @cpu: the processor in question.
5101 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005102struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103{
5104 return cpu_rq(cpu)->idle;
5105}
5106
5107/**
5108 * find_process_by_pid - find a process with a matching PID value.
5109 * @pid: the pid in question.
5110 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005111static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005113 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114}
5115
5116/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005117static void
5118__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119{
Ingo Molnardd41f592007-07-09 18:51:59 +02005120 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005121
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005123 switch (p->policy) {
5124 case SCHED_NORMAL:
5125 case SCHED_BATCH:
5126 case SCHED_IDLE:
5127 p->sched_class = &fair_sched_class;
5128 break;
5129 case SCHED_FIFO:
5130 case SCHED_RR:
5131 p->sched_class = &rt_sched_class;
5132 break;
5133 }
5134
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005136 p->normal_prio = normal_prio(p);
5137 /* we are holding p->pi_lock already */
5138 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005139 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140}
5141
Rusty Russell961ccdd2008-06-23 13:55:38 +10005142static int __sched_setscheduler(struct task_struct *p, int policy,
5143 struct sched_param *param, bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005145 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005147 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005148 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149
Steven Rostedt66e53932006-06-27 02:54:44 -07005150 /* may grab non-irq protected spin_locks */
5151 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152recheck:
5153 /* double check policy once rq lock held */
5154 if (policy < 0)
5155 policy = oldpolicy = p->policy;
5156 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005157 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5158 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005159 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160 /*
5161 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005162 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5163 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 */
5165 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005166 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005167 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005169 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 return -EINVAL;
5171
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005172 /*
5173 * Allow unprivileged RT tasks to decrease priority:
5174 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10005175 if (user && !capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005176 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005177 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005178
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005179 if (!lock_task_sighand(p, &flags))
5180 return -ESRCH;
5181 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5182 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005183
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005184 /* can't set/change the rt policy */
5185 if (policy != p->policy && !rlim_rtprio)
5186 return -EPERM;
5187
5188 /* can't increase priority */
5189 if (param->sched_priority > p->rt_priority &&
5190 param->sched_priority > rlim_rtprio)
5191 return -EPERM;
5192 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005193 /*
5194 * Like positive nice levels, dont allow tasks to
5195 * move out of SCHED_IDLE either:
5196 */
5197 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5198 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005199
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005200 /* can't change other user's priorities */
5201 if ((current->euid != p->euid) &&
5202 (current->euid != p->uid))
5203 return -EPERM;
5204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005206 if (user) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005207#ifdef CONFIG_RT_GROUP_SCHED
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005208 /*
5209 * Do not allow realtime tasks into groups that have no runtime
5210 * assigned.
5211 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02005212 if (rt_bandwidth_enabled() && rt_policy(policy) &&
5213 task_group(p)->rt_bandwidth.rt_runtime == 0)
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005214 return -EPERM;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005215#endif
5216
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005217 retval = security_task_setscheduler(p, policy, param);
5218 if (retval)
5219 return retval;
5220 }
5221
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005223 * make sure no PI-waiters arrive (or leave) while we are
5224 * changing the priority of the task:
5225 */
5226 spin_lock_irqsave(&p->pi_lock, flags);
5227 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228 * To be able to change p->policy safely, the apropriate
5229 * runqueue lock must be held.
5230 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005231 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232 /* recheck policy now with rq lock held */
5233 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5234 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005235 __task_rq_unlock(rq);
5236 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237 goto recheck;
5238 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005239 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005240 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005241 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005242 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005243 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005244 if (running)
5245 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005246
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005248 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005249
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005250 if (running)
5251 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005252 if (on_rq) {
5253 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005254
5255 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005257 __task_rq_unlock(rq);
5258 spin_unlock_irqrestore(&p->pi_lock, flags);
5259
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005260 rt_mutex_adjust_pi(p);
5261
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262 return 0;
5263}
Rusty Russell961ccdd2008-06-23 13:55:38 +10005264
5265/**
5266 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
5267 * @p: the task in question.
5268 * @policy: new policy.
5269 * @param: structure containing the new RT priority.
5270 *
5271 * NOTE that the task may be already dead.
5272 */
5273int sched_setscheduler(struct task_struct *p, int policy,
5274 struct sched_param *param)
5275{
5276 return __sched_setscheduler(p, policy, param, true);
5277}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278EXPORT_SYMBOL_GPL(sched_setscheduler);
5279
Rusty Russell961ccdd2008-06-23 13:55:38 +10005280/**
5281 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
5282 * @p: the task in question.
5283 * @policy: new policy.
5284 * @param: structure containing the new RT priority.
5285 *
5286 * Just like sched_setscheduler, only don't bother checking if the
5287 * current context has permission. For example, this is needed in
5288 * stop_machine(): we create temporary high priority worker threads,
5289 * but our caller might not have that capability.
5290 */
5291int sched_setscheduler_nocheck(struct task_struct *p, int policy,
5292 struct sched_param *param)
5293{
5294 return __sched_setscheduler(p, policy, param, false);
5295}
5296
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005297static int
5298do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 struct sched_param lparam;
5301 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005302 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
5304 if (!param || pid < 0)
5305 return -EINVAL;
5306 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5307 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005308
5309 rcu_read_lock();
5310 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005312 if (p != NULL)
5313 retval = sched_setscheduler(p, policy, &lparam);
5314 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005315
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316 return retval;
5317}
5318
5319/**
5320 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5321 * @pid: the pid in question.
5322 * @policy: new policy.
5323 * @param: structure containing the new RT priority.
5324 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005325asmlinkage long
5326sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327{
Jason Baronc21761f2006-01-18 17:43:03 -08005328 /* negative values for policy are not valid */
5329 if (policy < 0)
5330 return -EINVAL;
5331
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332 return do_sched_setscheduler(pid, policy, param);
5333}
5334
5335/**
5336 * sys_sched_setparam - set/change the RT priority of a thread
5337 * @pid: the pid in question.
5338 * @param: structure containing the new RT priority.
5339 */
5340asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5341{
5342 return do_sched_setscheduler(pid, -1, param);
5343}
5344
5345/**
5346 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5347 * @pid: the pid in question.
5348 */
5349asmlinkage long sys_sched_getscheduler(pid_t pid)
5350{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005351 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005352 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353
5354 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005355 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356
5357 retval = -ESRCH;
5358 read_lock(&tasklist_lock);
5359 p = find_process_by_pid(pid);
5360 if (p) {
5361 retval = security_task_getscheduler(p);
5362 if (!retval)
5363 retval = p->policy;
5364 }
5365 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366 return retval;
5367}
5368
5369/**
5370 * sys_sched_getscheduler - get the RT priority of a thread
5371 * @pid: the pid in question.
5372 * @param: structure containing the RT priority.
5373 */
5374asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5375{
5376 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005377 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005378 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379
5380 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005381 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382
5383 read_lock(&tasklist_lock);
5384 p = find_process_by_pid(pid);
5385 retval = -ESRCH;
5386 if (!p)
5387 goto out_unlock;
5388
5389 retval = security_task_getscheduler(p);
5390 if (retval)
5391 goto out_unlock;
5392
5393 lp.sched_priority = p->rt_priority;
5394 read_unlock(&tasklist_lock);
5395
5396 /*
5397 * This one might sleep, we cannot do it with a spinlock held ...
5398 */
5399 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5400
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401 return retval;
5402
5403out_unlock:
5404 read_unlock(&tasklist_lock);
5405 return retval;
5406}
5407
Mike Travisb53e9212008-04-04 18:11:08 -07005408long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07005411 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005412 struct task_struct *p;
5413 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005415 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416 read_lock(&tasklist_lock);
5417
5418 p = find_process_by_pid(pid);
5419 if (!p) {
5420 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005421 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422 return -ESRCH;
5423 }
5424
5425 /*
5426 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005427 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428 * usage count and then drop tasklist_lock.
5429 */
5430 get_task_struct(p);
5431 read_unlock(&tasklist_lock);
5432
5433 retval = -EPERM;
5434 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5435 !capable(CAP_SYS_NICE))
5436 goto out_unlock;
5437
David Quigleye7834f82006-06-23 02:03:59 -07005438 retval = security_task_setscheduler(p, 0, NULL);
5439 if (retval)
5440 goto out_unlock;
5441
Mike Travisf9a86fc2008-04-04 18:11:07 -07005442 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005444 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005445 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446
Paul Menage8707d8b2007-10-18 23:40:22 -07005447 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005448 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005449 if (!cpus_subset(new_mask, cpus_allowed)) {
5450 /*
5451 * We must have raced with a concurrent cpuset
5452 * update. Just reset the cpus_allowed to the
5453 * cpuset's cpus_allowed
5454 */
5455 new_mask = cpus_allowed;
5456 goto again;
5457 }
5458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459out_unlock:
5460 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005461 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462 return retval;
5463}
5464
5465static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5466 cpumask_t *new_mask)
5467{
5468 if (len < sizeof(cpumask_t)) {
5469 memset(new_mask, 0, sizeof(cpumask_t));
5470 } else if (len > sizeof(cpumask_t)) {
5471 len = sizeof(cpumask_t);
5472 }
5473 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5474}
5475
5476/**
5477 * sys_sched_setaffinity - set the cpu affinity of a process
5478 * @pid: pid of the process
5479 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5480 * @user_mask_ptr: user-space pointer to the new cpu mask
5481 */
5482asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5483 unsigned long __user *user_mask_ptr)
5484{
5485 cpumask_t new_mask;
5486 int retval;
5487
5488 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5489 if (retval)
5490 return retval;
5491
Mike Travisb53e9212008-04-04 18:11:08 -07005492 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493}
5494
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495long sched_getaffinity(pid_t pid, cpumask_t *mask)
5496{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005497 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005500 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 read_lock(&tasklist_lock);
5502
5503 retval = -ESRCH;
5504 p = find_process_by_pid(pid);
5505 if (!p)
5506 goto out_unlock;
5507
David Quigleye7834f82006-06-23 02:03:59 -07005508 retval = security_task_getscheduler(p);
5509 if (retval)
5510 goto out_unlock;
5511
Jack Steiner2f7016d2006-02-01 03:05:18 -08005512 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513
5514out_unlock:
5515 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005516 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517
Ulrich Drepper9531b622007-08-09 11:16:46 +02005518 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519}
5520
5521/**
5522 * sys_sched_getaffinity - get the cpu affinity of a process
5523 * @pid: pid of the process
5524 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5525 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5526 */
5527asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5528 unsigned long __user *user_mask_ptr)
5529{
5530 int ret;
5531 cpumask_t mask;
5532
5533 if (len < sizeof(cpumask_t))
5534 return -EINVAL;
5535
5536 ret = sched_getaffinity(pid, &mask);
5537 if (ret < 0)
5538 return ret;
5539
5540 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5541 return -EFAULT;
5542
5543 return sizeof(cpumask_t);
5544}
5545
5546/**
5547 * sys_sched_yield - yield the current processor to other threads.
5548 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005549 * This function yields the current CPU to other tasks. If there are no
5550 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551 */
5552asmlinkage long sys_sched_yield(void)
5553{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005554 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555
Ingo Molnar2d723762007-10-15 17:00:12 +02005556 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005557 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558
5559 /*
5560 * Since we are going to call schedule() anyway, there's
5561 * no need to preempt or enable interrupts:
5562 */
5563 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005564 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565 _raw_spin_unlock(&rq->lock);
5566 preempt_enable_no_resched();
5567
5568 schedule();
5569
5570 return 0;
5571}
5572
Andrew Mortone7b38402006-06-30 01:56:00 -07005573static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005575#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5576 __might_sleep(__FILE__, __LINE__);
5577#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005578 /*
5579 * The BKS might be reacquired before we have dropped
5580 * PREEMPT_ACTIVE, which could trigger a second
5581 * cond_resched() call.
5582 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583 do {
5584 add_preempt_count(PREEMPT_ACTIVE);
5585 schedule();
5586 sub_preempt_count(PREEMPT_ACTIVE);
5587 } while (need_resched());
5588}
5589
Herbert Xu02b67cc2008-01-25 21:08:28 +01005590int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591{
Ingo Molnar94142322006-12-29 16:48:13 -08005592 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5593 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594 __cond_resched();
5595 return 1;
5596 }
5597 return 0;
5598}
Herbert Xu02b67cc2008-01-25 21:08:28 +01005599EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600
5601/*
5602 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5603 * call schedule, and on return reacquire the lock.
5604 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005605 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606 * operations here to prevent schedule() from being called twice (once via
5607 * spin_unlock(), once by hand).
5608 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005609int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610{
Nick Piggin95c354f2008-01-30 13:31:20 +01005611 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005612 int ret = 0;
5613
Nick Piggin95c354f2008-01-30 13:31:20 +01005614 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005616 if (resched && need_resched())
5617 __cond_resched();
5618 else
5619 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005620 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005623 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625EXPORT_SYMBOL(cond_resched_lock);
5626
5627int __sched cond_resched_softirq(void)
5628{
5629 BUG_ON(!in_softirq());
5630
Ingo Molnar94142322006-12-29 16:48:13 -08005631 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005632 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633 __cond_resched();
5634 local_bh_disable();
5635 return 1;
5636 }
5637 return 0;
5638}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639EXPORT_SYMBOL(cond_resched_softirq);
5640
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641/**
5642 * yield - yield the current processor to other threads.
5643 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005644 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645 * thread runnable and calls sys_sched_yield().
5646 */
5647void __sched yield(void)
5648{
5649 set_current_state(TASK_RUNNING);
5650 sys_sched_yield();
5651}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652EXPORT_SYMBOL(yield);
5653
5654/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005655 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656 * that process accounting knows that this is a task in IO wait state.
5657 *
5658 * But don't do that if it is a deliberate, throttling IO wait (this task
5659 * has set its backing_dev_info: the queue against which it should throttle)
5660 */
5661void __sched io_schedule(void)
5662{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005663 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005665 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666 atomic_inc(&rq->nr_iowait);
5667 schedule();
5668 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005669 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671EXPORT_SYMBOL(io_schedule);
5672
5673long __sched io_schedule_timeout(long timeout)
5674{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005675 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676 long ret;
5677
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005678 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679 atomic_inc(&rq->nr_iowait);
5680 ret = schedule_timeout(timeout);
5681 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005682 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683 return ret;
5684}
5685
5686/**
5687 * sys_sched_get_priority_max - return maximum RT priority.
5688 * @policy: scheduling class.
5689 *
5690 * this syscall returns the maximum rt_priority that can be used
5691 * by a given scheduling class.
5692 */
5693asmlinkage long sys_sched_get_priority_max(int policy)
5694{
5695 int ret = -EINVAL;
5696
5697 switch (policy) {
5698 case SCHED_FIFO:
5699 case SCHED_RR:
5700 ret = MAX_USER_RT_PRIO-1;
5701 break;
5702 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005703 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005704 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705 ret = 0;
5706 break;
5707 }
5708 return ret;
5709}
5710
5711/**
5712 * sys_sched_get_priority_min - return minimum RT priority.
5713 * @policy: scheduling class.
5714 *
5715 * this syscall returns the minimum rt_priority that can be used
5716 * by a given scheduling class.
5717 */
5718asmlinkage long sys_sched_get_priority_min(int policy)
5719{
5720 int ret = -EINVAL;
5721
5722 switch (policy) {
5723 case SCHED_FIFO:
5724 case SCHED_RR:
5725 ret = 1;
5726 break;
5727 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005728 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005729 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730 ret = 0;
5731 }
5732 return ret;
5733}
5734
5735/**
5736 * sys_sched_rr_get_interval - return the default timeslice of a process.
5737 * @pid: pid of the process.
5738 * @interval: userspace pointer to the timeslice value.
5739 *
5740 * this syscall writes the default timeslice value of a given process
5741 * into the user-space timespec buffer. A value of '0' means infinity.
5742 */
5743asmlinkage
5744long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5745{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005746 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005747 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005748 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750
5751 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005752 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753
5754 retval = -ESRCH;
5755 read_lock(&tasklist_lock);
5756 p = find_process_by_pid(pid);
5757 if (!p)
5758 goto out_unlock;
5759
5760 retval = security_task_getscheduler(p);
5761 if (retval)
5762 goto out_unlock;
5763
Ingo Molnar77034932007-12-04 17:04:39 +01005764 /*
5765 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5766 * tasks that are on an otherwise idle runqueue:
5767 */
5768 time_slice = 0;
5769 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005770 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005771 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005772 struct sched_entity *se = &p->se;
5773 unsigned long flags;
5774 struct rq *rq;
5775
5776 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005777 if (rq->cfs.load.weight)
5778 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005779 task_rq_unlock(rq, &flags);
5780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005782 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005785
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786out_unlock:
5787 read_unlock(&tasklist_lock);
5788 return retval;
5789}
5790
Steven Rostedt7c731e02008-05-12 21:20:41 +02005791static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005792
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005793void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005796 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005799 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005800 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005801#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005803 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005805 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806#else
5807 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005808 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005810 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811#endif
5812#ifdef CONFIG_DEBUG_STACK_USAGE
5813 {
Al Viro10ebffd2005-11-13 16:06:56 -08005814 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 while (!*n)
5816 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005817 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818 }
5819#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005820 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005821 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005823 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824}
5825
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005826void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005828 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829
Ingo Molnar4bd77322007-07-11 21:21:47 +02005830#if BITS_PER_LONG == 32
5831 printk(KERN_INFO
5832 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005834 printk(KERN_INFO
5835 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836#endif
5837 read_lock(&tasklist_lock);
5838 do_each_thread(g, p) {
5839 /*
5840 * reset the NMI-timeout, listing all files on a slow
5841 * console might take alot of time:
5842 */
5843 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005844 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005845 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846 } while_each_thread(g, p);
5847
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005848 touch_all_softlockup_watchdogs();
5849
Ingo Molnardd41f592007-07-09 18:51:59 +02005850#ifdef CONFIG_SCHED_DEBUG
5851 sysrq_sched_debug_show();
5852#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005854 /*
5855 * Only show locks if all tasks are dumped:
5856 */
5857 if (state_filter == -1)
5858 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859}
5860
Ingo Molnar1df21052007-07-09 18:51:58 +02005861void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5862{
Ingo Molnardd41f592007-07-09 18:51:59 +02005863 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005864}
5865
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005866/**
5867 * init_idle - set up an idle thread for a given CPU
5868 * @idle: task in question
5869 * @cpu: cpu the idle task belongs to
5870 *
5871 * NOTE: this function does not set the idle thread's NEED_RESCHED
5872 * flag, to make booting more robust.
5873 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005874void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005876 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877 unsigned long flags;
5878
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01005879 spin_lock_irqsave(&rq->lock, flags);
5880
Ingo Molnardd41f592007-07-09 18:51:59 +02005881 __sched_fork(idle);
5882 idle->se.exec_start = sched_clock();
5883
Ingo Molnarb29739f2006-06-27 02:54:51 -07005884 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005886 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005889#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5890 idle->oncpu = 1;
5891#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892 spin_unlock_irqrestore(&rq->lock, flags);
5893
5894 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005895#if defined(CONFIG_PREEMPT)
5896 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5897#else
Al Viroa1261f52005-11-13 16:06:55 -08005898 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005899#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005900 /*
5901 * The idle tasks have their own, simple scheduling class:
5902 */
5903 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904}
5905
5906/*
5907 * In a system that switches off the HZ timer nohz_cpu_mask
5908 * indicates which cpus entered this state. This is used
5909 * in the rcu update to wait only for active cpus. For system
5910 * which do not switch off the HZ timer nohz_cpu_mask should
5911 * always be CPU_MASK_NONE.
5912 */
5913cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5914
Ingo Molnar19978ca2007-11-09 22:39:38 +01005915/*
5916 * Increase the granularity value when there are more CPUs,
5917 * because with more CPUs the 'effective latency' as visible
5918 * to users decreases. But the relationship is not linear,
5919 * so pick a second-best guess by going with the log2 of the
5920 * number of CPUs.
5921 *
5922 * This idea comes from the SD scheduler of Con Kolivas:
5923 */
5924static inline void sched_init_granularity(void)
5925{
5926 unsigned int factor = 1 + ilog2(num_online_cpus());
5927 const unsigned long limit = 200000000;
5928
5929 sysctl_sched_min_granularity *= factor;
5930 if (sysctl_sched_min_granularity > limit)
5931 sysctl_sched_min_granularity = limit;
5932
5933 sysctl_sched_latency *= factor;
5934 if (sysctl_sched_latency > limit)
5935 sysctl_sched_latency = limit;
5936
5937 sysctl_sched_wakeup_granularity *= factor;
Peter Zijlstra55cd5342008-08-04 08:54:26 +02005938
5939 sysctl_sched_shares_ratelimit *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005940}
5941
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942#ifdef CONFIG_SMP
5943/*
5944 * This is how migration works:
5945 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005946 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947 * runqueue and wake up that CPU's migration thread.
5948 * 2) we down() the locked semaphore => thread blocks.
5949 * 3) migration thread wakes up (implicitly it forces the migrated
5950 * thread off the CPU)
5951 * 4) it gets the migration request and checks whether the migrated
5952 * task is still in the wrong runqueue.
5953 * 5) if it's in the wrong runqueue then the migration thread removes
5954 * it and puts it into the right queue.
5955 * 6) migration thread up()s the semaphore.
5956 * 7) we wake up and the migration is done.
5957 */
5958
5959/*
5960 * Change a given task's CPU affinity. Migrate the thread to a
5961 * proper CPU and schedule it away if the CPU it's executing on
5962 * is removed from the allowed bitmask.
5963 *
5964 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005965 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966 * call is not atomic; no spinlocks may be held.
5967 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005968int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005970 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005972 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005973 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974
5975 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005976 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977 ret = -EINVAL;
5978 goto out;
5979 }
5980
David Rientjes9985b0b2008-06-05 12:57:11 -07005981 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current &&
5982 !cpus_equal(p->cpus_allowed, *new_mask))) {
5983 ret = -EINVAL;
5984 goto out;
5985 }
5986
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005987 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005988 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005989 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005990 p->cpus_allowed = *new_mask;
5991 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005992 }
5993
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005995 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996 goto out;
5997
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005998 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999 /* Need help from migration thread: drop lock and wait. */
6000 task_rq_unlock(rq, &flags);
6001 wake_up_process(rq->migration_thread);
6002 wait_for_completion(&req.done);
6003 tlb_migrate_finish(p->mm);
6004 return 0;
6005 }
6006out:
6007 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006008
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009 return ret;
6010}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006011EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012
6013/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006014 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015 * this because either it can't run here any more (set_cpus_allowed()
6016 * away from this CPU, or CPU going down), or because we're
6017 * attempting to rebalance this task on exec (sched_exec).
6018 *
6019 * So we race with normal scheduler movements, but that's OK, as long
6020 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07006021 *
6022 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07006024static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006026 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02006027 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028
Max Krasnyanskye761b772008-07-15 04:43:49 -07006029 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07006030 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031
6032 rq_src = cpu_rq(src_cpu);
6033 rq_dest = cpu_rq(dest_cpu);
6034
6035 double_rq_lock(rq_src, rq_dest);
6036 /* Already moved. */
6037 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006038 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039 /* Affinity changed (again). */
6040 if (!cpu_isset(dest_cpu, p->cpus_allowed))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006041 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042
Ingo Molnardd41f592007-07-09 18:51:59 +02006043 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006044 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006045 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006046
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006048 if (on_rq) {
6049 activate_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02006050 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006052done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07006053 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006054fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07006056 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057}
6058
6059/*
6060 * migration_thread - this is a highprio system thread that performs
6061 * thread migration by bumping thread off CPU then 'pushing' onto
6062 * another runqueue.
6063 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006064static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006067 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068
6069 rq = cpu_rq(cpu);
6070 BUG_ON(rq->migration_thread != current);
6071
6072 set_current_state(TASK_INTERRUPTIBLE);
6073 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006074 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077 spin_lock_irq(&rq->lock);
6078
6079 if (cpu_is_offline(cpu)) {
6080 spin_unlock_irq(&rq->lock);
6081 goto wait_to_die;
6082 }
6083
6084 if (rq->active_balance) {
6085 active_load_balance(rq, cpu);
6086 rq->active_balance = 0;
6087 }
6088
6089 head = &rq->migration_queue;
6090
6091 if (list_empty(head)) {
6092 spin_unlock_irq(&rq->lock);
6093 schedule();
6094 set_current_state(TASK_INTERRUPTIBLE);
6095 continue;
6096 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07006097 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098 list_del_init(head->next);
6099
Nick Piggin674311d2005-06-25 14:57:27 -07006100 spin_unlock(&rq->lock);
6101 __migrate_task(req->task, cpu, req->dest_cpu);
6102 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103
6104 complete(&req->done);
6105 }
6106 __set_current_state(TASK_RUNNING);
6107 return 0;
6108
6109wait_to_die:
6110 /* Wait for kthread_stop */
6111 set_current_state(TASK_INTERRUPTIBLE);
6112 while (!kthread_should_stop()) {
6113 schedule();
6114 set_current_state(TASK_INTERRUPTIBLE);
6115 }
6116 __set_current_state(TASK_RUNNING);
6117 return 0;
6118}
6119
6120#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006121
6122static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
6123{
6124 int ret;
6125
6126 local_irq_disable();
6127 ret = __migrate_task(p, src_cpu, dest_cpu);
6128 local_irq_enable();
6129 return ret;
6130}
6131
Kirill Korotaev054b9102006-12-10 02:20:11 -08006132/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006133 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08006134 * NOTE: interrupts should be disabled by the caller
6135 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006136static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137{
Kirill Korotaevefc30812006-06-27 02:54:32 -07006138 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006140 struct rq *rq;
6141 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142
Andi Kleen3a5c3592007-10-15 17:00:14 +02006143 do {
6144 /* On same node? */
6145 mask = node_to_cpumask(cpu_to_node(dead_cpu));
6146 cpus_and(mask, mask, p->cpus_allowed);
6147 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148
Andi Kleen3a5c3592007-10-15 17:00:14 +02006149 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07006150 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006151 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006152
Andi Kleen3a5c3592007-10-15 17:00:14 +02006153 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07006154 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07006155 cpumask_t cpus_allowed;
6156
6157 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd642007-10-18 23:40:46 -07006158 /*
6159 * Try to stay on the same cpuset, where the
6160 * current cpuset may be a subset of all cpus.
6161 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006162 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07006163 * called within calls to cpuset_lock/cpuset_unlock.
6164 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02006165 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07006166 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006167 dest_cpu = any_online_cpu(p->cpus_allowed);
6168 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169
Andi Kleen3a5c3592007-10-15 17:00:14 +02006170 /*
6171 * Don't tell them about moving exiting tasks or
6172 * kernel threads (both mm NULL), since they never
6173 * leave kernel.
6174 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006175 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006176 printk(KERN_INFO "process %d (%s) no "
6177 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006178 task_pid_nr(p), p->comm, dead_cpu);
6179 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006180 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006181 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182}
6183
6184/*
6185 * While a dead CPU has no uninterruptible tasks queued at this point,
6186 * it might still have a nonzero ->nr_uninterruptible counter, because
6187 * for performance reasons the counter is not stricly tracking tasks to
6188 * their home CPUs. So we just add the counter to another CPU's counter,
6189 * to keep the global sum constant after CPU-down:
6190 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006191static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192{
Mike Travis7c16ec52008-04-04 18:11:11 -07006193 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194 unsigned long flags;
6195
6196 local_irq_save(flags);
6197 double_rq_lock(rq_src, rq_dest);
6198 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6199 rq_src->nr_uninterruptible = 0;
6200 double_rq_unlock(rq_src, rq_dest);
6201 local_irq_restore(flags);
6202}
6203
6204/* Run through task list and migrate tasks from the dead cpu. */
6205static void migrate_live_tasks(int src_cpu)
6206{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006207 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006209 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210
Ingo Molnar48f24c42006-07-03 00:25:40 -07006211 do_each_thread(t, p) {
6212 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213 continue;
6214
Ingo Molnar48f24c42006-07-03 00:25:40 -07006215 if (task_cpu(p) == src_cpu)
6216 move_task_off_dead_cpu(src_cpu, p);
6217 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006219 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220}
6221
Ingo Molnardd41f592007-07-09 18:51:59 +02006222/*
6223 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006224 * It does so by boosting its priority to highest possible.
6225 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226 */
6227void sched_idle_next(void)
6228{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006229 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006230 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231 struct task_struct *p = rq->idle;
6232 unsigned long flags;
6233
6234 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006235 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236
Ingo Molnar48f24c42006-07-03 00:25:40 -07006237 /*
6238 * Strictly not necessary since rest of the CPUs are stopped by now
6239 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240 */
6241 spin_lock_irqsave(&rq->lock, flags);
6242
Ingo Molnardd41f592007-07-09 18:51:59 +02006243 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006244
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006245 update_rq_clock(rq);
6246 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247
6248 spin_unlock_irqrestore(&rq->lock, flags);
6249}
6250
Ingo Molnar48f24c42006-07-03 00:25:40 -07006251/*
6252 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253 * offline.
6254 */
6255void idle_task_exit(void)
6256{
6257 struct mm_struct *mm = current->active_mm;
6258
6259 BUG_ON(cpu_online(smp_processor_id()));
6260
6261 if (mm != &init_mm)
6262 switch_mm(mm, &init_mm, current);
6263 mmdrop(mm);
6264}
6265
Kirill Korotaev054b9102006-12-10 02:20:11 -08006266/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006267static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006269 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270
6271 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006272 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273
6274 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006275 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276
Ingo Molnar48f24c42006-07-03 00:25:40 -07006277 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278
6279 /*
6280 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006281 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282 * fine.
6283 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006284 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006285 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006286 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287
Ingo Molnar48f24c42006-07-03 00:25:40 -07006288 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289}
6290
6291/* release_task() removes task from tasklist, so we won't find dead tasks. */
6292static void migrate_dead_tasks(unsigned int dead_cpu)
6293{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006294 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006295 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296
Ingo Molnardd41f592007-07-09 18:51:59 +02006297 for ( ; ; ) {
6298 if (!rq->nr_running)
6299 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006300 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006301 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006302 if (!next)
6303 break;
Dmitry Adamushko79c53792008-06-29 00:16:56 +02006304 next->sched_class->put_prev_task(rq, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02006305 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006306
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307 }
6308}
6309#endif /* CONFIG_HOTPLUG_CPU */
6310
Nick Piggine692ab52007-07-26 13:40:43 +02006311#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6312
6313static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006314 {
6315 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006316 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006317 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006318 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006319};
6320
6321static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006322 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006323 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006324 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006325 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006326 .child = sd_ctl_dir,
6327 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006328 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006329};
6330
6331static struct ctl_table *sd_alloc_ctl_entry(int n)
6332{
6333 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006334 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006335
Nick Piggine692ab52007-07-26 13:40:43 +02006336 return entry;
6337}
6338
Milton Miller6382bc92007-10-15 17:00:19 +02006339static void sd_free_ctl_entry(struct ctl_table **tablep)
6340{
Milton Millercd790072007-10-17 16:55:11 +02006341 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006342
Milton Millercd790072007-10-17 16:55:11 +02006343 /*
6344 * In the intermediate directories, both the child directory and
6345 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006346 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02006347 * static strings and all have proc handlers.
6348 */
6349 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006350 if (entry->child)
6351 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02006352 if (entry->proc_handler == NULL)
6353 kfree(entry->procname);
6354 }
Milton Miller6382bc92007-10-15 17:00:19 +02006355
6356 kfree(*tablep);
6357 *tablep = NULL;
6358}
6359
Nick Piggine692ab52007-07-26 13:40:43 +02006360static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006361set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006362 const char *procname, void *data, int maxlen,
6363 mode_t mode, proc_handler *proc_handler)
6364{
Nick Piggine692ab52007-07-26 13:40:43 +02006365 entry->procname = procname;
6366 entry->data = data;
6367 entry->maxlen = maxlen;
6368 entry->mode = mode;
6369 entry->proc_handler = proc_handler;
6370}
6371
6372static struct ctl_table *
6373sd_alloc_ctl_domain_table(struct sched_domain *sd)
6374{
Ingo Molnara5d8c342008-10-09 11:35:51 +02006375 struct ctl_table *table = sd_alloc_ctl_entry(13);
Nick Piggine692ab52007-07-26 13:40:43 +02006376
Milton Millerad1cdc12007-10-15 17:00:19 +02006377 if (table == NULL)
6378 return NULL;
6379
Alexey Dobriyane0361852007-08-09 11:16:46 +02006380 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006381 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006382 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006383 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006384 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006385 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006386 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006387 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006388 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006389 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006390 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006391 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006392 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006393 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006394 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006395 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006396 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006397 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006398 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006399 &sd->cache_nice_tries,
6400 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006401 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006402 sizeof(int), 0644, proc_dointvec_minmax);
Ingo Molnara5d8c342008-10-09 11:35:51 +02006403 set_table_entry(&table[11], "name", sd->name,
6404 CORENAME_MAX_SIZE, 0444, proc_dostring);
6405 /* &table[12] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006406
6407 return table;
6408}
6409
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006410static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006411{
6412 struct ctl_table *entry, *table;
6413 struct sched_domain *sd;
6414 int domain_num = 0, i;
6415 char buf[32];
6416
6417 for_each_domain(cpu, sd)
6418 domain_num++;
6419 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006420 if (table == NULL)
6421 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006422
6423 i = 0;
6424 for_each_domain(cpu, sd) {
6425 snprintf(buf, 32, "domain%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_domain_table(sd);
6429 entry++;
6430 i++;
6431 }
6432 return table;
6433}
6434
6435static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006436static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006437{
6438 int i, cpu_num = num_online_cpus();
6439 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6440 char buf[32];
6441
Milton Miller73785472007-10-24 18:23:48 +02006442 WARN_ON(sd_ctl_dir[0].child);
6443 sd_ctl_dir[0].child = entry;
6444
Milton Millerad1cdc12007-10-15 17:00:19 +02006445 if (entry == NULL)
6446 return;
6447
Milton Miller97b6ea72007-10-15 17:00:19 +02006448 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006449 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006450 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006451 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006452 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006453 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006454 }
Milton Miller73785472007-10-24 18:23:48 +02006455
6456 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006457 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6458}
Milton Miller6382bc92007-10-15 17:00:19 +02006459
Milton Miller73785472007-10-24 18:23:48 +02006460/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006461static void unregister_sched_domain_sysctl(void)
6462{
Milton Miller73785472007-10-24 18:23:48 +02006463 if (sd_sysctl_header)
6464 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006465 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006466 if (sd_ctl_dir[0].child)
6467 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006468}
Nick Piggine692ab52007-07-26 13:40:43 +02006469#else
Milton Miller6382bc92007-10-15 17:00:19 +02006470static void register_sched_domain_sysctl(void)
6471{
6472}
6473static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006474{
6475}
6476#endif
6477
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006478static void set_rq_online(struct rq *rq)
6479{
6480 if (!rq->online) {
6481 const struct sched_class *class;
6482
6483 cpu_set(rq->cpu, rq->rd->online);
6484 rq->online = 1;
6485
6486 for_each_class(class) {
6487 if (class->rq_online)
6488 class->rq_online(rq);
6489 }
6490 }
6491}
6492
6493static void set_rq_offline(struct rq *rq)
6494{
6495 if (rq->online) {
6496 const struct sched_class *class;
6497
6498 for_each_class(class) {
6499 if (class->rq_offline)
6500 class->rq_offline(rq);
6501 }
6502
6503 cpu_clear(rq->cpu, rq->rd->online);
6504 rq->online = 0;
6505 }
6506}
6507
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508/*
6509 * migration_call - callback that gets triggered when a CPU is added.
6510 * Here we can start up the necessary migration thread for the new CPU.
6511 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006512static int __cpuinit
6513migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006516 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006518 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519
6520 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006521
Linus Torvalds1da177e2005-04-16 15:20:36 -07006522 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006523 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006524 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525 if (IS_ERR(p))
6526 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527 kthread_bind(p, cpu);
6528 /* Must be high prio: stop_machine expects to yield to it. */
6529 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006530 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531 task_rq_unlock(rq, &flags);
6532 cpu_rq(cpu)->migration_thread = p;
6533 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006534
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006536 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006537 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006539
6540 /* Update our root-domain */
6541 rq = cpu_rq(cpu);
6542 spin_lock_irqsave(&rq->lock, flags);
6543 if (rq->rd) {
6544 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006545
6546 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006547 }
6548 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006550
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551#ifdef CONFIG_HOTPLUG_CPU
6552 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006553 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006554 if (!cpu_rq(cpu)->migration_thread)
6555 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006556 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006557 kthread_bind(cpu_rq(cpu)->migration_thread,
6558 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559 kthread_stop(cpu_rq(cpu)->migration_thread);
6560 cpu_rq(cpu)->migration_thread = NULL;
6561 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006562
Linus Torvalds1da177e2005-04-16 15:20:36 -07006563 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006564 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006565 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566 migrate_live_tasks(cpu);
6567 rq = cpu_rq(cpu);
6568 kthread_stop(rq->migration_thread);
6569 rq->migration_thread = NULL;
6570 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006571 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006572 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006573 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006575 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6576 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006577 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006578 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006579 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006580 migrate_nr_uninterruptible(rq);
6581 BUG_ON(rq->nr_running != 0);
6582
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006583 /*
6584 * No need to migrate the tasks: it was best-effort if
6585 * they didn't take sched_hotcpu_mutex. Just wake up
6586 * the requestors.
6587 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588 spin_lock_irq(&rq->lock);
6589 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006590 struct migration_req *req;
6591
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006593 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594 list_del_init(&req->list);
6595 complete(&req->done);
6596 }
6597 spin_unlock_irq(&rq->lock);
6598 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006599
Gregory Haskins08f503b2008-03-10 17:59:11 -04006600 case CPU_DYING:
6601 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006602 /* Update our root-domain */
6603 rq = cpu_rq(cpu);
6604 spin_lock_irqsave(&rq->lock, flags);
6605 if (rq->rd) {
6606 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006607 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006608 }
6609 spin_unlock_irqrestore(&rq->lock, flags);
6610 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611#endif
6612 }
6613 return NOTIFY_OK;
6614}
6615
6616/* Register at highest priority so that task migration (migrate_all_tasks)
6617 * happens before everything else.
6618 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006619static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620 .notifier_call = migration_call,
6621 .priority = 10
6622};
6623
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006624static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625{
6626 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006627 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006628
6629 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006630 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6631 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6633 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006634
6635 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006637early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638#endif
6639
6640#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006641
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006642#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006643
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306644static inline const char *sd_level_to_string(enum sched_domain_level lvl)
6645{
6646 switch (lvl) {
6647 case SD_LV_NONE:
6648 return "NONE";
6649 case SD_LV_SIBLING:
6650 return "SIBLING";
6651 case SD_LV_MC:
6652 return "MC";
6653 case SD_LV_CPU:
6654 return "CPU";
6655 case SD_LV_NODE:
6656 return "NODE";
6657 case SD_LV_ALLNODES:
6658 return "ALLNODES";
6659 case SD_LV_MAX:
6660 return "MAX";
6661
6662 }
6663 return "MAX";
6664}
6665
Mike Travis7c16ec52008-04-04 18:11:11 -07006666static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6667 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006668{
6669 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006670 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006671
Mike Travis434d53b2008-04-04 18:11:04 -07006672 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006673 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006674
6675 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6676
6677 if (!(sd->flags & SD_LOAD_BALANCE)) {
6678 printk("does not load-balance\n");
6679 if (sd->parent)
6680 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6681 " has parent");
6682 return -1;
6683 }
6684
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306685 printk(KERN_CONT "span %s level %s\n",
6686 str, sd_level_to_string(sd->level));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006687
6688 if (!cpu_isset(cpu, sd->span)) {
6689 printk(KERN_ERR "ERROR: domain->span does not contain "
6690 "CPU%d\n", cpu);
6691 }
6692 if (!cpu_isset(cpu, group->cpumask)) {
6693 printk(KERN_ERR "ERROR: domain->groups does not contain"
6694 " CPU%d\n", cpu);
6695 }
6696
6697 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6698 do {
6699 if (!group) {
6700 printk("\n");
6701 printk(KERN_ERR "ERROR: group is NULL\n");
6702 break;
6703 }
6704
6705 if (!group->__cpu_power) {
6706 printk(KERN_CONT "\n");
6707 printk(KERN_ERR "ERROR: domain->cpu_power not "
6708 "set\n");
6709 break;
6710 }
6711
6712 if (!cpus_weight(group->cpumask)) {
6713 printk(KERN_CONT "\n");
6714 printk(KERN_ERR "ERROR: empty group\n");
6715 break;
6716 }
6717
Mike Travis7c16ec52008-04-04 18:11:11 -07006718 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006719 printk(KERN_CONT "\n");
6720 printk(KERN_ERR "ERROR: repeated CPUs\n");
6721 break;
6722 }
6723
Mike Travis7c16ec52008-04-04 18:11:11 -07006724 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006725
Mike Travis434d53b2008-04-04 18:11:04 -07006726 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006727 printk(KERN_CONT " %s", str);
6728
6729 group = group->next;
6730 } while (group != sd->groups);
6731 printk(KERN_CONT "\n");
6732
Mike Travis7c16ec52008-04-04 18:11:11 -07006733 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006734 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6735
Mike Travis7c16ec52008-04-04 18:11:11 -07006736 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006737 printk(KERN_ERR "ERROR: parent span is not a superset "
6738 "of domain->span\n");
6739 return 0;
6740}
6741
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742static void sched_domain_debug(struct sched_domain *sd, int cpu)
6743{
Mike Travis7c16ec52008-04-04 18:11:11 -07006744 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006745 int level = 0;
6746
Nick Piggin41c7ce92005-06-25 14:57:24 -07006747 if (!sd) {
6748 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6749 return;
6750 }
6751
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6753
Mike Travis7c16ec52008-04-04 18:11:11 -07006754 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6755 if (!groupmask) {
6756 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6757 return;
6758 }
6759
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006760 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006761 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006762 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763 level++;
6764 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006765 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006766 break;
6767 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006768 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006770#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006771# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006772#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006773
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006774static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006775{
6776 if (cpus_weight(sd->span) == 1)
6777 return 1;
6778
6779 /* Following flags need at least 2 groups */
6780 if (sd->flags & (SD_LOAD_BALANCE |
6781 SD_BALANCE_NEWIDLE |
6782 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006783 SD_BALANCE_EXEC |
6784 SD_SHARE_CPUPOWER |
6785 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006786 if (sd->groups != sd->groups->next)
6787 return 0;
6788 }
6789
6790 /* Following flags don't use groups */
6791 if (sd->flags & (SD_WAKE_IDLE |
6792 SD_WAKE_AFFINE |
6793 SD_WAKE_BALANCE))
6794 return 0;
6795
6796 return 1;
6797}
6798
Ingo Molnar48f24c42006-07-03 00:25:40 -07006799static int
6800sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006801{
6802 unsigned long cflags = sd->flags, pflags = parent->flags;
6803
6804 if (sd_degenerate(parent))
6805 return 1;
6806
6807 if (!cpus_equal(sd->span, parent->span))
6808 return 0;
6809
6810 /* Does parent contain flags not in child? */
6811 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6812 if (cflags & SD_WAKE_AFFINE)
6813 pflags &= ~SD_WAKE_BALANCE;
6814 /* Flags needing groups don't count if only 1 group in parent */
6815 if (parent->groups == parent->groups->next) {
6816 pflags &= ~(SD_LOAD_BALANCE |
6817 SD_BALANCE_NEWIDLE |
6818 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006819 SD_BALANCE_EXEC |
6820 SD_SHARE_CPUPOWER |
6821 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006822 }
6823 if (~cflags & pflags)
6824 return 0;
6825
6826 return 1;
6827}
6828
Gregory Haskins57d885f2008-01-25 21:08:18 +01006829static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6830{
6831 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006832
6833 spin_lock_irqsave(&rq->lock, flags);
6834
6835 if (rq->rd) {
6836 struct root_domain *old_rd = rq->rd;
6837
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006838 if (cpu_isset(rq->cpu, old_rd->online))
6839 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006840
Gregory Haskinsdc938522008-01-25 21:08:26 +01006841 cpu_clear(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006842
Gregory Haskins57d885f2008-01-25 21:08:18 +01006843 if (atomic_dec_and_test(&old_rd->refcount))
6844 kfree(old_rd);
6845 }
6846
6847 atomic_inc(&rd->refcount);
6848 rq->rd = rd;
6849
Gregory Haskinsdc938522008-01-25 21:08:26 +01006850 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006851 if (cpu_isset(rq->cpu, cpu_online_map))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006852 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006853
6854 spin_unlock_irqrestore(&rq->lock, flags);
6855}
6856
Gregory Haskinsdc938522008-01-25 21:08:26 +01006857static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006858{
6859 memset(rd, 0, sizeof(*rd));
6860
Gregory Haskinsdc938522008-01-25 21:08:26 +01006861 cpus_clear(rd->span);
6862 cpus_clear(rd->online);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006863
6864 cpupri_init(&rd->cpupri);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006865}
6866
6867static void init_defrootdomain(void)
6868{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006869 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006870 atomic_set(&def_root_domain.refcount, 1);
6871}
6872
Gregory Haskinsdc938522008-01-25 21:08:26 +01006873static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006874{
6875 struct root_domain *rd;
6876
6877 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6878 if (!rd)
6879 return NULL;
6880
Gregory Haskinsdc938522008-01-25 21:08:26 +01006881 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006882
6883 return rd;
6884}
6885
Linus Torvalds1da177e2005-04-16 15:20:36 -07006886/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006887 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888 * hold the hotplug lock.
6889 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006890static void
6891cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006893 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006894 struct sched_domain *tmp;
6895
6896 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08006897 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006898 struct sched_domain *parent = tmp->parent;
6899 if (!parent)
6900 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08006901
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006902 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006903 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006904 if (parent->parent)
6905 parent->parent->child = tmp;
Li Zefanf29c9b12008-11-06 09:45:16 +08006906 } else
6907 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07006908 }
6909
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006910 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006911 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006912 if (sd)
6913 sd->child = NULL;
6914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915
6916 sched_domain_debug(sd, cpu);
6917
Gregory Haskins57d885f2008-01-25 21:08:18 +01006918 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006919 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920}
6921
6922/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006923static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924
6925/* Setup the mask of cpus configured for isolated domains */
6926static int __init isolated_cpu_setup(char *str)
6927{
Mike Travis13b40c12008-07-01 10:32:50 -07006928 static int __initdata ints[NR_CPUS];
6929 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930
6931 str = get_options(str, ARRAY_SIZE(ints), ints);
6932 cpus_clear(cpu_isolated_map);
6933 for (i = 1; i <= ints[0]; i++)
6934 if (ints[i] < NR_CPUS)
6935 cpu_set(ints[i], cpu_isolated_map);
6936 return 1;
6937}
6938
Ingo Molnar8927f492007-10-15 17:00:13 +02006939__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940
6941/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006942 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6943 * to a function which identifies what group(along with sched group) a CPU
6944 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6945 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946 *
6947 * init_sched_build_groups will build a circular linked list of the groups
6948 * covered by the given span, and will set each group's ->cpumask correctly,
6949 * and ->cpu_power to 0.
6950 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006951static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006952init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006953 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006954 struct sched_group **sg,
6955 cpumask_t *tmpmask),
6956 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006957{
6958 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006959 int i;
6960
Mike Travis7c16ec52008-04-04 18:11:11 -07006961 cpus_clear(*covered);
6962
Mike Travis363ab6f2008-05-12 21:21:13 +02006963 for_each_cpu_mask_nr(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006964 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006965 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966 int j;
6967
Mike Travis7c16ec52008-04-04 18:11:11 -07006968 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006969 continue;
6970
Mike Travis7c16ec52008-04-04 18:11:11 -07006971 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006972 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006973
Mike Travis363ab6f2008-05-12 21:21:13 +02006974 for_each_cpu_mask_nr(j, *span) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006975 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006976 continue;
6977
Mike Travis7c16ec52008-04-04 18:11:11 -07006978 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979 cpu_set(j, sg->cpumask);
6980 }
6981 if (!first)
6982 first = sg;
6983 if (last)
6984 last->next = sg;
6985 last = sg;
6986 }
6987 last->next = first;
6988}
6989
John Hawkes9c1cfda2005-09-06 15:18:14 -07006990#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991
John Hawkes9c1cfda2005-09-06 15:18:14 -07006992#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006993
John Hawkes9c1cfda2005-09-06 15:18:14 -07006994/**
6995 * find_next_best_node - find the next node to include in a sched_domain
6996 * @node: node whose sched_domain we're building
6997 * @used_nodes: nodes already in the sched_domain
6998 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006999 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07007000 * finds the closest node not already in the @used_nodes map.
7001 *
7002 * Should use nodemask_t.
7003 */
Mike Travisc5f59f02008-04-04 18:11:10 -07007004static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007005{
7006 int i, n, val, min_val, best_node = 0;
7007
7008 min_val = INT_MAX;
7009
Mike Travis076ac2a2008-05-12 21:21:12 +02007010 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007011 /* Start at @node */
Mike Travis076ac2a2008-05-12 21:21:12 +02007012 n = (node + i) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007013
7014 if (!nr_cpus_node(n))
7015 continue;
7016
7017 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07007018 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007019 continue;
7020
7021 /* Simple min distance search */
7022 val = node_distance(node, n);
7023
7024 if (val < min_val) {
7025 min_val = val;
7026 best_node = n;
7027 }
7028 }
7029
Mike Travisc5f59f02008-04-04 18:11:10 -07007030 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007031 return best_node;
7032}
7033
7034/**
7035 * sched_domain_node_span - get a cpumask for a node's sched_domain
7036 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07007037 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07007038 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007039 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07007040 * should be one that prevents unnecessary balancing, but also spreads tasks
7041 * out optimally.
7042 */
Mike Travis4bdbaad32008-04-15 16:35:52 -07007043static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007044{
Mike Travisc5f59f02008-04-04 18:11:10 -07007045 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07007046 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007047 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007048
Mike Travis4bdbaad32008-04-15 16:35:52 -07007049 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07007050 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007051
Mike Travis4bdbaad32008-04-15 16:35:52 -07007052 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07007053 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007054
7055 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07007056 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007057
Mike Travisc5f59f02008-04-04 18:11:10 -07007058 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007059 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007060 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007061}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007062#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007063
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007064int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007065
John Hawkes9c1cfda2005-09-06 15:18:14 -07007066/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07007067 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07007068 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069#ifdef CONFIG_SCHED_SMT
7070static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007071static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007072
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007073static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007074cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7075 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007076{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007077 if (sg)
7078 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079 return cpu;
7080}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007081#endif /* CONFIG_SCHED_SMT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082
Ingo Molnar48f24c42006-07-03 00:25:40 -07007083/*
7084 * multi-core sched-domains:
7085 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007086#ifdef CONFIG_SCHED_MC
7087static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007088static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007089#endif /* CONFIG_SCHED_MC */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007090
7091#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007092static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007093cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7094 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007095{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007096 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07007097
7098 *mask = per_cpu(cpu_sibling_map, cpu);
7099 cpus_and(*mask, *mask, *cpu_map);
7100 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007101 if (sg)
7102 *sg = &per_cpu(sched_group_core, group);
7103 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007104}
7105#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007106static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007107cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7108 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007109{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007110 if (sg)
7111 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007112 return cpu;
7113}
7114#endif
7115
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007117static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007118
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007119static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007120cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7121 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007123 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007124#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07007125 *mask = cpu_coregroup_map(cpu);
7126 cpus_and(*mask, *mask, *cpu_map);
7127 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007128#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07007129 *mask = per_cpu(cpu_sibling_map, cpu);
7130 cpus_and(*mask, *mask, *cpu_map);
7131 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007133 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007134#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007135 if (sg)
7136 *sg = &per_cpu(sched_group_phys, group);
7137 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138}
7139
7140#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07007141/*
7142 * The init_sched_build_groups can't handle what we want to do with node
7143 * groups, so roll our own. Now each node has its own list of groups which
7144 * gets dynamically allocated.
7145 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007146static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07007147static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007148
7149static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007150static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007151
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007152static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007153 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007154{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007155 int group;
7156
Mike Travis7c16ec52008-04-04 18:11:11 -07007157 *nodemask = node_to_cpumask(cpu_to_node(cpu));
7158 cpus_and(*nodemask, *nodemask, *cpu_map);
7159 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007160
7161 if (sg)
7162 *sg = &per_cpu(sched_group_allnodes, group);
7163 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007164}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007165
Siddha, Suresh B08069032006-03-27 01:15:23 -08007166static void init_numa_sched_groups_power(struct sched_group *group_head)
7167{
7168 struct sched_group *sg = group_head;
7169 int j;
7170
7171 if (!sg)
7172 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007173 do {
Mike Travis363ab6f2008-05-12 21:21:13 +02007174 for_each_cpu_mask_nr(j, sg->cpumask) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02007175 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007176
Andi Kleen3a5c3592007-10-15 17:00:14 +02007177 sd = &per_cpu(phys_domains, j);
7178 if (j != first_cpu(sd->groups->cpumask)) {
7179 /*
7180 * Only add "power" once for each
7181 * physical package.
7182 */
7183 continue;
7184 }
7185
7186 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007187 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007188 sg = sg->next;
7189 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007190}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007191#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007192
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007193#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007194/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07007195static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007196{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007197 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007198
Mike Travis363ab6f2008-05-12 21:21:13 +02007199 for_each_cpu_mask_nr(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007200 struct sched_group **sched_group_nodes
7201 = sched_group_nodes_bycpu[cpu];
7202
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007203 if (!sched_group_nodes)
7204 continue;
7205
Mike Travis076ac2a2008-05-12 21:21:12 +02007206 for (i = 0; i < nr_node_ids; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007207 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7208
Mike Travis7c16ec52008-04-04 18:11:11 -07007209 *nodemask = node_to_cpumask(i);
7210 cpus_and(*nodemask, *nodemask, *cpu_map);
7211 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007212 continue;
7213
7214 if (sg == NULL)
7215 continue;
7216 sg = sg->next;
7217next_sg:
7218 oldsg = sg;
7219 sg = sg->next;
7220 kfree(oldsg);
7221 if (oldsg != sched_group_nodes[i])
7222 goto next_sg;
7223 }
7224 kfree(sched_group_nodes);
7225 sched_group_nodes_bycpu[cpu] = NULL;
7226 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007227}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007228#else /* !CONFIG_NUMA */
Mike Travis7c16ec52008-04-04 18:11:11 -07007229static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007230{
7231}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007232#endif /* CONFIG_NUMA */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007233
Linus Torvalds1da177e2005-04-16 15:20:36 -07007234/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007235 * Initialize sched groups cpu_power.
7236 *
7237 * cpu_power indicates the capacity of sched group, which is used while
7238 * distributing the load between different sched groups in a sched domain.
7239 * Typically cpu_power for all the groups in a sched domain will be same unless
7240 * there are asymmetries in the topology. If there are asymmetries, group
7241 * having more cpu_power will pickup more load compared to the group having
7242 * less cpu_power.
7243 *
7244 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7245 * the maximum number of tasks a group can handle in the presence of other idle
7246 * or lightly loaded groups in the same sched domain.
7247 */
7248static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7249{
7250 struct sched_domain *child;
7251 struct sched_group *group;
7252
7253 WARN_ON(!sd || !sd->groups);
7254
7255 if (cpu != first_cpu(sd->groups->cpumask))
7256 return;
7257
7258 child = sd->child;
7259
Eric Dumazet5517d862007-05-08 00:32:57 -07007260 sd->groups->__cpu_power = 0;
7261
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007262 /*
7263 * For perf policy, if the groups in child domain share resources
7264 * (for example cores sharing some portions of the cache hierarchy
7265 * or SMT), then set this domain groups cpu_power such that each group
7266 * can handle only one task, when there are other idle groups in the
7267 * same sched domain.
7268 */
7269 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7270 (child->flags &
7271 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007272 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007273 return;
7274 }
7275
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007276 /*
7277 * add cpu_power of each child group to this groups cpu_power
7278 */
7279 group = child->groups;
7280 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007281 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007282 group = group->next;
7283 } while (group != child->groups);
7284}
7285
7286/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007287 * Initializers for schedule domains
7288 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7289 */
7290
Ingo Molnara5d8c342008-10-09 11:35:51 +02007291#ifdef CONFIG_SCHED_DEBUG
7292# define SD_INIT_NAME(sd, type) sd->name = #type
7293#else
7294# define SD_INIT_NAME(sd, type) do { } while (0)
7295#endif
7296
Mike Travis7c16ec52008-04-04 18:11:11 -07007297#define SD_INIT(sd, type) sd_init_##type(sd)
Ingo Molnara5d8c342008-10-09 11:35:51 +02007298
Mike Travis7c16ec52008-04-04 18:11:11 -07007299#define SD_INIT_FUNC(type) \
7300static noinline void sd_init_##type(struct sched_domain *sd) \
7301{ \
7302 memset(sd, 0, sizeof(*sd)); \
7303 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007304 sd->level = SD_LV_##type; \
Ingo Molnara5d8c342008-10-09 11:35:51 +02007305 SD_INIT_NAME(sd, type); \
Mike Travis7c16ec52008-04-04 18:11:11 -07007306}
7307
7308SD_INIT_FUNC(CPU)
7309#ifdef CONFIG_NUMA
7310 SD_INIT_FUNC(ALLNODES)
7311 SD_INIT_FUNC(NODE)
7312#endif
7313#ifdef CONFIG_SCHED_SMT
7314 SD_INIT_FUNC(SIBLING)
7315#endif
7316#ifdef CONFIG_SCHED_MC
7317 SD_INIT_FUNC(MC)
7318#endif
7319
7320/*
7321 * To minimize stack usage kmalloc room for cpumasks and share the
7322 * space as the usage in build_sched_domains() dictates. Used only
7323 * if the amount of space is significant.
7324 */
7325struct allmasks {
7326 cpumask_t tmpmask; /* make this one first */
7327 union {
7328 cpumask_t nodemask;
7329 cpumask_t this_sibling_map;
7330 cpumask_t this_core_map;
7331 };
7332 cpumask_t send_covered;
7333
7334#ifdef CONFIG_NUMA
7335 cpumask_t domainspan;
7336 cpumask_t covered;
7337 cpumask_t notcovered;
7338#endif
7339};
7340
7341#if NR_CPUS > 128
7342#define SCHED_CPUMASK_ALLOC 1
7343#define SCHED_CPUMASK_FREE(v) kfree(v)
7344#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
7345#else
7346#define SCHED_CPUMASK_ALLOC 0
7347#define SCHED_CPUMASK_FREE(v)
7348#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
7349#endif
7350
7351#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
7352 ((unsigned long)(a) + offsetof(struct allmasks, v))
7353
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007354static int default_relax_domain_level = -1;
7355
7356static int __init setup_relax_domain_level(char *str)
7357{
Li Zefan30e0e172008-05-13 10:27:17 +08007358 unsigned long val;
7359
7360 val = simple_strtoul(str, NULL, 0);
7361 if (val < SD_LV_MAX)
7362 default_relax_domain_level = val;
7363
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007364 return 1;
7365}
7366__setup("relax_domain_level=", setup_relax_domain_level);
7367
7368static void set_domain_attribute(struct sched_domain *sd,
7369 struct sched_domain_attr *attr)
7370{
7371 int request;
7372
7373 if (!attr || attr->relax_domain_level < 0) {
7374 if (default_relax_domain_level < 0)
7375 return;
7376 else
7377 request = default_relax_domain_level;
7378 } else
7379 request = attr->relax_domain_level;
7380 if (request < sd->level) {
7381 /* turn off idle balance on this domain */
7382 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7383 } else {
7384 /* turn on idle balance on this domain */
7385 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7386 }
7387}
7388
Mike Travis7c16ec52008-04-04 18:11:11 -07007389/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007390 * Build sched domains for a given set of cpus and attach the sched domains
7391 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007392 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007393static int __build_sched_domains(const cpumask_t *cpu_map,
7394 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007395{
7396 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007397 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007398 SCHED_CPUMASK_DECLARE(allmasks);
7399 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007400#ifdef CONFIG_NUMA
7401 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007402 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007403
7404 /*
7405 * Allocate the per-node list of sched groups
7406 */
Mike Travis076ac2a2008-05-12 21:21:12 +02007407 sched_group_nodes = kcalloc(nr_node_ids, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007408 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007409 if (!sched_group_nodes) {
7410 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007411 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07007412 }
John Hawkesd1b55132005-09-06 15:18:14 -07007413#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007414
Gregory Haskinsdc938522008-01-25 21:08:26 +01007415 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007416 if (!rd) {
7417 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07007418#ifdef CONFIG_NUMA
7419 kfree(sched_group_nodes);
7420#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007421 return -ENOMEM;
7422 }
7423
Mike Travis7c16ec52008-04-04 18:11:11 -07007424#if SCHED_CPUMASK_ALLOC
7425 /* get space for all scratch cpumask variables */
7426 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7427 if (!allmasks) {
7428 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7429 kfree(rd);
7430#ifdef CONFIG_NUMA
7431 kfree(sched_group_nodes);
7432#endif
7433 return -ENOMEM;
7434 }
7435#endif
7436 tmpmask = (cpumask_t *)allmasks;
7437
7438
7439#ifdef CONFIG_NUMA
7440 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7441#endif
7442
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007444 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445 */
Mike Travis363ab6f2008-05-12 21:21:13 +02007446 for_each_cpu_mask_nr(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07007448 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449
Mike Travis7c16ec52008-04-04 18:11:11 -07007450 *nodemask = node_to_cpumask(cpu_to_node(i));
7451 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452
7453#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02007454 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07007455 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007456 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007457 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007458 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007459 sd->span = *cpu_map;
Mike Travis7c16ec52008-04-04 18:11:11 -07007460 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007461 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007462 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007463 } else
7464 p = NULL;
7465
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007467 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007468 set_domain_attribute(sd, attr);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007469 sched_domain_node_span(cpu_to_node(i), &sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007470 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007471 if (p)
7472 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007473 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474#endif
7475
7476 p = sd;
7477 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007478 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007479 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007480 sd->span = *nodemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007482 if (p)
7483 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007484 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007485
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007486#ifdef CONFIG_SCHED_MC
7487 p = sd;
7488 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007489 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007490 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007491 sd->span = cpu_coregroup_map(i);
7492 cpus_and(sd->span, sd->span, *cpu_map);
7493 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007494 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007495 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007496#endif
7497
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498#ifdef CONFIG_SCHED_SMT
7499 p = sd;
7500 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007501 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007502 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007503 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007504 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007505 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007506 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007507 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508#endif
7509 }
7510
7511#ifdef CONFIG_SCHED_SMT
7512 /* Set up CPU (sibling) groups */
Mike Travis363ab6f2008-05-12 21:21:13 +02007513 for_each_cpu_mask_nr(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007514 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7515 SCHED_CPUMASK_VAR(send_covered, allmasks);
7516
7517 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7518 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7519 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007520 continue;
7521
Ingo Molnardd41f592007-07-09 18:51:59 +02007522 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007523 &cpu_to_cpu_group,
7524 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007525 }
7526#endif
7527
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007528#ifdef CONFIG_SCHED_MC
7529 /* Set up multi-core groups */
Mike Travis363ab6f2008-05-12 21:21:13 +02007530 for_each_cpu_mask_nr(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007531 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7532 SCHED_CPUMASK_VAR(send_covered, allmasks);
7533
7534 *this_core_map = cpu_coregroup_map(i);
7535 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7536 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007537 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007538
Ingo Molnardd41f592007-07-09 18:51:59 +02007539 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007540 &cpu_to_core_group,
7541 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007542 }
7543#endif
7544
Linus Torvalds1da177e2005-04-16 15:20:36 -07007545 /* Set up physical groups */
Mike Travis076ac2a2008-05-12 21:21:12 +02007546 for (i = 0; i < nr_node_ids; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007547 SCHED_CPUMASK_VAR(nodemask, allmasks);
7548 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007549
Mike Travis7c16ec52008-04-04 18:11:11 -07007550 *nodemask = node_to_cpumask(i);
7551 cpus_and(*nodemask, *nodemask, *cpu_map);
7552 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007553 continue;
7554
Mike Travis7c16ec52008-04-04 18:11:11 -07007555 init_sched_build_groups(nodemask, cpu_map,
7556 &cpu_to_phys_group,
7557 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007558 }
7559
7560#ifdef CONFIG_NUMA
7561 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007562 if (sd_allnodes) {
7563 SCHED_CPUMASK_VAR(send_covered, allmasks);
7564
7565 init_sched_build_groups(cpu_map, cpu_map,
7566 &cpu_to_allnodes_group,
7567 send_covered, tmpmask);
7568 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007569
Mike Travis076ac2a2008-05-12 21:21:12 +02007570 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007571 /* Set up node groups */
7572 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007573 SCHED_CPUMASK_VAR(nodemask, allmasks);
7574 SCHED_CPUMASK_VAR(domainspan, allmasks);
7575 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007576 int j;
7577
Mike Travis7c16ec52008-04-04 18:11:11 -07007578 *nodemask = node_to_cpumask(i);
7579 cpus_clear(*covered);
7580
7581 cpus_and(*nodemask, *nodemask, *cpu_map);
7582 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007583 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007584 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007585 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007586
Mike Travis4bdbaad32008-04-15 16:35:52 -07007587 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007588 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007589
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007590 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007591 if (!sg) {
7592 printk(KERN_WARNING "Can not alloc domain group for "
7593 "node %d\n", i);
7594 goto error;
7595 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007596 sched_group_nodes[i] = sg;
Mike Travis363ab6f2008-05-12 21:21:13 +02007597 for_each_cpu_mask_nr(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007598 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007599
John Hawkes9c1cfda2005-09-06 15:18:14 -07007600 sd = &per_cpu(node_domains, j);
7601 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007602 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007603 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007604 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007605 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007606 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007607 prev = sg;
7608
Mike Travis076ac2a2008-05-12 21:21:12 +02007609 for (j = 0; j < nr_node_ids; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007610 SCHED_CPUMASK_VAR(notcovered, allmasks);
Mike Travis076ac2a2008-05-12 21:21:12 +02007611 int n = (i + j) % nr_node_ids;
Mike Travisc5f59f02008-04-04 18:11:10 -07007612 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007613
Mike Travis7c16ec52008-04-04 18:11:11 -07007614 cpus_complement(*notcovered, *covered);
7615 cpus_and(*tmpmask, *notcovered, *cpu_map);
7616 cpus_and(*tmpmask, *tmpmask, *domainspan);
7617 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007618 break;
7619
Mike Travis7c16ec52008-04-04 18:11:11 -07007620 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7621 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007622 continue;
7623
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007624 sg = kmalloc_node(sizeof(struct sched_group),
7625 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007626 if (!sg) {
7627 printk(KERN_WARNING
7628 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007629 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007630 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007631 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007632 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007633 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007634 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007635 prev->next = sg;
7636 prev = sg;
7637 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639#endif
7640
7641 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007642#ifdef CONFIG_SCHED_SMT
Mike Travis363ab6f2008-05-12 21:21:13 +02007643 for_each_cpu_mask_nr(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007644 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7645
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007646 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007647 }
7648#endif
7649#ifdef CONFIG_SCHED_MC
Mike Travis363ab6f2008-05-12 21:21:13 +02007650 for_each_cpu_mask_nr(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007651 struct sched_domain *sd = &per_cpu(core_domains, i);
7652
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007653 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007654 }
7655#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656
Mike Travis363ab6f2008-05-12 21:21:13 +02007657 for_each_cpu_mask_nr(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007658 struct sched_domain *sd = &per_cpu(phys_domains, i);
7659
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007660 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007661 }
7662
John Hawkes9c1cfda2005-09-06 15:18:14 -07007663#ifdef CONFIG_NUMA
Mike Travis076ac2a2008-05-12 21:21:12 +02007664 for (i = 0; i < nr_node_ids; i++)
Siddha, Suresh B08069032006-03-27 01:15:23 -08007665 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007666
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007667 if (sd_allnodes) {
7668 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007669
Mike Travis7c16ec52008-04-04 18:11:11 -07007670 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7671 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007672 init_numa_sched_groups_power(sg);
7673 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007674#endif
7675
Linus Torvalds1da177e2005-04-16 15:20:36 -07007676 /* Attach the domains */
Mike Travis363ab6f2008-05-12 21:21:13 +02007677 for_each_cpu_mask_nr(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007678 struct sched_domain *sd;
7679#ifdef CONFIG_SCHED_SMT
7680 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007681#elif defined(CONFIG_SCHED_MC)
7682 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683#else
7684 sd = &per_cpu(phys_domains, i);
7685#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007686 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007687 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007688
Mike Travis7c16ec52008-04-04 18:11:11 -07007689 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007690 return 0;
7691
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007692#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007693error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007694 free_sched_groups(cpu_map, tmpmask);
7695 SCHED_CPUMASK_FREE((void *)allmasks);
Li Zefanca3273f92008-11-07 14:47:21 +08007696 kfree(rd);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007697 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007698#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699}
Paul Jackson029190c2007-10-18 23:40:20 -07007700
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007701static int build_sched_domains(const cpumask_t *cpu_map)
7702{
7703 return __build_sched_domains(cpu_map, NULL);
7704}
7705
Paul Jackson029190c2007-10-18 23:40:20 -07007706static cpumask_t *doms_cur; /* current sched domains */
7707static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007708static struct sched_domain_attr *dattr_cur;
7709 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007710
7711/*
7712 * Special case: If a kmalloc of a doms_cur partition (array of
7713 * cpumask_t) fails, then fallback to a single sched domain,
7714 * as determined by the single cpumask_t fallback_doms.
7715 */
7716static cpumask_t fallback_doms;
7717
Heiko Carstens22e52b02008-03-12 18:31:59 +01007718void __attribute__((weak)) arch_update_cpu_topology(void)
7719{
7720}
7721
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007722/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007723 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007724 * For now this just excludes isolated cpus, but could be used to
7725 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007726 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007727static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007728{
Milton Miller73785472007-10-24 18:23:48 +02007729 int err;
7730
Heiko Carstens22e52b02008-03-12 18:31:59 +01007731 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007732 ndoms_cur = 1;
7733 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7734 if (!doms_cur)
7735 doms_cur = &fallback_doms;
7736 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007737 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007738 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007739 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007740
7741 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007742}
7743
Mike Travis7c16ec52008-04-04 18:11:11 -07007744static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7745 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007746{
Mike Travis7c16ec52008-04-04 18:11:11 -07007747 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007748}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007749
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007750/*
7751 * Detach sched domains from a group of cpus specified in cpu_map
7752 * These cpus will now be attached to the NULL domain
7753 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007754static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007755{
Mike Travis7c16ec52008-04-04 18:11:11 -07007756 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007757 int i;
7758
Milton Miller6382bc92007-10-15 17:00:19 +02007759 unregister_sched_domain_sysctl();
7760
Mike Travis363ab6f2008-05-12 21:21:13 +02007761 for_each_cpu_mask_nr(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007762 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007763 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007764 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007765}
7766
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007767/* handle null as "default" */
7768static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7769 struct sched_domain_attr *new, int idx_new)
7770{
7771 struct sched_domain_attr tmp;
7772
7773 /* fast path */
7774 if (!new && !cur)
7775 return 1;
7776
7777 tmp = SD_ATTR_INIT;
7778 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7779 new ? (new + idx_new) : &tmp,
7780 sizeof(struct sched_domain_attr));
7781}
7782
Paul Jackson029190c2007-10-18 23:40:20 -07007783/*
7784 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007785 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007786 * doms_new[] to the current sched domain partitioning, doms_cur[].
7787 * It destroys each deleted domain and builds each new domain.
7788 *
7789 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007790 * The masks don't intersect (don't overlap.) We should setup one
7791 * sched domain for each mask. CPUs not in any of the cpumasks will
7792 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007793 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7794 * it as it is.
7795 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007796 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7797 * ownership of it and will kfree it when done with it. If the caller
Li Zefan700018e2008-11-18 14:02:03 +08007798 * failed the kmalloc call, then it can pass in doms_new == NULL &&
7799 * ndoms_new == 1, and partition_sched_domains() will fallback to
7800 * the single partition 'fallback_doms', it also forces the domains
7801 * to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07007802 *
Li Zefan700018e2008-11-18 14:02:03 +08007803 * If doms_new == NULL it will be replaced with cpu_online_map.
7804 * ndoms_new == 0 is a special case for destroying existing domains,
7805 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007806 *
Paul Jackson029190c2007-10-18 23:40:20 -07007807 * Call with hotplug lock held
7808 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007809void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7810 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007811{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007812 int i, j, n;
Paul Jackson029190c2007-10-18 23:40:20 -07007813
Heiko Carstens712555e2008-04-28 11:33:07 +02007814 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007815
Milton Miller73785472007-10-24 18:23:48 +02007816 /* always unregister in case we don't destroy any domains */
7817 unregister_sched_domain_sysctl();
7818
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007819 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07007820
7821 /* Destroy deleted domains */
7822 for (i = 0; i < ndoms_cur; i++) {
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007823 for (j = 0; j < n; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007824 if (cpus_equal(doms_cur[i], doms_new[j])
7825 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007826 goto match1;
7827 }
7828 /* no match - a current sched domain not in new doms_new[] */
7829 detach_destroy_domains(doms_cur + i);
7830match1:
7831 ;
7832 }
7833
Max Krasnyanskye761b772008-07-15 04:43:49 -07007834 if (doms_new == NULL) {
7835 ndoms_cur = 0;
Max Krasnyanskye761b772008-07-15 04:43:49 -07007836 doms_new = &fallback_doms;
7837 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
7838 dattr_new = NULL;
7839 }
7840
Paul Jackson029190c2007-10-18 23:40:20 -07007841 /* Build new domains */
7842 for (i = 0; i < ndoms_new; i++) {
7843 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007844 if (cpus_equal(doms_new[i], doms_cur[j])
7845 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007846 goto match2;
7847 }
7848 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007849 __build_sched_domains(doms_new + i,
7850 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007851match2:
7852 ;
7853 }
7854
7855 /* Remember the new sched domains */
7856 if (doms_cur != &fallback_doms)
7857 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007858 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007859 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007860 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007861 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007862
7863 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007864
Heiko Carstens712555e2008-04-28 11:33:07 +02007865 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007866}
7867
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007868#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007869int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007870{
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007871 get_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007872
7873 /* Destroy domains first to force the rebuild */
7874 partition_sched_domains(0, NULL, NULL);
7875
Max Krasnyanskye761b772008-07-15 04:43:49 -07007876 rebuild_sched_domains();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007877 put_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007878
Max Krasnyanskye761b772008-07-15 04:43:49 -07007879 return 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007880}
7881
7882static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7883{
7884 int ret;
7885
7886 if (buf[0] != '0' && buf[0] != '1')
7887 return -EINVAL;
7888
7889 if (smt)
7890 sched_smt_power_savings = (buf[0] == '1');
7891 else
7892 sched_mc_power_savings = (buf[0] == '1');
7893
7894 ret = arch_reinit_sched_domains();
7895
7896 return ret ? ret : count;
7897}
7898
Adrian Bunk6707de002007-08-12 18:08:19 +02007899#ifdef CONFIG_SCHED_MC
Andi Kleenf718cd42008-07-29 22:33:52 -07007900static ssize_t sched_mc_power_savings_show(struct sysdev_class *class,
7901 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007902{
7903 return sprintf(page, "%u\n", sched_mc_power_savings);
7904}
Andi Kleenf718cd42008-07-29 22:33:52 -07007905static ssize_t sched_mc_power_savings_store(struct sysdev_class *class,
Adrian Bunk6707de002007-08-12 18:08:19 +02007906 const char *buf, size_t count)
7907{
7908 return sched_power_savings_store(buf, count, 0);
7909}
Andi Kleenf718cd42008-07-29 22:33:52 -07007910static SYSDEV_CLASS_ATTR(sched_mc_power_savings, 0644,
7911 sched_mc_power_savings_show,
7912 sched_mc_power_savings_store);
Adrian Bunk6707de002007-08-12 18:08:19 +02007913#endif
7914
7915#ifdef CONFIG_SCHED_SMT
Andi Kleenf718cd42008-07-29 22:33:52 -07007916static ssize_t sched_smt_power_savings_show(struct sysdev_class *dev,
7917 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007918{
7919 return sprintf(page, "%u\n", sched_smt_power_savings);
7920}
Andi Kleenf718cd42008-07-29 22:33:52 -07007921static ssize_t sched_smt_power_savings_store(struct sysdev_class *dev,
Adrian Bunk6707de002007-08-12 18:08:19 +02007922 const char *buf, size_t count)
7923{
7924 return sched_power_savings_store(buf, count, 1);
7925}
Andi Kleenf718cd42008-07-29 22:33:52 -07007926static SYSDEV_CLASS_ATTR(sched_smt_power_savings, 0644,
7927 sched_smt_power_savings_show,
Adrian Bunk6707de002007-08-12 18:08:19 +02007928 sched_smt_power_savings_store);
7929#endif
7930
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007931int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7932{
7933 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007934
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007935#ifdef CONFIG_SCHED_SMT
7936 if (smt_capable())
7937 err = sysfs_create_file(&cls->kset.kobj,
7938 &attr_sched_smt_power_savings.attr);
7939#endif
7940#ifdef CONFIG_SCHED_MC
7941 if (!err && mc_capable())
7942 err = sysfs_create_file(&cls->kset.kobj,
7943 &attr_sched_mc_power_savings.attr);
7944#endif
7945 return err;
7946}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007947#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007948
Max Krasnyanskye761b772008-07-15 04:43:49 -07007949#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07007950/*
Max Krasnyanskye761b772008-07-15 04:43:49 -07007951 * Add online and remove offline CPUs from the scheduler domains.
7952 * When cpusets are enabled they take over this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953 */
7954static int update_sched_domains(struct notifier_block *nfb,
7955 unsigned long action, void *hcpu)
7956{
Max Krasnyanskye761b772008-07-15 04:43:49 -07007957 switch (action) {
7958 case CPU_ONLINE:
7959 case CPU_ONLINE_FROZEN:
7960 case CPU_DEAD:
7961 case CPU_DEAD_FROZEN:
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007962 partition_sched_domains(1, NULL, NULL);
Max Krasnyanskye761b772008-07-15 04:43:49 -07007963 return NOTIFY_OK;
7964
7965 default:
7966 return NOTIFY_DONE;
7967 }
7968}
7969#endif
7970
7971static int update_runtime(struct notifier_block *nfb,
7972 unsigned long action, void *hcpu)
7973{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007974 int cpu = (int)(long)hcpu;
7975
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007977 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007978 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007979 disable_runtime(cpu_rq(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007980 return NOTIFY_OK;
7981
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007983 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007985 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007986 enable_runtime(cpu_rq(cpu));
Max Krasnyanskye761b772008-07-15 04:43:49 -07007987 return NOTIFY_OK;
7988
Linus Torvalds1da177e2005-04-16 15:20:36 -07007989 default:
7990 return NOTIFY_DONE;
7991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007992}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007993
7994void __init sched_init_smp(void)
7995{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007996 cpumask_t non_isolated_cpus;
7997
Mike Travis434d53b2008-04-04 18:11:04 -07007998#if defined(CONFIG_NUMA)
7999 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
8000 GFP_KERNEL);
8001 BUG_ON(sched_group_nodes_bycpu == NULL);
8002#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008003 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02008004 mutex_lock(&sched_domains_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008005 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08008006 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07008007 if (cpus_empty(non_isolated_cpus))
8008 cpu_set(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02008009 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008010 put_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07008011
8012#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07008013 /* XXX: Theoretical race here - CPU may be hotplugged now */
8014 hotcpu_notifier(update_sched_domains, 0);
Max Krasnyanskye761b772008-07-15 04:43:49 -07008015#endif
8016
8017 /* RT runtime code needs to handle some hotplug events */
8018 hotcpu_notifier(update_runtime, 0);
8019
Peter Zijlstrab328ca12008-04-29 10:02:46 +02008020 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07008021
8022 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07008023 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07008024 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01008025 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008026}
8027#else
8028void __init sched_init_smp(void)
8029{
Ingo Molnar19978ca2007-11-09 22:39:38 +01008030 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031}
8032#endif /* CONFIG_SMP */
8033
8034int in_sched_functions(unsigned long addr)
8035{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008036 return in_lock_functions(addr) ||
8037 (addr >= (unsigned long)__sched_text_start
8038 && addr < (unsigned long)__sched_text_end);
8039}
8040
Alexey Dobriyana9957442007-10-15 17:00:13 +02008041static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02008042{
8043 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02008044 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02008045#ifdef CONFIG_FAIR_GROUP_SCHED
8046 cfs_rq->rq = rq;
8047#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02008048 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02008049}
8050
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008051static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
8052{
8053 struct rt_prio_array *array;
8054 int i;
8055
8056 array = &rt_rq->active;
8057 for (i = 0; i < MAX_RT_PRIO; i++) {
8058 INIT_LIST_HEAD(array->queue + i);
8059 __clear_bit(i, array->bitmap);
8060 }
8061 /* delimiter for bitsearch: */
8062 __set_bit(MAX_RT_PRIO, array->bitmap);
8063
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008064#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01008065 rt_rq->highest_prio = MAX_RT_PRIO;
8066#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008067#ifdef CONFIG_SMP
8068 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008069 rt_rq->overloaded = 0;
8070#endif
8071
8072 rt_rq->rt_time = 0;
8073 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008074 rt_rq->rt_runtime = 0;
8075 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008076
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008077#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01008078 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008079 rt_rq->rq = rq;
8080#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008081}
8082
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008083#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008084static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
8085 struct sched_entity *se, int cpu, int add,
8086 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008087{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008088 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008089 tg->cfs_rq[cpu] = cfs_rq;
8090 init_cfs_rq(cfs_rq, rq);
8091 cfs_rq->tg = tg;
8092 if (add)
8093 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
8094
8095 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008096 /* se could be NULL for init_task_group */
8097 if (!se)
8098 return;
8099
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008100 if (!parent)
8101 se->cfs_rq = &rq->cfs;
8102 else
8103 se->cfs_rq = parent->my_q;
8104
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008105 se->my_q = cfs_rq;
8106 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008107 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008108 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008109}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008110#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008111
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008112#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008113static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
8114 struct sched_rt_entity *rt_se, int cpu, int add,
8115 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008116{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008117 struct rq *rq = cpu_rq(cpu);
8118
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008119 tg->rt_rq[cpu] = rt_rq;
8120 init_rt_rq(rt_rq, rq);
8121 rt_rq->tg = tg;
8122 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008123 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008124 if (add)
8125 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
8126
8127 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008128 if (!rt_se)
8129 return;
8130
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008131 if (!parent)
8132 rt_se->rt_rq = &rq->rt;
8133 else
8134 rt_se->rt_rq = parent->my_q;
8135
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008136 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008137 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008138 INIT_LIST_HEAD(&rt_se->run_list);
8139}
8140#endif
8141
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142void __init sched_init(void)
8143{
Ingo Molnardd41f592007-07-09 18:51:59 +02008144 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008145 unsigned long alloc_size = 0, ptr;
8146
8147#ifdef CONFIG_FAIR_GROUP_SCHED
8148 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8149#endif
8150#ifdef CONFIG_RT_GROUP_SCHED
8151 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8152#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008153#ifdef CONFIG_USER_SCHED
8154 alloc_size *= 2;
8155#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008156 /*
8157 * As sched_init() is called before page_alloc is setup,
8158 * we use alloc_bootmem().
8159 */
8160 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07008161 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07008162
8163#ifdef CONFIG_FAIR_GROUP_SCHED
8164 init_task_group.se = (struct sched_entity **)ptr;
8165 ptr += nr_cpu_ids * sizeof(void **);
8166
8167 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8168 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008169
8170#ifdef CONFIG_USER_SCHED
8171 root_task_group.se = (struct sched_entity **)ptr;
8172 ptr += nr_cpu_ids * sizeof(void **);
8173
8174 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8175 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008176#endif /* CONFIG_USER_SCHED */
8177#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008178#ifdef CONFIG_RT_GROUP_SCHED
8179 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8180 ptr += nr_cpu_ids * sizeof(void **);
8181
8182 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008183 ptr += nr_cpu_ids * sizeof(void **);
8184
8185#ifdef CONFIG_USER_SCHED
8186 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8187 ptr += nr_cpu_ids * sizeof(void **);
8188
8189 root_task_group.rt_rq = (struct rt_rq **)ptr;
8190 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008191#endif /* CONFIG_USER_SCHED */
8192#endif /* CONFIG_RT_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008193 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008194
Gregory Haskins57d885f2008-01-25 21:08:18 +01008195#ifdef CONFIG_SMP
8196 init_defrootdomain();
8197#endif
8198
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008199 init_rt_bandwidth(&def_rt_bandwidth,
8200 global_rt_period(), global_rt_runtime());
8201
8202#ifdef CONFIG_RT_GROUP_SCHED
8203 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8204 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008205#ifdef CONFIG_USER_SCHED
8206 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8207 global_rt_period(), RUNTIME_INF);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008208#endif /* CONFIG_USER_SCHED */
8209#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008210
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008211#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008212 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008213 INIT_LIST_HEAD(&init_task_group.children);
8214
8215#ifdef CONFIG_USER_SCHED
8216 INIT_LIST_HEAD(&root_task_group.children);
8217 init_task_group.parent = &root_task_group;
8218 list_add(&init_task_group.siblings, &root_task_group.children);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008219#endif /* CONFIG_USER_SCHED */
8220#endif /* CONFIG_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008221
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008222 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008223 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224
8225 rq = cpu_rq(i);
8226 spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07008227 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008228 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008229 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008230#ifdef CONFIG_FAIR_GROUP_SCHED
8231 init_task_group.shares = init_task_group_load;
8232 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008233#ifdef CONFIG_CGROUP_SCHED
8234 /*
8235 * How much cpu bandwidth does init_task_group get?
8236 *
8237 * In case of task-groups formed thr' the cgroup filesystem, it
8238 * gets 100% of the cpu resources in the system. This overall
8239 * system cpu resource is divided among the tasks of
8240 * init_task_group and its child task-groups in a fair manner,
8241 * based on each entity's (task or task-group's) weight
8242 * (se->load.weight).
8243 *
8244 * In other words, if init_task_group has 10 tasks of weight
8245 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8246 * then A0's share of the cpu resource is:
8247 *
8248 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
8249 *
8250 * We achieve this by letting init_task_group's tasks sit
8251 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8252 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008253 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008254#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008255 root_task_group.shares = NICE_0_LOAD;
8256 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008257 /*
8258 * In case of task-groups formed thr' the user id of tasks,
8259 * init_task_group represents tasks belonging to root user.
8260 * Hence it forms a sibling of all subsequent groups formed.
8261 * In this case, init_task_group gets only a fraction of overall
8262 * system cpu resource, based on the weight assigned to root
8263 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8264 * by letting tasks of init_task_group sit in a separate cfs_rq
8265 * (init_cfs_rq) and having one entity represent this group of
8266 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
8267 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008268 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008269 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008270 &per_cpu(init_sched_entity, i), i, 1,
8271 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008272
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008273#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008274#endif /* CONFIG_FAIR_GROUP_SCHED */
8275
8276 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008277#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008278 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008279#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008280 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008281#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008282 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008283 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008284 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008285 &per_cpu(init_sched_rt_entity, i), i, 1,
8286 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008287#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008288#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008289
Ingo Molnardd41f592007-07-09 18:51:59 +02008290 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8291 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008292#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008293 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008294 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008295 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008296 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008297 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008298 rq->cpu = i;
Gregory Haskins1f11eb62008-06-04 15:04:05 -04008299 rq->online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008300 rq->migration_thread = NULL;
8301 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008302 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008303#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008304 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008305 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008306 }
8307
Peter Williams2dd73a42006-06-27 02:54:34 -07008308 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008309
Avi Kivitye107be32007-07-26 13:40:43 +02008310#ifdef CONFIG_PREEMPT_NOTIFIERS
8311 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8312#endif
8313
Christoph Lameterc9819f42006-12-10 02:20:25 -08008314#ifdef CONFIG_SMP
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008315 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
Christoph Lameterc9819f42006-12-10 02:20:25 -08008316#endif
8317
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008318#ifdef CONFIG_RT_MUTEXES
8319 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8320#endif
8321
Linus Torvalds1da177e2005-04-16 15:20:36 -07008322 /*
8323 * The boot idle thread does lazy MMU switching as well:
8324 */
8325 atomic_inc(&init_mm.mm_count);
8326 enter_lazy_tlb(&init_mm, current);
8327
8328 /*
8329 * Make us the idle thread. Technically, schedule() should not be
8330 * called from this thread, however somewhere below it might be,
8331 * but because we are the idle thread, we just pick up running again
8332 * when this runqueue becomes "idle".
8333 */
8334 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008335 /*
8336 * During early bootup we pretend to be a normal task:
8337 */
8338 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008339
8340 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008341}
8342
8343#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8344void __might_sleep(char *file, int line)
8345{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008346#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347 static unsigned long prev_jiffy; /* ratelimiting */
8348
Ingo Molnaraef745f2008-08-28 11:34:43 +02008349 if ((!in_atomic() && !irqs_disabled()) ||
8350 system_state != SYSTEM_RUNNING || oops_in_progress)
8351 return;
8352 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8353 return;
8354 prev_jiffy = jiffies;
8355
8356 printk(KERN_ERR
8357 "BUG: sleeping function called from invalid context at %s:%d\n",
8358 file, line);
8359 printk(KERN_ERR
8360 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
8361 in_atomic(), irqs_disabled(),
8362 current->pid, current->comm);
8363
8364 debug_show_held_locks(current);
8365 if (irqs_disabled())
8366 print_irqtrace_events(current);
8367 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008368#endif
8369}
8370EXPORT_SYMBOL(__might_sleep);
8371#endif
8372
8373#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008374static void normalize_task(struct rq *rq, struct task_struct *p)
8375{
8376 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008377
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008378 update_rq_clock(rq);
8379 on_rq = p->se.on_rq;
8380 if (on_rq)
8381 deactivate_task(rq, p, 0);
8382 __setscheduler(rq, p, SCHED_NORMAL, 0);
8383 if (on_rq) {
8384 activate_task(rq, p, 0);
8385 resched_task(rq->curr);
8386 }
8387}
8388
Linus Torvalds1da177e2005-04-16 15:20:36 -07008389void normalize_rt_tasks(void)
8390{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008391 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008392 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008393 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008394
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008395 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008396 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008397 /*
8398 * Only normalize user tasks:
8399 */
8400 if (!p->mm)
8401 continue;
8402
Ingo Molnardd41f592007-07-09 18:51:59 +02008403 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008404#ifdef CONFIG_SCHEDSTATS
8405 p->se.wait_start = 0;
8406 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008407 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008408#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008409
8410 if (!rt_task(p)) {
8411 /*
8412 * Renice negative nice level userspace
8413 * tasks back to 0:
8414 */
8415 if (TASK_NICE(p) < 0 && p->mm)
8416 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008419
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008420 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008421 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422
Ingo Molnar178be792007-10-15 17:00:18 +02008423 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008424
Ingo Molnarb29739f2006-06-27 02:54:51 -07008425 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008426 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008427 } while_each_thread(g, p);
8428
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008429 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430}
8431
8432#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008433
8434#ifdef CONFIG_IA64
8435/*
8436 * These functions are only useful for the IA64 MCA handling.
8437 *
8438 * They can only be called when the whole system has been
8439 * stopped - every CPU needs to be quiescent, and no scheduling
8440 * activity can take place. Using them for anything else would
8441 * be a serious bug, and as a result, they aren't even visible
8442 * under any other configuration.
8443 */
8444
8445/**
8446 * curr_task - return the current task for a given cpu.
8447 * @cpu: the processor in question.
8448 *
8449 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8450 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008451struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008452{
8453 return cpu_curr(cpu);
8454}
8455
8456/**
8457 * set_curr_task - set the current task for a given cpu.
8458 * @cpu: the processor in question.
8459 * @p: the task pointer to set.
8460 *
8461 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008462 * are serviced on a separate stack. It allows the architecture to switch the
8463 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008464 * must be called with all CPU's synchronized, and interrupts disabled, the
8465 * and caller must save the original value of the current task (see
8466 * curr_task() above) and restore that value before reenabling interrupts and
8467 * re-starting the system.
8468 *
8469 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8470 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008471void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008472{
8473 cpu_curr(cpu) = p;
8474}
8475
8476#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008477
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008478#ifdef CONFIG_FAIR_GROUP_SCHED
8479static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008480{
8481 int i;
8482
8483 for_each_possible_cpu(i) {
8484 if (tg->cfs_rq)
8485 kfree(tg->cfs_rq[i]);
8486 if (tg->se)
8487 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008488 }
8489
8490 kfree(tg->cfs_rq);
8491 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008492}
8493
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008494static
8495int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008496{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008497 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008498 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008499 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008500 int i;
8501
Mike Travis434d53b2008-04-04 18:11:04 -07008502 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008503 if (!tg->cfs_rq)
8504 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008505 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008506 if (!tg->se)
8507 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008508
8509 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008510
8511 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008512 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008513
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008514 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8515 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008516 if (!cfs_rq)
8517 goto err;
8518
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008519 se = kmalloc_node(sizeof(struct sched_entity),
8520 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008521 if (!se)
8522 goto err;
8523
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008524 parent_se = parent ? parent->se[i] : NULL;
8525 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008526 }
8527
8528 return 1;
8529
8530 err:
8531 return 0;
8532}
8533
8534static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8535{
8536 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8537 &cpu_rq(cpu)->leaf_cfs_rq_list);
8538}
8539
8540static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8541{
8542 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8543}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008544#else /* !CONFG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008545static inline void free_fair_sched_group(struct task_group *tg)
8546{
8547}
8548
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008549static inline
8550int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008551{
8552 return 1;
8553}
8554
8555static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8556{
8557}
8558
8559static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8560{
8561}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008562#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008563
8564#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008565static void free_rt_sched_group(struct task_group *tg)
8566{
8567 int i;
8568
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008569 destroy_rt_bandwidth(&tg->rt_bandwidth);
8570
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008571 for_each_possible_cpu(i) {
8572 if (tg->rt_rq)
8573 kfree(tg->rt_rq[i]);
8574 if (tg->rt_se)
8575 kfree(tg->rt_se[i]);
8576 }
8577
8578 kfree(tg->rt_rq);
8579 kfree(tg->rt_se);
8580}
8581
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008582static
8583int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008584{
8585 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008586 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008587 struct rq *rq;
8588 int i;
8589
Mike Travis434d53b2008-04-04 18:11:04 -07008590 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008591 if (!tg->rt_rq)
8592 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008593 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008594 if (!tg->rt_se)
8595 goto err;
8596
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008597 init_rt_bandwidth(&tg->rt_bandwidth,
8598 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008599
8600 for_each_possible_cpu(i) {
8601 rq = cpu_rq(i);
8602
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008603 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8604 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8605 if (!rt_rq)
8606 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008607
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008608 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8609 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8610 if (!rt_se)
8611 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008612
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008613 parent_se = parent ? parent->rt_se[i] : NULL;
8614 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008615 }
8616
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008617 return 1;
8618
8619 err:
8620 return 0;
8621}
8622
8623static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8624{
8625 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8626 &cpu_rq(cpu)->leaf_rt_rq_list);
8627}
8628
8629static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8630{
8631 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8632}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008633#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008634static inline void free_rt_sched_group(struct task_group *tg)
8635{
8636}
8637
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008638static inline
8639int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008640{
8641 return 1;
8642}
8643
8644static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8645{
8646}
8647
8648static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8649{
8650}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008651#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008652
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008653#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008654static void free_sched_group(struct task_group *tg)
8655{
8656 free_fair_sched_group(tg);
8657 free_rt_sched_group(tg);
8658 kfree(tg);
8659}
8660
8661/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008662struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008663{
8664 struct task_group *tg;
8665 unsigned long flags;
8666 int i;
8667
8668 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8669 if (!tg)
8670 return ERR_PTR(-ENOMEM);
8671
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008672 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008673 goto err;
8674
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008675 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008676 goto err;
8677
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008678 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008679 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008680 register_fair_sched_group(tg, i);
8681 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008682 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008683 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008684
8685 WARN_ON(!parent); /* root should already exist */
8686
8687 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008688 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08008689 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008690 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008691
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008692 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008693
8694err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008695 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008696 return ERR_PTR(-ENOMEM);
8697}
8698
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008699/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008700static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008701{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008702 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008703 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008704}
8705
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008706/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008707void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008708{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008709 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008710 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008711
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008712 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008713 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008714 unregister_fair_sched_group(tg, i);
8715 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008716 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008717 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008718 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008719 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008720
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008721 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008722 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008723}
8724
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008725/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008726 * The caller of this function should have put the task in its new group
8727 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8728 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008729 */
8730void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008731{
8732 int on_rq, running;
8733 unsigned long flags;
8734 struct rq *rq;
8735
8736 rq = task_rq_lock(tsk, &flags);
8737
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008738 update_rq_clock(rq);
8739
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008740 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008741 on_rq = tsk->se.on_rq;
8742
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008743 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008744 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008745 if (unlikely(running))
8746 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008747
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008748 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008749
Peter Zijlstra810b3812008-02-29 15:21:01 -05008750#ifdef CONFIG_FAIR_GROUP_SCHED
8751 if (tsk->sched_class->moved_group)
8752 tsk->sched_class->moved_group(tsk);
8753#endif
8754
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008755 if (unlikely(running))
8756 tsk->sched_class->set_curr_task(rq);
8757 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008758 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008759
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008760 task_rq_unlock(rq, &flags);
8761}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008762#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008763
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008764#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008765static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008766{
8767 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008768 int on_rq;
8769
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008770 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008771 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008772 dequeue_entity(cfs_rq, se, 0);
8773
8774 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008775 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008776
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008777 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008778 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008779}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008780
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008781static void set_se_shares(struct sched_entity *se, unsigned long shares)
8782{
8783 struct cfs_rq *cfs_rq = se->cfs_rq;
8784 struct rq *rq = cfs_rq->rq;
8785 unsigned long flags;
8786
8787 spin_lock_irqsave(&rq->lock, flags);
8788 __set_se_shares(se, shares);
8789 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008790}
8791
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008792static DEFINE_MUTEX(shares_mutex);
8793
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008794int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008795{
8796 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008797 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008798
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008799 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008800 * We can't change the weight of the root cgroup.
8801 */
8802 if (!tg->se[0])
8803 return -EINVAL;
8804
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008805 if (shares < MIN_SHARES)
8806 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008807 else if (shares > MAX_SHARES)
8808 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008809
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008810 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008811 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008812 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008813
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008814 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008815 for_each_possible_cpu(i)
8816 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008817 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008818 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008819
8820 /* wait for any ongoing reference to this group to finish */
8821 synchronize_sched();
8822
8823 /*
8824 * Now we are free to modify the group's share on each cpu
8825 * w/o tripping rebalance_share or load_balance_fair.
8826 */
8827 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008828 for_each_possible_cpu(i) {
8829 /*
8830 * force a rebalance
8831 */
8832 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008833 set_se_shares(tg->se[i], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008834 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008835
8836 /*
8837 * Enable load balance activity on this group, by inserting it back on
8838 * each cpu's rq->leaf_cfs_rq_list.
8839 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008840 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008841 for_each_possible_cpu(i)
8842 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008843 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008844 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008845done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008846 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008847 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008848}
8849
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008850unsigned long sched_group_shares(struct task_group *tg)
8851{
8852 return tg->shares;
8853}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008854#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008855
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008856#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008857/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008858 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008859 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008860static DEFINE_MUTEX(rt_constraints_mutex);
8861
8862static unsigned long to_ratio(u64 period, u64 runtime)
8863{
8864 if (runtime == RUNTIME_INF)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008865 return 1ULL << 20;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008866
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008867 return div64_u64(runtime << 20, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008868}
8869
Dhaval Giani521f1a242008-02-28 15:21:56 +05308870/* Must be called with tasklist_lock held */
8871static inline int tg_has_rt_tasks(struct task_group *tg)
8872{
8873 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008874
Dhaval Giani521f1a242008-02-28 15:21:56 +05308875 do_each_thread(g, p) {
8876 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8877 return 1;
8878 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008879
Dhaval Giani521f1a242008-02-28 15:21:56 +05308880 return 0;
8881}
8882
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008883struct rt_schedulable_data {
8884 struct task_group *tg;
8885 u64 rt_period;
8886 u64 rt_runtime;
8887};
8888
8889static int tg_schedulable(struct task_group *tg, void *data)
8890{
8891 struct rt_schedulable_data *d = data;
8892 struct task_group *child;
8893 unsigned long total, sum = 0;
8894 u64 period, runtime;
8895
8896 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8897 runtime = tg->rt_bandwidth.rt_runtime;
8898
8899 if (tg == d->tg) {
8900 period = d->rt_period;
8901 runtime = d->rt_runtime;
8902 }
8903
Peter Zijlstra4653f802008-09-23 15:33:44 +02008904 /*
8905 * Cannot have more runtime than the period.
8906 */
8907 if (runtime > period && runtime != RUNTIME_INF)
8908 return -EINVAL;
8909
8910 /*
8911 * Ensure we don't starve existing RT tasks.
8912 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008913 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
8914 return -EBUSY;
8915
8916 total = to_ratio(period, runtime);
8917
Peter Zijlstra4653f802008-09-23 15:33:44 +02008918 /*
8919 * Nobody can have more than the global setting allows.
8920 */
8921 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
8922 return -EINVAL;
8923
8924 /*
8925 * The sum of our children's runtime should not exceed our own.
8926 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008927 list_for_each_entry_rcu(child, &tg->children, siblings) {
8928 period = ktime_to_ns(child->rt_bandwidth.rt_period);
8929 runtime = child->rt_bandwidth.rt_runtime;
8930
8931 if (child == d->tg) {
8932 period = d->rt_period;
8933 runtime = d->rt_runtime;
8934 }
8935
8936 sum += to_ratio(period, runtime);
8937 }
8938
8939 if (sum > total)
8940 return -EINVAL;
8941
8942 return 0;
8943}
8944
8945static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8946{
8947 struct rt_schedulable_data data = {
8948 .tg = tg,
8949 .rt_period = period,
8950 .rt_runtime = runtime,
8951 };
8952
8953 return walk_tg_tree(tg_schedulable, tg_nop, &data);
8954}
8955
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008956static int tg_set_bandwidth(struct task_group *tg,
8957 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008958{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008959 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008960
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008961 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308962 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008963 err = __rt_schedulable(tg, rt_period, rt_runtime);
8964 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05308965 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008966
8967 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008968 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8969 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008970
8971 for_each_possible_cpu(i) {
8972 struct rt_rq *rt_rq = tg->rt_rq[i];
8973
8974 spin_lock(&rt_rq->rt_runtime_lock);
8975 rt_rq->rt_runtime = rt_runtime;
8976 spin_unlock(&rt_rq->rt_runtime_lock);
8977 }
8978 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008979 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308980 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008981 mutex_unlock(&rt_constraints_mutex);
8982
8983 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008984}
8985
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008986int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8987{
8988 u64 rt_runtime, rt_period;
8989
8990 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8991 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8992 if (rt_runtime_us < 0)
8993 rt_runtime = RUNTIME_INF;
8994
8995 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8996}
8997
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008998long sched_group_rt_runtime(struct task_group *tg)
8999{
9000 u64 rt_runtime_us;
9001
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009002 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009003 return -1;
9004
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009005 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009006 do_div(rt_runtime_us, NSEC_PER_USEC);
9007 return rt_runtime_us;
9008}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009009
9010int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
9011{
9012 u64 rt_runtime, rt_period;
9013
9014 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
9015 rt_runtime = tg->rt_bandwidth.rt_runtime;
9016
Raistlin619b0482008-06-26 18:54:09 +02009017 if (rt_period == 0)
9018 return -EINVAL;
9019
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009020 return tg_set_bandwidth(tg, rt_period, rt_runtime);
9021}
9022
9023long sched_group_rt_period(struct task_group *tg)
9024{
9025 u64 rt_period_us;
9026
9027 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
9028 do_div(rt_period_us, NSEC_PER_USEC);
9029 return rt_period_us;
9030}
9031
9032static int sched_rt_global_constraints(void)
9033{
Peter Zijlstra4653f802008-09-23 15:33:44 +02009034 u64 runtime, period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009035 int ret = 0;
9036
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07009037 if (sysctl_sched_rt_period <= 0)
9038 return -EINVAL;
9039
Peter Zijlstra4653f802008-09-23 15:33:44 +02009040 runtime = global_rt_runtime();
9041 period = global_rt_period();
9042
9043 /*
9044 * Sanity check on the sysctl variables.
9045 */
9046 if (runtime > period && runtime != RUNTIME_INF)
9047 return -EINVAL;
Peter Zijlstra10b612f2008-06-19 14:22:27 +02009048
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009049 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009050 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02009051 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009052 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009053 mutex_unlock(&rt_constraints_mutex);
9054
9055 return ret;
9056}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009057#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009058static int sched_rt_global_constraints(void)
9059{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009060 unsigned long flags;
9061 int i;
9062
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07009063 if (sysctl_sched_rt_period <= 0)
9064 return -EINVAL;
9065
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009066 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
9067 for_each_possible_cpu(i) {
9068 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
9069
9070 spin_lock(&rt_rq->rt_runtime_lock);
9071 rt_rq->rt_runtime = global_rt_runtime();
9072 spin_unlock(&rt_rq->rt_runtime_lock);
9073 }
9074 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
9075
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009076 return 0;
9077}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009078#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009079
9080int sched_rt_handler(struct ctl_table *table, int write,
9081 struct file *filp, void __user *buffer, size_t *lenp,
9082 loff_t *ppos)
9083{
9084 int ret;
9085 int old_period, old_runtime;
9086 static DEFINE_MUTEX(mutex);
9087
9088 mutex_lock(&mutex);
9089 old_period = sysctl_sched_rt_period;
9090 old_runtime = sysctl_sched_rt_runtime;
9091
9092 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
9093
9094 if (!ret && write) {
9095 ret = sched_rt_global_constraints();
9096 if (ret) {
9097 sysctl_sched_rt_period = old_period;
9098 sysctl_sched_rt_runtime = old_runtime;
9099 } else {
9100 def_rt_bandwidth.rt_runtime = global_rt_runtime();
9101 def_rt_bandwidth.rt_period =
9102 ns_to_ktime(global_rt_period());
9103 }
9104 }
9105 mutex_unlock(&mutex);
9106
9107 return ret;
9108}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009109
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009110#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009111
9112/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009113static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009114{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009115 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
9116 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009117}
9118
9119static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02009120cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009121{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009122 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009123
Paul Menage2b01dfe2007-10-24 18:23:50 +02009124 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009125 /* This is early initialization for the top cgroup */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009126 return &init_task_group.css;
9127 }
9128
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009129 parent = cgroup_tg(cgrp->parent);
9130 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009131 if (IS_ERR(tg))
9132 return ERR_PTR(-ENOMEM);
9133
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009134 return &tg->css;
9135}
9136
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009137static void
9138cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009139{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009140 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009141
9142 sched_destroy_group(tg);
9143}
9144
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009145static int
9146cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
9147 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009148{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009149#ifdef CONFIG_RT_GROUP_SCHED
9150 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009151 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009152 return -EINVAL;
9153#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009154 /* We don't support RT-tasks being in separate groups */
9155 if (tsk->sched_class != &fair_sched_class)
9156 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009157#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009158
9159 return 0;
9160}
9161
9162static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02009163cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009164 struct cgroup *old_cont, struct task_struct *tsk)
9165{
9166 sched_move_task(tsk);
9167}
9168
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009169#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07009170static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009171 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009172{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009173 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009174}
9175
Paul Menagef4c753b2008-04-29 00:59:56 -07009176static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009177{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009178 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009179
9180 return (u64) tg->shares;
9181}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009182#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009183
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009184#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07009185static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009186 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009187{
Paul Menage06ecb272008-04-29 01:00:06 -07009188 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009189}
9190
Paul Menage06ecb272008-04-29 01:00:06 -07009191static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009192{
Paul Menage06ecb272008-04-29 01:00:06 -07009193 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009194}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009195
9196static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9197 u64 rt_period_us)
9198{
9199 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9200}
9201
9202static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9203{
9204 return sched_group_rt_period(cgroup_tg(cgrp));
9205}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009206#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009207
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009208static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009209#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009210 {
9211 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009212 .read_u64 = cpu_shares_read_u64,
9213 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009214 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009215#endif
9216#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009217 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009218 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009219 .read_s64 = cpu_rt_runtime_read,
9220 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009221 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009222 {
9223 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009224 .read_u64 = cpu_rt_period_read_uint,
9225 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009226 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009227#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009228};
9229
9230static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9231{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009232 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009233}
9234
9235struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009236 .name = "cpu",
9237 .create = cpu_cgroup_create,
9238 .destroy = cpu_cgroup_destroy,
9239 .can_attach = cpu_cgroup_can_attach,
9240 .attach = cpu_cgroup_attach,
9241 .populate = cpu_cgroup_populate,
9242 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009243 .early_init = 1,
9244};
9245
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009246#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009247
9248#ifdef CONFIG_CGROUP_CPUACCT
9249
9250/*
9251 * CPU accounting code for task groups.
9252 *
9253 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9254 * (balbir@in.ibm.com).
9255 */
9256
9257/* track cpu usage of a group of tasks */
9258struct cpuacct {
9259 struct cgroup_subsys_state css;
9260 /* cpuusage holds pointer to a u64-type object on every cpu */
9261 u64 *cpuusage;
9262};
9263
9264struct cgroup_subsys cpuacct_subsys;
9265
9266/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309267static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009268{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309269 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009270 struct cpuacct, css);
9271}
9272
9273/* return cpu accounting group to which this task belongs */
9274static inline struct cpuacct *task_ca(struct task_struct *tsk)
9275{
9276 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9277 struct cpuacct, css);
9278}
9279
9280/* create a new cpu accounting group */
9281static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309282 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009283{
9284 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9285
9286 if (!ca)
9287 return ERR_PTR(-ENOMEM);
9288
9289 ca->cpuusage = alloc_percpu(u64);
9290 if (!ca->cpuusage) {
9291 kfree(ca);
9292 return ERR_PTR(-ENOMEM);
9293 }
9294
9295 return &ca->css;
9296}
9297
9298/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009299static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309300cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009301{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309302 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009303
9304 free_percpu(ca->cpuusage);
9305 kfree(ca);
9306}
9307
9308/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309309static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009310{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309311 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009312 u64 totalcpuusage = 0;
9313 int i;
9314
9315 for_each_possible_cpu(i) {
9316 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9317
9318 /*
9319 * Take rq->lock to make 64-bit addition safe on 32-bit
9320 * platforms.
9321 */
9322 spin_lock_irq(&cpu_rq(i)->lock);
9323 totalcpuusage += *cpuusage;
9324 spin_unlock_irq(&cpu_rq(i)->lock);
9325 }
9326
9327 return totalcpuusage;
9328}
9329
Dhaval Giani0297b802008-02-29 10:02:44 +05309330static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9331 u64 reset)
9332{
9333 struct cpuacct *ca = cgroup_ca(cgrp);
9334 int err = 0;
9335 int i;
9336
9337 if (reset) {
9338 err = -EINVAL;
9339 goto out;
9340 }
9341
9342 for_each_possible_cpu(i) {
9343 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9344
9345 spin_lock_irq(&cpu_rq(i)->lock);
9346 *cpuusage = 0;
9347 spin_unlock_irq(&cpu_rq(i)->lock);
9348 }
9349out:
9350 return err;
9351}
9352
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009353static struct cftype files[] = {
9354 {
9355 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009356 .read_u64 = cpuusage_read,
9357 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009358 },
9359};
9360
Dhaval Giani32cd7562008-02-29 10:02:43 +05309361static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009362{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309363 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009364}
9365
9366/*
9367 * charge this task's execution time to its accounting group.
9368 *
9369 * called with rq->lock held.
9370 */
9371static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9372{
9373 struct cpuacct *ca;
9374
9375 if (!cpuacct_subsys.active)
9376 return;
9377
9378 ca = task_ca(tsk);
9379 if (ca) {
9380 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
9381
9382 *cpuusage += cputime;
9383 }
9384}
9385
9386struct cgroup_subsys cpuacct_subsys = {
9387 .name = "cpuacct",
9388 .create = cpuacct_create,
9389 .destroy = cpuacct_destroy,
9390 .populate = cpuacct_populate,
9391 .subsys_id = cpuacct_subsys_id,
9392};
9393#endif /* CONFIG_CGROUP_CPUACCT */