blob: 7729c4bbc8baec10e47529142b788c43b71fa501 [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 Molnar62160e3f2007-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 Haskins73fe6aae2008-01-25 21:08:07 +0100459 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc12008-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 Haskins1f11eb6a2008-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 Vincent95e904c2008-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 Vincent95e904c2008-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 Molnarf9153ee62007-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);
Ingo Molnaraf6d5962008-11-29 20:45:15 +01001462 unsigned long nr_running = ACCESS_ONCE(rq->nr_running);
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001463
Steven Rostedt4cd42622008-11-26 21:04:24 -05001464 if (nr_running)
1465 rq->avg_load_per_task = rq->load.weight / nr_running;
Balbir Singha2d47772008-11-12 16:19:00 +05301466 else
1467 rq->avg_load_per_task = 0;
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001468
1469 return rq->avg_load_per_task;
1470}
1471
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001472#ifdef CONFIG_FAIR_GROUP_SCHED
1473
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001474static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1475
1476/*
1477 * Calculate and set the cpu's group shares.
1478 */
1479static void
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001480update_group_shares_cpu(struct task_group *tg, int cpu,
1481 unsigned long sd_shares, unsigned long sd_rq_weight)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001482{
1483 int boost = 0;
1484 unsigned long shares;
1485 unsigned long rq_weight;
1486
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001487 if (!tg->se[cpu])
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001488 return;
1489
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001490 rq_weight = tg->cfs_rq[cpu]->load.weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001491
1492 /*
1493 * If there are currently no tasks on the cpu pretend there is one of
1494 * average load so that when a new task gets to run here it will not
1495 * get delayed by group starvation.
1496 */
1497 if (!rq_weight) {
1498 boost = 1;
1499 rq_weight = NICE_0_LOAD;
1500 }
1501
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001502 if (unlikely(rq_weight > sd_rq_weight))
1503 rq_weight = sd_rq_weight;
1504
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001505 /*
1506 * \Sum shares * rq_weight
1507 * shares = -----------------------
1508 * \Sum rq_weight
1509 *
1510 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001511 shares = (sd_shares * rq_weight) / (sd_rq_weight + 1);
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001512 shares = clamp_t(unsigned long, shares, MIN_SHARES, MAX_SHARES);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001513
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001514 if (abs(shares - tg->se[cpu]->load.weight) >
1515 sysctl_sched_shares_thresh) {
1516 struct rq *rq = cpu_rq(cpu);
1517 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001518
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001519 spin_lock_irqsave(&rq->lock, flags);
1520 /*
1521 * record the actual number of shares, not the boosted amount.
1522 */
1523 tg->cfs_rq[cpu]->shares = boost ? 0 : shares;
1524 tg->cfs_rq[cpu]->rq_weight = rq_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001525
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001526 __set_se_shares(tg->se[cpu], shares);
1527 spin_unlock_irqrestore(&rq->lock, flags);
1528 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001529}
1530
1531/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001532 * Re-compute the task group their per cpu shares over the given domain.
1533 * This needs to be done in a bottom-up fashion because the rq weight of a
1534 * parent group depends on the shares of its child groups.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001535 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001536static int tg_shares_up(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001537{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001538 unsigned long rq_weight = 0;
1539 unsigned long shares = 0;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001540 struct sched_domain *sd = data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001541 int i;
1542
1543 for_each_cpu_mask(i, sd->span) {
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001544 rq_weight += tg->cfs_rq[i]->load.weight;
1545 shares += tg->cfs_rq[i]->shares;
1546 }
1547
1548 if ((!shares && rq_weight) || shares > tg->shares)
1549 shares = tg->shares;
1550
1551 if (!sd->parent || !(sd->parent->flags & SD_LOAD_BALANCE))
1552 shares = tg->shares;
1553
Peter Zijlstracd809172008-06-27 13:41:34 +02001554 if (!rq_weight)
1555 rq_weight = cpus_weight(sd->span) * NICE_0_LOAD;
1556
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001557 for_each_cpu_mask(i, sd->span)
1558 update_group_shares_cpu(tg, i, shares, rq_weight);
Peter Zijlstraeb755802008-08-19 12:33:05 +02001559
1560 return 0;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001561}
1562
1563/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001564 * Compute the cpu's hierarchical load factor for each task group.
1565 * This needs to be done in a top-down fashion because the load of a child
1566 * group is a fraction of its parents load.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001567 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001568static int tg_load_down(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001569{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001570 unsigned long load;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001571 long cpu = (long)data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001572
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001573 if (!tg->parent) {
1574 load = cpu_rq(cpu)->load.weight;
1575 } else {
1576 load = tg->parent->cfs_rq[cpu]->h_load;
1577 load *= tg->cfs_rq[cpu]->shares;
1578 load /= tg->parent->cfs_rq[cpu]->load.weight + 1;
1579 }
1580
1581 tg->cfs_rq[cpu]->h_load = load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001582
Peter Zijlstraeb755802008-08-19 12:33:05 +02001583 return 0;
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001584}
1585
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001586static void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001587{
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001588 u64 now = cpu_clock(raw_smp_processor_id());
1589 s64 elapsed = now - sd->last_update;
1590
1591 if (elapsed >= (s64)(u64)sysctl_sched_shares_ratelimit) {
1592 sd->last_update = now;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001593 walk_tg_tree(tg_nop, tg_shares_up, sd);
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001594 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001595}
1596
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001597static void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1598{
1599 spin_unlock(&rq->lock);
1600 update_shares(sd);
1601 spin_lock(&rq->lock);
1602}
1603
Peter Zijlstraeb755802008-08-19 12:33:05 +02001604static void update_h_load(long cpu)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001605{
Peter Zijlstraeb755802008-08-19 12:33:05 +02001606 walk_tg_tree(tg_load_down, tg_nop, (void *)cpu);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001607}
1608
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001609#else
1610
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001611static inline void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001612{
1613}
1614
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001615static inline void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1616{
1617}
1618
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001619#endif
1620
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001621#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001622
1623#ifdef CONFIG_FAIR_GROUP_SCHED
1624static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1625{
Vegard Nossum30432092008-06-27 21:35:50 +02001626#ifdef CONFIG_SMP
Ingo Molnar34e83e82008-06-27 15:42:36 +02001627 cfs_rq->shares = shares;
1628#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001629}
1630#endif
1631
Ingo Molnardd41f592007-07-09 18:51:59 +02001632#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001633#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001634#include "sched_fair.c"
1635#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001636#ifdef CONFIG_SCHED_DEBUG
1637# include "sched_debug.c"
1638#endif
1639
1640#define sched_class_highest (&rt_sched_class)
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04001641#define for_each_class(class) \
1642 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001643
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001644static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001645{
1646 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001647}
1648
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001649static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001650{
1651 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001652}
1653
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001654static void set_load_weight(struct task_struct *p)
1655{
1656 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001657 p->se.load.weight = prio_to_weight[0] * 2;
1658 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1659 return;
1660 }
1661
1662 /*
1663 * SCHED_IDLE tasks get minimal weight:
1664 */
1665 if (p->policy == SCHED_IDLE) {
1666 p->se.load.weight = WEIGHT_IDLEPRIO;
1667 p->se.load.inv_weight = WMULT_IDLEPRIO;
1668 return;
1669 }
1670
1671 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1672 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001673}
1674
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001675static void update_avg(u64 *avg, u64 sample)
1676{
1677 s64 diff = sample - *avg;
1678 *avg += diff >> 3;
1679}
1680
Ingo Molnar8159f872007-08-09 11:16:49 +02001681static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001682{
1683 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001684 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001685 p->se.on_rq = 1;
1686}
1687
Ingo Molnar69be72c2007-08-09 11:16:49 +02001688static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001689{
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001690 if (sleep && p->se.last_wakeup) {
1691 update_avg(&p->se.avg_overlap,
1692 p->se.sum_exec_runtime - p->se.last_wakeup);
1693 p->se.last_wakeup = 0;
1694 }
1695
Ankita Garg46ac22b2008-07-01 14:30:06 +05301696 sched_info_dequeued(p);
Ingo Molnarf02231e2007-08-09 11:16:48 +02001697 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001698 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001699}
1700
1701/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001702 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001703 */
Ingo Molnar14531182007-07-09 18:51:59 +02001704static inline int __normal_prio(struct task_struct *p)
1705{
Ingo Molnardd41f592007-07-09 18:51:59 +02001706 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001707}
1708
1709/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001710 * Calculate the expected normal priority: i.e. priority
1711 * without taking RT-inheritance into account. Might be
1712 * boosted by interactivity modifiers. Changes upon fork,
1713 * setprio syscalls, and whenever the interactivity
1714 * estimator recalculates.
1715 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001716static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001717{
1718 int prio;
1719
Ingo Molnare05606d2007-07-09 18:51:59 +02001720 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001721 prio = MAX_RT_PRIO-1 - p->rt_priority;
1722 else
1723 prio = __normal_prio(p);
1724 return prio;
1725}
1726
1727/*
1728 * Calculate the current priority, i.e. the priority
1729 * taken into account by the scheduler. This value might
1730 * be boosted by RT tasks, or might be boosted by
1731 * interactivity modifiers. Will be RT if the task got
1732 * RT-boosted. If not then it returns p->normal_prio.
1733 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001734static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001735{
1736 p->normal_prio = normal_prio(p);
1737 /*
1738 * If we are RT tasks or we were boosted to RT priority,
1739 * keep the priority unchanged. Otherwise, update priority
1740 * to the normal priority:
1741 */
1742 if (!rt_prio(p->prio))
1743 return p->normal_prio;
1744 return p->prio;
1745}
1746
1747/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001748 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001750static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001752 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001753 rq->nr_uninterruptible--;
1754
Ingo Molnar8159f872007-08-09 11:16:49 +02001755 enqueue_task(rq, p, wakeup);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001756 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757}
1758
1759/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 * deactivate_task - remove a task from the runqueue.
1761 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001762static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001764 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001765 rq->nr_uninterruptible++;
1766
Ingo Molnar69be72c2007-08-09 11:16:49 +02001767 dequeue_task(rq, p, sleep);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001768 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769}
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771/**
1772 * task_curr - is this task currently executing on a CPU?
1773 * @p: the task in question.
1774 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001775inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
1777 return cpu_curr(task_cpu(p)) == p;
1778}
1779
Ingo Molnardd41f592007-07-09 18:51:59 +02001780static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1781{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001782 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001783#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001784 /*
1785 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1786 * successfuly executed on another CPU. We must ensure that updates of
1787 * per-task data have been completed by this moment.
1788 */
1789 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001790 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001791#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001792}
1793
Steven Rostedtcb469842008-01-25 21:08:22 +01001794static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1795 const struct sched_class *prev_class,
1796 int oldprio, int running)
1797{
1798 if (prev_class != p->sched_class) {
1799 if (prev_class->switched_from)
1800 prev_class->switched_from(rq, p, running);
1801 p->sched_class->switched_to(rq, p, running);
1802 } else
1803 p->sched_class->prio_changed(rq, p, oldprio, running);
1804}
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001807
Thomas Gleixnere958b362008-06-04 23:22:32 +02001808/* Used instead of source_load when we know the type == 0 */
1809static unsigned long weighted_cpuload(const int cpu)
1810{
1811 return cpu_rq(cpu)->load.weight;
1812}
1813
Ingo Molnarcc367732007-10-15 17:00:18 +02001814/*
1815 * Is this task likely cache-hot:
1816 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001817static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001818task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1819{
1820 s64 delta;
1821
Ingo Molnarf540a602008-03-15 17:10:34 +01001822 /*
1823 * Buddy candidates are cache hot:
1824 */
Peter Zijlstra47932412008-11-04 21:25:09 +01001825 if (sched_feat(CACHE_HOT_BUDDY) &&
1826 (&p->se == cfs_rq_of(&p->se)->next ||
1827 &p->se == cfs_rq_of(&p->se)->last))
Ingo Molnarf540a602008-03-15 17:10:34 +01001828 return 1;
1829
Ingo Molnarcc367732007-10-15 17:00:18 +02001830 if (p->sched_class != &fair_sched_class)
1831 return 0;
1832
Ingo Molnar6bc16652007-10-15 17:00:18 +02001833 if (sysctl_sched_migration_cost == -1)
1834 return 1;
1835 if (sysctl_sched_migration_cost == 0)
1836 return 0;
1837
Ingo Molnarcc367732007-10-15 17:00:18 +02001838 delta = now - p->se.exec_start;
1839
1840 return delta < (s64)sysctl_sched_migration_cost;
1841}
1842
1843
Ingo Molnardd41f592007-07-09 18:51:59 +02001844void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001845{
Ingo Molnardd41f592007-07-09 18:51:59 +02001846 int old_cpu = task_cpu(p);
1847 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001848 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1849 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001850 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001851
1852 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001853
1854#ifdef CONFIG_SCHEDSTATS
1855 if (p->se.wait_start)
1856 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001857 if (p->se.sleep_start)
1858 p->se.sleep_start -= clock_offset;
1859 if (p->se.block_start)
1860 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001861 if (old_cpu != new_cpu) {
1862 schedstat_inc(p, se.nr_migrations);
1863 if (task_hot(p, old_rq->clock, NULL))
1864 schedstat_inc(p, se.nr_forced2_migrations);
1865 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001866#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001867 p->se.vruntime -= old_cfsrq->min_vruntime -
1868 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001869
1870 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001871}
1872
Ingo Molnar70b97a72006-07-03 00:25:42 -07001873struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Ingo Molnar36c8b582006-07-03 00:25:41 -07001876 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 int dest_cpu;
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001880};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882/*
1883 * The task's runqueue lock must be held.
1884 * Returns true if you have to wait for migration thread.
1885 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001886static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001887migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001889 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
1891 /*
1892 * If the task is not on a runqueue (and not running), then
1893 * it is sufficient to simply update the task's cpu field.
1894 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001895 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 set_task_cpu(p, dest_cpu);
1897 return 0;
1898 }
1899
1900 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 req->task = p;
1902 req->dest_cpu = dest_cpu;
1903 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return 1;
1906}
1907
1908/*
1909 * wait_task_inactive - wait for a thread to unschedule.
1910 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07001911 * If @match_state is nonzero, it's the @p->state value just checked and
1912 * not expected to change. If it changes, i.e. @p might have woken up,
1913 * then return zero. When we succeed in waiting for @p to be off its CPU,
1914 * we return a positive number (its total switch count). If a second call
1915 * a short while later returns the same number, the caller can be sure that
1916 * @p has remained unscheduled the whole time.
1917 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 * The caller must ensure that the task *will* unschedule sometime soon,
1919 * else this function might spin for a *long* time. This function can't
1920 * be called with interrupts off, or it may introduce deadlock with
1921 * smp_call_function() if an IPI is sent by the same process we are
1922 * waiting to become inactive.
1923 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001924unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
1926 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001927 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001928 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001929 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Andi Kleen3a5c3592007-10-15 17:00:14 +02001931 for (;;) {
1932 /*
1933 * We do the initial early heuristics without holding
1934 * any task-queue locks at all. We'll only try to get
1935 * the runqueue lock when things look like they will
1936 * work out!
1937 */
1938 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001939
Andi Kleen3a5c3592007-10-15 17:00:14 +02001940 /*
1941 * If the task is actively running on another CPU
1942 * still, just relax and busy-wait without holding
1943 * any locks.
1944 *
1945 * NOTE! Since we don't hold any locks, it's not
1946 * even sure that "rq" stays as the right runqueue!
1947 * But we don't care, since "task_running()" will
1948 * return false if the runqueue has changed and p
1949 * is actually now running somewhere else!
1950 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001951 while (task_running(rq, p)) {
1952 if (match_state && unlikely(p->state != match_state))
1953 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02001954 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07001955 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001956
Andi Kleen3a5c3592007-10-15 17:00:14 +02001957 /*
1958 * Ok, time to look more closely! We need the rq
1959 * lock now, to be *sure*. If we're wrong, we'll
1960 * just go back and repeat.
1961 */
1962 rq = task_rq_lock(p, &flags);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04001963 trace_sched_wait_task(rq, p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001964 running = task_running(rq, p);
1965 on_rq = p->se.on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001966 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07001967 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07001968 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Andi Kleen3a5c3592007-10-15 17:00:14 +02001969 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001970
Andi Kleen3a5c3592007-10-15 17:00:14 +02001971 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07001972 * If it changed from the expected state, bail out now.
1973 */
1974 if (unlikely(!ncsw))
1975 break;
1976
1977 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02001978 * Was it really running after all now that we
1979 * checked with the proper locks actually held?
1980 *
1981 * Oops. Go back and try again..
1982 */
1983 if (unlikely(running)) {
1984 cpu_relax();
1985 continue;
1986 }
1987
1988 /*
1989 * It's not enough that it's not actively running,
1990 * it must be off the runqueue _entirely_, and not
1991 * preempted!
1992 *
1993 * So if it wa still runnable (but just not actively
1994 * running right now), it's preempted, and we should
1995 * yield - it could be a while.
1996 */
1997 if (unlikely(on_rq)) {
1998 schedule_timeout_uninterruptible(1);
1999 continue;
2000 }
2001
2002 /*
2003 * Ahh, all good. It wasn't running, and it wasn't
2004 * runnable, which means that it will never become
2005 * running in the future either. We're all done!
2006 */
2007 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07002009
2010 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011}
2012
2013/***
2014 * kick_process - kick a running thread to enter/exit the kernel
2015 * @p: the to-be-kicked thread
2016 *
2017 * Cause a process which is running on another CPU to enter
2018 * kernel-mode, without any delay. (to get signals handled.)
2019 *
2020 * NOTE: this function doesnt have to take the runqueue lock,
2021 * because all it wants to ensure is that the remote task enters
2022 * the kernel. If the IPI races and the task has been migrated
2023 * to another CPU then no harm is done and the purpose has been
2024 * achieved as well.
2025 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002026void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
2028 int cpu;
2029
2030 preempt_disable();
2031 cpu = task_cpu(p);
2032 if ((cpu != smp_processor_id()) && task_curr(p))
2033 smp_send_reschedule(cpu);
2034 preempt_enable();
2035}
2036
2037/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002038 * Return a low guess at the load of a migration-source cpu weighted
2039 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 *
2041 * We want to under-estimate the load of migration sources, to
2042 * balance conservatively.
2043 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002044static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002045{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002046 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002047 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002048
Peter Zijlstra93b75212008-06-27 13:41:33 +02002049 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002050 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002051
Ingo Molnardd41f592007-07-09 18:51:59 +02002052 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
2055/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002056 * Return a high guess at the load of a migration-target cpu weighted
2057 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002059static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002060{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002061 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002062 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002063
Peter Zijlstra93b75212008-06-27 13:41:33 +02002064 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002065 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002066
Ingo Molnardd41f592007-07-09 18:51:59 +02002067 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002068}
2069
2070/*
Nick Piggin147cbb42005-06-25 14:57:19 -07002071 * find_idlest_group finds and returns the least busy CPU group within the
2072 * domain.
2073 */
2074static struct sched_group *
2075find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2076{
2077 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2078 unsigned long min_load = ULONG_MAX, this_load = 0;
2079 int load_idx = sd->forkexec_idx;
2080 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2081
2082 do {
2083 unsigned long load, avg_load;
2084 int local_group;
2085 int i;
2086
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002087 /* Skip over this group if it has no CPUs allowed */
2088 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002089 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002090
Nick Piggin147cbb42005-06-25 14:57:19 -07002091 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07002092
2093 /* Tally up the load of all CPUs in the group */
2094 avg_load = 0;
2095
Mike Travis363ab6f2008-05-12 21:21:13 +02002096 for_each_cpu_mask_nr(i, group->cpumask) {
Nick Piggin147cbb42005-06-25 14:57:19 -07002097 /* Bias balancing toward cpus of our domain */
2098 if (local_group)
2099 load = source_load(i, load_idx);
2100 else
2101 load = target_load(i, load_idx);
2102
2103 avg_load += load;
2104 }
2105
2106 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002107 avg_load = sg_div_cpu_power(group,
2108 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002109
2110 if (local_group) {
2111 this_load = avg_load;
2112 this = group;
2113 } else if (avg_load < min_load) {
2114 min_load = avg_load;
2115 idlest = group;
2116 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002117 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002118
2119 if (!idlest || 100*this_load < imbalance*min_load)
2120 return NULL;
2121 return idlest;
2122}
2123
2124/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002125 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002126 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002127static int
Mike Travis7c16ec52008-04-04 18:11:11 -07002128find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
2129 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07002130{
2131 unsigned long load, min_load = ULONG_MAX;
2132 int idlest = -1;
2133 int i;
2134
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002135 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07002136 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002137
Mike Travis363ab6f2008-05-12 21:21:13 +02002138 for_each_cpu_mask_nr(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002139 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002140
2141 if (load < min_load || (load == min_load && i == this_cpu)) {
2142 min_load = load;
2143 idlest = i;
2144 }
2145 }
2146
2147 return idlest;
2148}
2149
Nick Piggin476d1392005-06-25 14:57:29 -07002150/*
2151 * sched_balance_self: balance the current task (running on cpu) in domains
2152 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2153 * SD_BALANCE_EXEC.
2154 *
2155 * Balance, ie. select the least loaded group.
2156 *
2157 * Returns the target CPU number, or the same CPU if no balancing is needed.
2158 *
2159 * preempt must be disabled.
2160 */
2161static int sched_balance_self(int cpu, int flag)
2162{
2163 struct task_struct *t = current;
2164 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002165
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002166 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002167 /*
2168 * If power savings logic is enabled for a domain, stop there.
2169 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002170 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2171 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002172 if (tmp->flags & flag)
2173 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002174 }
Nick Piggin476d1392005-06-25 14:57:29 -07002175
Peter Zijlstra039a1c412008-06-27 13:41:25 +02002176 if (sd)
2177 update_shares(sd);
2178
Nick Piggin476d1392005-06-25 14:57:29 -07002179 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07002180 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07002181 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002182 int new_cpu, weight;
2183
2184 if (!(sd->flags & flag)) {
2185 sd = sd->child;
2186 continue;
2187 }
Nick Piggin476d1392005-06-25 14:57:29 -07002188
2189 span = sd->span;
2190 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002191 if (!group) {
2192 sd = sd->child;
2193 continue;
2194 }
Nick Piggin476d1392005-06-25 14:57:29 -07002195
Mike Travis7c16ec52008-04-04 18:11:11 -07002196 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002197 if (new_cpu == -1 || new_cpu == cpu) {
2198 /* Now try balancing at a lower domain level of cpu */
2199 sd = sd->child;
2200 continue;
2201 }
Nick Piggin476d1392005-06-25 14:57:29 -07002202
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002203 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002204 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07002205 sd = NULL;
2206 weight = cpus_weight(span);
2207 for_each_domain(cpu, tmp) {
2208 if (weight <= cpus_weight(tmp->span))
2209 break;
2210 if (tmp->flags & flag)
2211 sd = tmp;
2212 }
2213 /* while loop will break here if sd == NULL */
2214 }
2215
2216 return cpu;
2217}
2218
2219#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221/***
2222 * try_to_wake_up - wake up a thread
2223 * @p: the to-be-woken-up thread
2224 * @state: the mask of task states that can be woken
2225 * @sync: do a synchronous wakeup?
2226 *
2227 * Put it on the run-queue if it's not already there. The "current"
2228 * thread is always on the run-queue (except when the actual
2229 * re-schedule is in progress), and as such you're allowed to do
2230 * the simpler "current->state = TASK_RUNNING" to mark yourself
2231 * runnable without the overhead of this.
2232 *
2233 * returns failure only if the task is already active.
2234 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002235static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
Ingo Molnarcc367732007-10-15 17:00:18 +02002237 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 unsigned long flags;
2239 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002240 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Ingo Molnarb85d0662008-03-16 20:03:22 +01002242 if (!sched_feat(SYNC_WAKEUPS))
2243 sync = 0;
2244
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002245#ifdef CONFIG_SMP
2246 if (sched_feat(LB_WAKEUP_UPDATE)) {
2247 struct sched_domain *sd;
2248
2249 this_cpu = raw_smp_processor_id();
2250 cpu = task_cpu(p);
2251
2252 for_each_domain(this_cpu, sd) {
2253 if (cpu_isset(cpu, sd->span)) {
2254 update_shares(sd);
2255 break;
2256 }
2257 }
2258 }
2259#endif
2260
Linus Torvalds04e2f172008-02-23 18:05:03 -08002261 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 rq = task_rq_lock(p, &flags);
2263 old_state = p->state;
2264 if (!(old_state & state))
2265 goto out;
2266
Ingo Molnardd41f592007-07-09 18:51:59 +02002267 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 goto out_running;
2269
2270 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002271 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 this_cpu = smp_processor_id();
2273
2274#ifdef CONFIG_SMP
2275 if (unlikely(task_running(rq, p)))
2276 goto out_activate;
2277
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002278 cpu = p->sched_class->select_task_rq(p, sync);
2279 if (cpu != orig_cpu) {
2280 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 task_rq_unlock(rq, &flags);
2282 /* might preempt at this point */
2283 rq = task_rq_lock(p, &flags);
2284 old_state = p->state;
2285 if (!(old_state & state))
2286 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002287 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 goto out_running;
2289
2290 this_cpu = smp_processor_id();
2291 cpu = task_cpu(p);
2292 }
2293
Gregory Haskinse7693a32008-01-25 21:08:09 +01002294#ifdef CONFIG_SCHEDSTATS
2295 schedstat_inc(rq, ttwu_count);
2296 if (cpu == this_cpu)
2297 schedstat_inc(rq, ttwu_local);
2298 else {
2299 struct sched_domain *sd;
2300 for_each_domain(this_cpu, sd) {
2301 if (cpu_isset(cpu, sd->span)) {
2302 schedstat_inc(sd, ttwu_wake_remote);
2303 break;
2304 }
2305 }
2306 }
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002307#endif /* CONFIG_SCHEDSTATS */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309out_activate:
2310#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002311 schedstat_inc(p, se.nr_wakeups);
2312 if (sync)
2313 schedstat_inc(p, se.nr_wakeups_sync);
2314 if (orig_cpu != cpu)
2315 schedstat_inc(p, se.nr_wakeups_migrate);
2316 if (cpu == this_cpu)
2317 schedstat_inc(p, se.nr_wakeups_local);
2318 else
2319 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002320 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002321 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 success = 1;
2323
2324out_running:
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002325 trace_sched_wakeup(rq, p);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002326 check_preempt_curr(rq, p, sync);
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002329#ifdef CONFIG_SMP
2330 if (p->sched_class->task_wake_up)
2331 p->sched_class->task_wake_up(rq, p);
2332#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333out:
Gregory Haskins2087a1a2008-06-27 14:30:00 -06002334 current->se.last_wakeup = current->se.sum_exec_runtime;
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 task_rq_unlock(rq, &flags);
2337
2338 return success;
2339}
2340
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002341int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002343 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345EXPORT_SYMBOL(wake_up_process);
2346
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002347int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348{
2349 return try_to_wake_up(p, state, 0);
2350}
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352/*
2353 * Perform scheduler related setup for a newly forked process p.
2354 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002355 *
2356 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002358static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
Ingo Molnardd41f592007-07-09 18:51:59 +02002360 p->se.exec_start = 0;
2361 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002362 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002363 p->se.last_wakeup = 0;
2364 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002365
2366#ifdef CONFIG_SCHEDSTATS
2367 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002368 p->se.sum_sleep_runtime = 0;
2369 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002370 p->se.block_start = 0;
2371 p->se.sleep_max = 0;
2372 p->se.block_max = 0;
2373 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002374 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002375 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002376#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002377
Peter Zijlstrafa717062008-01-25 21:08:27 +01002378 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002379 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002380 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002381
Avi Kivitye107be32007-07-26 13:40:43 +02002382#ifdef CONFIG_PREEMPT_NOTIFIERS
2383 INIT_HLIST_HEAD(&p->preempt_notifiers);
2384#endif
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 /*
2387 * We mark the process as running here, but have not actually
2388 * inserted it onto the runqueue yet. This guarantees that
2389 * nobody will actually run it, and a signal or other external
2390 * event cannot wake it up and insert it on the runqueue either.
2391 */
2392 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002393}
2394
2395/*
2396 * fork()/clone()-time setup:
2397 */
2398void sched_fork(struct task_struct *p, int clone_flags)
2399{
2400 int cpu = get_cpu();
2401
2402 __sched_fork(p);
2403
2404#ifdef CONFIG_SMP
2405 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2406#endif
Ingo Molnar02e4bac22007-10-15 17:00:11 +02002407 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002408
2409 /*
2410 * Make sure we do not leak PI boosting priority to the child:
2411 */
2412 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002413 if (!rt_prio(p->prio))
2414 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002415
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002416#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002417 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002418 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002420#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002421 p->oncpu = 0;
2422#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002424 /* Want to start with kernel preemption disabled. */
Al Viroa1261f542005-11-13 16:06:55 -08002425 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002427 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428}
2429
2430/*
2431 * wake_up_new_task - wake up a newly created task for the first time.
2432 *
2433 * This function will do some initial scheduler statistics housekeeping
2434 * that must be done for every newly created context, then puts the task
2435 * on the runqueue and wakes it.
2436 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002437void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
2439 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002440 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
2442 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002444 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
2446 p->prio = effective_prio(p);
2447
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002448 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002449 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002452 * Let the scheduling class do new task startup
2453 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002455 p->sched_class->task_new(rq, p);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02002456 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 }
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002458 trace_sched_wakeup_new(rq, p);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002459 check_preempt_curr(rq, p, 0);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002460#ifdef CONFIG_SMP
2461 if (p->sched_class->task_wake_up)
2462 p->sched_class->task_wake_up(rq, p);
2463#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002464 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465}
2466
Avi Kivitye107be32007-07-26 13:40:43 +02002467#ifdef CONFIG_PREEMPT_NOTIFIERS
2468
2469/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002470 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2471 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002472 */
2473void preempt_notifier_register(struct preempt_notifier *notifier)
2474{
2475 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2476}
2477EXPORT_SYMBOL_GPL(preempt_notifier_register);
2478
2479/**
2480 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002481 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002482 *
2483 * This is safe to call from within a preemption notifier.
2484 */
2485void preempt_notifier_unregister(struct preempt_notifier *notifier)
2486{
2487 hlist_del(&notifier->link);
2488}
2489EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2490
2491static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2492{
2493 struct preempt_notifier *notifier;
2494 struct hlist_node *node;
2495
2496 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2497 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2498}
2499
2500static void
2501fire_sched_out_preempt_notifiers(struct task_struct *curr,
2502 struct task_struct *next)
2503{
2504 struct preempt_notifier *notifier;
2505 struct hlist_node *node;
2506
2507 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2508 notifier->ops->sched_out(notifier, next);
2509}
2510
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002511#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002512
2513static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2514{
2515}
2516
2517static void
2518fire_sched_out_preempt_notifiers(struct task_struct *curr,
2519 struct task_struct *next)
2520{
2521}
2522
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002523#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002524
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002526 * prepare_task_switch - prepare to switch tasks
2527 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002528 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002529 * @next: the task we are going to switch to.
2530 *
2531 * This is called with the rq lock held and interrupts off. It must
2532 * be paired with a subsequent finish_task_switch after the context
2533 * switch.
2534 *
2535 * prepare_task_switch sets up locking and calls architecture specific
2536 * hooks.
2537 */
Avi Kivitye107be32007-07-26 13:40:43 +02002538static inline void
2539prepare_task_switch(struct rq *rq, struct task_struct *prev,
2540 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002541{
Avi Kivitye107be32007-07-26 13:40:43 +02002542 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002543 prepare_lock_switch(rq, next);
2544 prepare_arch_switch(next);
2545}
2546
2547/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002549 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 * @prev: the thread we just switched away from.
2551 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002552 * finish_task_switch must be called after the context switch, paired
2553 * with a prepare_task_switch call before the context switch.
2554 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2555 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 *
2557 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002558 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 * with the lock held can cause deadlocks; see schedule() for
2560 * details.)
2561 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002562static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 __releases(rq->lock)
2564{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002566 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
2568 rq->prev_mm = NULL;
2569
2570 /*
2571 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002572 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002573 * schedule one last time. The schedule call will never return, and
2574 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002575 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 * still held, otherwise prev could be scheduled on another cpu, die
2577 * there before we look at prev->state, and then the reference would
2578 * be dropped twice.
2579 * Manfred Spraul <manfred@colorfullife.com>
2580 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002581 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002582 finish_arch_switch(prev);
2583 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002584#ifdef CONFIG_SMP
2585 if (current->sched_class->post_schedule)
2586 current->sched_class->post_schedule(rq);
2587#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002588
Avi Kivitye107be32007-07-26 13:40:43 +02002589 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 if (mm)
2591 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002592 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002593 /*
2594 * Remove function-return probe instances associated with this
2595 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002596 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002597 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600}
2601
2602/**
2603 * schedule_tail - first thing a freshly forked thread must call.
2604 * @prev: the thread we just switched away from.
2605 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002606asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 __releases(rq->lock)
2608{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002609 struct rq *rq = this_rq();
2610
Nick Piggin4866cde2005-06-25 14:57:23 -07002611 finish_task_switch(rq, prev);
2612#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2613 /* In this case, finish_task_switch does not reenable preemption */
2614 preempt_enable();
2615#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002617 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618}
2619
2620/*
2621 * context_switch - switch to the new MM and the new
2622 * thread's register state.
2623 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002624static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002625context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002626 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627{
Ingo Molnardd41f592007-07-09 18:51:59 +02002628 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
Avi Kivitye107be32007-07-26 13:40:43 +02002630 prepare_task_switch(rq, prev, next);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002631 trace_sched_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002632 mm = next->mm;
2633 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002634 /*
2635 * For paravirt, this is coupled with an exit in switch_to to
2636 * combine the page table reload and the switch backend into
2637 * one hypercall.
2638 */
2639 arch_enter_lazy_cpu_mode();
2640
Ingo Molnardd41f592007-07-09 18:51:59 +02002641 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 next->active_mm = oldmm;
2643 atomic_inc(&oldmm->mm_count);
2644 enter_lazy_tlb(oldmm, next);
2645 } else
2646 switch_mm(oldmm, mm, next);
2647
Ingo Molnardd41f592007-07-09 18:51:59 +02002648 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 rq->prev_mm = oldmm;
2651 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002652 /*
2653 * Since the runqueue lock will be released by the next
2654 * task (which is an invalid locking op but in the case
2655 * of the scheduler it's an obvious special-case), so we
2656 * do an early lockdep release here:
2657 */
2658#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002659 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002660#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
2662 /* Here we just switch the register state and the stack. */
2663 switch_to(prev, next, prev);
2664
Ingo Molnardd41f592007-07-09 18:51:59 +02002665 barrier();
2666 /*
2667 * this_rq must be evaluated again because prev may have moved
2668 * CPUs since it called schedule(), thus the 'rq' on its stack
2669 * frame will be invalid.
2670 */
2671 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672}
2673
2674/*
2675 * nr_running, nr_uninterruptible and nr_context_switches:
2676 *
2677 * externally visible scheduler statistics: current number of runnable
2678 * threads, current number of uninterruptible-sleeping threads, total
2679 * number of context switches performed since bootup.
2680 */
2681unsigned long nr_running(void)
2682{
2683 unsigned long i, sum = 0;
2684
2685 for_each_online_cpu(i)
2686 sum += cpu_rq(i)->nr_running;
2687
2688 return sum;
2689}
2690
2691unsigned long nr_uninterruptible(void)
2692{
2693 unsigned long i, sum = 0;
2694
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002695 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 sum += cpu_rq(i)->nr_uninterruptible;
2697
2698 /*
2699 * Since we read the counters lockless, it might be slightly
2700 * inaccurate. Do not allow it to go below zero though:
2701 */
2702 if (unlikely((long)sum < 0))
2703 sum = 0;
2704
2705 return sum;
2706}
2707
2708unsigned long long nr_context_switches(void)
2709{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002710 int i;
2711 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002713 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 sum += cpu_rq(i)->nr_switches;
2715
2716 return sum;
2717}
2718
2719unsigned long nr_iowait(void)
2720{
2721 unsigned long i, sum = 0;
2722
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002723 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2725
2726 return sum;
2727}
2728
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002729unsigned long nr_active(void)
2730{
2731 unsigned long i, running = 0, uninterruptible = 0;
2732
2733 for_each_online_cpu(i) {
2734 running += cpu_rq(i)->nr_running;
2735 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2736 }
2737
2738 if (unlikely((long)uninterruptible < 0))
2739 uninterruptible = 0;
2740
2741 return running + uninterruptible;
2742}
2743
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002745 * Update rq->cpu_load[] statistics. This function is usually called every
2746 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002747 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002748static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002749{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002750 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002751 int i, scale;
2752
2753 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002754
2755 /* Update our load: */
2756 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2757 unsigned long old_load, new_load;
2758
2759 /* scale is effectively 1 << i now, and >> i divides by scale */
2760
2761 old_load = this_rq->cpu_load[i];
2762 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002763 /*
2764 * Round up the averaging division if load is increasing. This
2765 * prevents us from getting stuck on 9 if the load is 10, for
2766 * example.
2767 */
2768 if (new_load > old_load)
2769 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002770 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2771 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002772}
2773
Ingo Molnardd41f592007-07-09 18:51:59 +02002774#ifdef CONFIG_SMP
2775
Ingo Molnar48f24c42006-07-03 00:25:40 -07002776/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 * double_rq_lock - safely lock two runqueues
2778 *
2779 * Note this does not disable interrupts like task_rq_lock,
2780 * you need to do so manually before calling.
2781 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002782static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 __acquires(rq1->lock)
2784 __acquires(rq2->lock)
2785{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002786 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 if (rq1 == rq2) {
2788 spin_lock(&rq1->lock);
2789 __acquire(rq2->lock); /* Fake it out ;) */
2790 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002791 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 spin_lock(&rq1->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002793 spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 } else {
2795 spin_lock(&rq2->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002796 spin_lock_nested(&rq1->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 }
2798 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002799 update_rq_clock(rq1);
2800 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801}
2802
2803/*
2804 * double_rq_unlock - safely unlock two runqueues
2805 *
2806 * Note this does not restore interrupts like task_rq_unlock,
2807 * you need to do so manually after calling.
2808 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002809static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 __releases(rq1->lock)
2811 __releases(rq2->lock)
2812{
2813 spin_unlock(&rq1->lock);
2814 if (rq1 != rq2)
2815 spin_unlock(&rq2->lock);
2816 else
2817 __release(rq2->lock);
2818}
2819
2820/*
2821 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2822 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002823static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 __releases(this_rq->lock)
2825 __acquires(busiest->lock)
2826 __acquires(this_rq->lock)
2827{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002828 int ret = 0;
2829
Kirill Korotaev054b9102006-12-10 02:20:11 -08002830 if (unlikely(!irqs_disabled())) {
2831 /* printk() doesn't work good under rq->lock */
2832 spin_unlock(&this_rq->lock);
2833 BUG_ON(1);
2834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002836 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 spin_unlock(&this_rq->lock);
2838 spin_lock(&busiest->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002839 spin_lock_nested(&this_rq->lock, SINGLE_DEPTH_NESTING);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002840 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 } else
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002842 spin_lock_nested(&busiest->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002844 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845}
2846
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02002847static void double_unlock_balance(struct rq *this_rq, struct rq *busiest)
2848 __releases(busiest->lock)
2849{
2850 spin_unlock(&busiest->lock);
2851 lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_);
2852}
2853
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 * If dest_cpu is allowed for this process, migrate the task to it.
2856 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002857 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 * the cpu_allowed mask is restored.
2859 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002860static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002862 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002864 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866 rq = task_rq_lock(p, &flags);
2867 if (!cpu_isset(dest_cpu, p->cpus_allowed)
Max Krasnyanskye761b772008-07-15 04:43:49 -07002868 || unlikely(!cpu_active(dest_cpu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 goto out;
2870
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002871 trace_sched_migrate_task(rq, p, dest_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 /* force the process onto the specified CPU */
2873 if (migrate_task(p, dest_cpu, &req)) {
2874 /* Need to wait for migration thread (might exit: take ref). */
2875 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 get_task_struct(mt);
2878 task_rq_unlock(rq, &flags);
2879 wake_up_process(mt);
2880 put_task_struct(mt);
2881 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002882
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 return;
2884 }
2885out:
2886 task_rq_unlock(rq, &flags);
2887}
2888
2889/*
Nick Piggin476d1392005-06-25 14:57:29 -07002890 * sched_exec - execve() is a valuable balancing opportunity, because at
2891 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 */
2893void sched_exec(void)
2894{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002896 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002898 if (new_cpu != this_cpu)
2899 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900}
2901
2902/*
2903 * pull_task - move a task from a remote runqueue to the local runqueue.
2904 * Both runqueues must be locked.
2905 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002906static void pull_task(struct rq *src_rq, struct task_struct *p,
2907 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002909 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002911 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 /*
2913 * Note that idle threads have a prio of MAX_PRIO, for this test
2914 * to be always true for them.
2915 */
Peter Zijlstra15afe092008-09-20 23:38:02 +02002916 check_preempt_curr(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917}
2918
2919/*
2920 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2921 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002922static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002923int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002924 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002925 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926{
2927 /*
2928 * We do not migrate tasks that are:
2929 * 1) running (obviously), or
2930 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2931 * 3) are cache-hot on their current CPU.
2932 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002933 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2934 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002936 }
Nick Piggin81026792005-06-25 14:57:07 -07002937 *all_pinned = 0;
2938
Ingo Molnarcc367732007-10-15 17:00:18 +02002939 if (task_running(rq, p)) {
2940 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002941 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943
Ingo Molnarda84d962007-10-15 17:00:18 +02002944 /*
2945 * Aggressive migration if:
2946 * 1) task is cache cold, or
2947 * 2) too many balance attempts have failed.
2948 */
2949
Ingo Molnar6bc16652007-10-15 17:00:18 +02002950 if (!task_hot(p, rq->clock, sd) ||
2951 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002952#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002953 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002954 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002955 schedstat_inc(p, se.nr_forced_migrations);
2956 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002957#endif
2958 return 1;
2959 }
2960
Ingo Molnarcc367732007-10-15 17:00:18 +02002961 if (task_hot(p, rq->clock, sd)) {
2962 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002963 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 return 1;
2966}
2967
Peter Williamse1d14842007-10-24 18:23:51 +02002968static unsigned long
2969balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2970 unsigned long max_load_move, struct sched_domain *sd,
2971 enum cpu_idle_type idle, int *all_pinned,
2972 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002973{
Peter Zijlstra051c6762008-06-27 13:41:31 +02002974 int loops = 0, pulled = 0, pinned = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002975 struct task_struct *p;
2976 long rem_load_move = max_load_move;
2977
Peter Williamse1d14842007-10-24 18:23:51 +02002978 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002979 goto out;
2980
2981 pinned = 1;
2982
2983 /*
2984 * Start the load-balancing iterator:
2985 */
2986 p = iterator->start(iterator->arg);
2987next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002988 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002989 goto out;
Peter Zijlstra051c6762008-06-27 13:41:31 +02002990
2991 if ((p->se.load.weight >> 1) > rem_load_move ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002992 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002993 p = iterator->next(iterator->arg);
2994 goto next;
2995 }
2996
2997 pull_task(busiest, p, this_rq, this_cpu);
2998 pulled++;
2999 rem_load_move -= p->se.load.weight;
3000
3001 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003002 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003003 */
Peter Williamse1d14842007-10-24 18:23:51 +02003004 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003005 if (p->prio < *this_best_prio)
3006 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003007 p = iterator->next(iterator->arg);
3008 goto next;
3009 }
3010out:
3011 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003012 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003013 * so we can safely collect pull_task() stats here rather than
3014 * inside pull_task().
3015 */
3016 schedstat_add(sd, lb_gained[idle], pulled);
3017
3018 if (all_pinned)
3019 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003020
3021 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003022}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024/*
Peter Williams43010652007-08-09 11:16:46 +02003025 * move_tasks tries to move up to max_load_move weighted load from busiest to
3026 * this_rq, as part of a balancing operation within domain "sd".
3027 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 *
3029 * Called with both runqueues locked.
3030 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003031static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003032 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003033 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003034 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003036 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003037 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003038 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
Ingo Molnardd41f592007-07-09 18:51:59 +02003040 do {
Peter Williams43010652007-08-09 11:16:46 +02003041 total_load_moved +=
3042 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003043 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003044 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003045 class = class->next;
Gregory Haskinsc4acb2c2008-06-27 14:29:55 -06003046
3047 if (idle == CPU_NEWLY_IDLE && this_rq->nr_running)
3048 break;
3049
Peter Williams43010652007-08-09 11:16:46 +02003050 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Peter Williams43010652007-08-09 11:16:46 +02003052 return total_load_moved > 0;
3053}
3054
Peter Williamse1d14842007-10-24 18:23:51 +02003055static int
3056iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3057 struct sched_domain *sd, enum cpu_idle_type idle,
3058 struct rq_iterator *iterator)
3059{
3060 struct task_struct *p = iterator->start(iterator->arg);
3061 int pinned = 0;
3062
3063 while (p) {
3064 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3065 pull_task(busiest, p, this_rq, this_cpu);
3066 /*
3067 * Right now, this is only the second place pull_task()
3068 * is called, so we can safely collect pull_task()
3069 * stats here rather than inside pull_task().
3070 */
3071 schedstat_inc(sd, lb_gained[idle]);
3072
3073 return 1;
3074 }
3075 p = iterator->next(iterator->arg);
3076 }
3077
3078 return 0;
3079}
3080
Peter Williams43010652007-08-09 11:16:46 +02003081/*
3082 * move_one_task tries to move exactly one task from busiest to this_rq, as
3083 * part of active balancing operations within "domain".
3084 * Returns 1 if successful and 0 otherwise.
3085 *
3086 * Called with both runqueues locked.
3087 */
3088static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3089 struct sched_domain *sd, enum cpu_idle_type idle)
3090{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003091 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003092
3093 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003094 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003095 return 1;
3096
3097 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098}
3099
3100/*
3101 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003102 * domain. It calculates and returns the amount of weighted load which
3103 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 */
3105static struct sched_group *
3106find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003107 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003108 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109{
3110 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3111 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003112 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003113 unsigned long busiest_load_per_task, busiest_nr_running;
3114 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003115 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003116#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3117 int power_savings_balance = 1;
3118 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3119 unsigned long min_nr_running = ULONG_MAX;
3120 struct sched_group *group_min = NULL, *group_leader = NULL;
3121#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
3123 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003124 busiest_load_per_task = busiest_nr_running = 0;
3125 this_load_per_task = this_nr_running = 0;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003126
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003127 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003128 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003129 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003130 load_idx = sd->newidle_idx;
3131 else
3132 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
3134 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003135 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 int local_group;
3137 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003138 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003139 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003140 unsigned long sum_nr_running, sum_weighted_load;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003141 unsigned long sum_avg_load_per_task;
3142 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
3144 local_group = cpu_isset(this_cpu, group->cpumask);
3145
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003146 if (local_group)
3147 balance_cpu = first_cpu(group->cpumask);
3148
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003150 sum_weighted_load = sum_nr_running = avg_load = 0;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003151 sum_avg_load_per_task = avg_load_per_task = 0;
3152
Ken Chen908a7c12007-10-17 16:55:11 +02003153 max_cpu_load = 0;
3154 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
Mike Travis363ab6f2008-05-12 21:21:13 +02003156 for_each_cpu_mask_nr(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003157 struct rq *rq;
3158
3159 if (!cpu_isset(i, *cpus))
3160 continue;
3161
3162 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003163
Suresh Siddha9439aab2007-07-19 21:28:35 +02003164 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003165 *sd_idle = 0;
3166
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003168 if (local_group) {
3169 if (idle_cpu(i) && !first_idle_cpu) {
3170 first_idle_cpu = 1;
3171 balance_cpu = i;
3172 }
3173
Nick Piggina2000572006-02-10 01:51:02 -08003174 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003175 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003176 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003177 if (load > max_cpu_load)
3178 max_cpu_load = load;
3179 if (min_cpu_load > load)
3180 min_cpu_load = load;
3181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
3183 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003184 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003185 sum_weighted_load += weighted_cpuload(i);
Peter Zijlstra408ed062008-06-27 13:41:28 +02003186
3187 sum_avg_load_per_task += cpu_avg_load_per_task(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 }
3189
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003190 /*
3191 * First idle cpu or the first cpu(busiest) in this sched group
3192 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003193 * domains. In the newly idle case, we will allow all the cpu's
3194 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003195 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003196 if (idle != CPU_NEWLY_IDLE && local_group &&
3197 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003198 *balance = 0;
3199 goto ret;
3200 }
3201
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003203 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
3205 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003206 avg_load = sg_div_cpu_power(group,
3207 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
Peter Zijlstra408ed062008-06-27 13:41:28 +02003209
3210 /*
3211 * Consider the group unbalanced when the imbalance is larger
3212 * than the average weight of two tasks.
3213 *
3214 * APZ: with cgroup the avg task weight can vary wildly and
3215 * might not be a suitable number - should we keep a
3216 * normalized nr_running number somewhere that negates
3217 * the hierarchy?
3218 */
3219 avg_load_per_task = sg_div_cpu_power(group,
3220 sum_avg_load_per_task * SCHED_LOAD_SCALE);
3221
3222 if ((max_cpu_load - min_cpu_load) > 2*avg_load_per_task)
Ken Chen908a7c12007-10-17 16:55:11 +02003223 __group_imb = 1;
3224
Eric Dumazet5517d862007-05-08 00:32:57 -07003225 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003226
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 if (local_group) {
3228 this_load = avg_load;
3229 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003230 this_nr_running = sum_nr_running;
3231 this_load_per_task = sum_weighted_load;
3232 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003233 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 max_load = avg_load;
3235 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003236 busiest_nr_running = sum_nr_running;
3237 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003238 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003240
3241#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3242 /*
3243 * Busy processors will not participate in power savings
3244 * balance.
3245 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003246 if (idle == CPU_NOT_IDLE ||
3247 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3248 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003249
3250 /*
3251 * If the local group is idle or completely loaded
3252 * no need to do power savings balance at this domain
3253 */
3254 if (local_group && (this_nr_running >= group_capacity ||
3255 !this_nr_running))
3256 power_savings_balance = 0;
3257
Ingo Molnardd41f592007-07-09 18:51:59 +02003258 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003259 * If a group is already running at full capacity or idle,
3260 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003261 */
3262 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003263 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003264 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003265
Ingo Molnardd41f592007-07-09 18:51:59 +02003266 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003267 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003268 * This is the group from where we need to pick up the load
3269 * for saving power
3270 */
3271 if ((sum_nr_running < min_nr_running) ||
3272 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003273 first_cpu(group->cpumask) <
3274 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003275 group_min = group;
3276 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003277 min_load_per_task = sum_weighted_load /
3278 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003279 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003280
Ingo Molnardd41f592007-07-09 18:51:59 +02003281 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003282 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003283 * capacity but still has some space to pick up some load
3284 * from other group and save more power
3285 */
3286 if (sum_nr_running <= group_capacity - 1) {
3287 if (sum_nr_running > leader_nr_running ||
3288 (sum_nr_running == leader_nr_running &&
3289 first_cpu(group->cpumask) >
3290 first_cpu(group_leader->cpumask))) {
3291 group_leader = group;
3292 leader_nr_running = sum_nr_running;
3293 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003294 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003295group_next:
3296#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 group = group->next;
3298 } while (group != sd->groups);
3299
Peter Williams2dd73a42006-06-27 02:54:34 -07003300 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 goto out_balanced;
3302
3303 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3304
3305 if (this_load >= avg_load ||
3306 100*max_load <= sd->imbalance_pct*this_load)
3307 goto out_balanced;
3308
Peter Williams2dd73a42006-06-27 02:54:34 -07003309 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003310 if (group_imb)
3311 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3312
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 /*
3314 * We're trying to get all the cpus to the average_load, so we don't
3315 * want to push ourselves above the average load, nor do we wish to
3316 * reduce the max loaded cpu below the average load, as either of these
3317 * actions would just result in more rebalancing later, and ping-pong
3318 * tasks around. Thus we look for the minimum possible imbalance.
3319 * Negative imbalances (*we* are more loaded than anyone else) will
3320 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003321 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 * appear as very large values with unsigned longs.
3323 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003324 if (max_load <= busiest_load_per_task)
3325 goto out_balanced;
3326
3327 /*
3328 * In the presence of smp nice balancing, certain scenarios can have
3329 * max load less than avg load(as we skip the groups at or below
3330 * its cpu_power, while calculating max_load..)
3331 */
3332 if (max_load < avg_load) {
3333 *imbalance = 0;
3334 goto small_imbalance;
3335 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003336
3337 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003338 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003339
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003341 *imbalance = min(max_pull * busiest->__cpu_power,
3342 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 / SCHED_LOAD_SCALE;
3344
Peter Williams2dd73a42006-06-27 02:54:34 -07003345 /*
3346 * if *imbalance is less than the average load per runnable task
3347 * there is no gaurantee that any tasks will be moved so we'll have
3348 * a think about bumping its value to force at least one task to be
3349 * moved
3350 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003351 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003352 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003353 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
Peter Williams2dd73a42006-06-27 02:54:34 -07003355small_imbalance:
3356 pwr_move = pwr_now = 0;
3357 imbn = 2;
3358 if (this_nr_running) {
3359 this_load_per_task /= this_nr_running;
3360 if (busiest_load_per_task > this_load_per_task)
3361 imbn = 1;
3362 } else
Peter Zijlstra408ed062008-06-27 13:41:28 +02003363 this_load_per_task = cpu_avg_load_per_task(this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07003364
Peter Zijlstra01c8c572008-10-24 11:06:12 +02003365 if (max_load - this_load + busiest_load_per_task >=
Ingo Molnardd41f592007-07-09 18:51:59 +02003366 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003367 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 return busiest;
3369 }
3370
3371 /*
3372 * OK, we don't have enough imbalance to justify moving tasks,
3373 * however we may be able to increase total CPU power used by
3374 * moving them.
3375 */
3376
Eric Dumazet5517d862007-05-08 00:32:57 -07003377 pwr_now += busiest->__cpu_power *
3378 min(busiest_load_per_task, max_load);
3379 pwr_now += this->__cpu_power *
3380 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 pwr_now /= SCHED_LOAD_SCALE;
3382
3383 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003384 tmp = sg_div_cpu_power(busiest,
3385 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003387 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003388 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389
3390 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003391 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003392 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003393 tmp = sg_div_cpu_power(this,
3394 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003396 tmp = sg_div_cpu_power(this,
3397 busiest_load_per_task * SCHED_LOAD_SCALE);
3398 pwr_move += this->__cpu_power *
3399 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 pwr_move /= SCHED_LOAD_SCALE;
3401
3402 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003403 if (pwr_move > pwr_now)
3404 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 }
3406
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 return busiest;
3408
3409out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003410#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003411 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003412 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003414 if (this == group_leader && group_leader != group_min) {
3415 *imbalance = min_load_per_task;
3416 return group_min;
3417 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003418#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003419ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 *imbalance = 0;
3421 return NULL;
3422}
3423
3424/*
3425 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3426 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003427static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003428find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003429 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003431 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003432 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 int i;
3434
Mike Travis363ab6f2008-05-12 21:21:13 +02003435 for_each_cpu_mask_nr(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003436 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003437
3438 if (!cpu_isset(i, *cpus))
3439 continue;
3440
Ingo Molnar48f24c42006-07-03 00:25:40 -07003441 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003442 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
Ingo Molnardd41f592007-07-09 18:51:59 +02003444 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003445 continue;
3446
Ingo Molnardd41f592007-07-09 18:51:59 +02003447 if (wl > max_load) {
3448 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003449 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 }
3451 }
3452
3453 return busiest;
3454}
3455
3456/*
Nick Piggin77391d72005-06-25 14:57:30 -07003457 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3458 * so long as it is large enough.
3459 */
3460#define MAX_PINNED_INTERVAL 512
3461
3462/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3464 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003466static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003467 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003468 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469{
Peter Williams43010652007-08-09 11:16:46 +02003470 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003473 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003474 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07003475
Mike Travis7c16ec52008-04-04 18:11:11 -07003476 cpus_setall(*cpus);
3477
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003478 /*
3479 * When power savings policy is enabled for the parent domain, idle
3480 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003481 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003482 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003483 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003484 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003485 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003486 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
Ingo Molnar2d723762007-10-15 17:00:12 +02003488 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003490redo:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02003491 update_shares(sd);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003492 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003493 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003494
Chen, Kenneth W06066712006-12-10 02:20:35 -08003495 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003496 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003497
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 if (!group) {
3499 schedstat_inc(sd, lb_nobusyg[idle]);
3500 goto out_balanced;
3501 }
3502
Mike Travis7c16ec52008-04-04 18:11:11 -07003503 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 if (!busiest) {
3505 schedstat_inc(sd, lb_nobusyq[idle]);
3506 goto out_balanced;
3507 }
3508
Nick Piggindb935db2005-06-25 14:57:11 -07003509 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
3511 schedstat_add(sd, lb_imbalance[idle], imbalance);
3512
Peter Williams43010652007-08-09 11:16:46 +02003513 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 if (busiest->nr_running > 1) {
3515 /*
3516 * Attempt to move tasks. If find_busiest_group has found
3517 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003518 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 * correctly treated as an imbalance.
3520 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003521 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003522 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003523 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003524 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003525 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003526 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003527
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003528 /*
3529 * some other cpu did the load balance for us.
3530 */
Peter Williams43010652007-08-09 11:16:46 +02003531 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003532 resched_cpu(this_cpu);
3533
Nick Piggin81026792005-06-25 14:57:07 -07003534 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003535 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003536 cpu_clear(cpu_of(busiest), *cpus);
3537 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003538 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003539 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 }
Nick Piggin81026792005-06-25 14:57:07 -07003542
Peter Williams43010652007-08-09 11:16:46 +02003543 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 schedstat_inc(sd, lb_failed[idle]);
3545 sd->nr_balance_failed++;
3546
3547 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003549 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003550
3551 /* don't kick the migration_thread, if the curr
3552 * task on busiest cpu can't be moved to this_cpu
3553 */
3554 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003555 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003556 all_pinned = 1;
3557 goto out_one_pinned;
3558 }
3559
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 if (!busiest->active_balance) {
3561 busiest->active_balance = 1;
3562 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003563 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003565 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003566 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 wake_up_process(busiest->migration_thread);
3568
3569 /*
3570 * We've kicked active balancing, reset the failure
3571 * counter.
3572 */
Nick Piggin39507452005-06-25 14:57:09 -07003573 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 }
Nick Piggin81026792005-06-25 14:57:07 -07003575 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 sd->nr_balance_failed = 0;
3577
Nick Piggin81026792005-06-25 14:57:07 -07003578 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 /* We were unbalanced, so reset the balancing interval */
3580 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003581 } else {
3582 /*
3583 * If we've begun active balancing, start to back off. This
3584 * case may not be covered by the all_pinned logic if there
3585 * is only 1 task on the busy runqueue (because we don't call
3586 * move_tasks).
3587 */
3588 if (sd->balance_interval < sd->max_interval)
3589 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 }
3591
Peter Williams43010652007-08-09 11:16:46 +02003592 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003593 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003594 ld_moved = -1;
3595
3596 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597
3598out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 schedstat_inc(sd, lb_balanced[idle]);
3600
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003601 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003602
3603out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003605 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3606 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 sd->balance_interval *= 2;
3608
Ingo Molnar48f24c42006-07-03 00:25:40 -07003609 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003610 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003611 ld_moved = -1;
3612 else
3613 ld_moved = 0;
3614out:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02003615 if (ld_moved)
3616 update_shares(sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003617 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618}
3619
3620/*
3621 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3622 * tasks if there is an imbalance.
3623 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003624 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 * this_rq is locked.
3626 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003627static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003628load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3629 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630{
3631 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003632 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003634 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003635 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003636 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003637
3638 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003639
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003640 /*
3641 * When power savings policy is enabled for the parent domain, idle
3642 * sibling can pick up load irrespective of busy siblings. In this case,
3643 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003644 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003645 */
3646 if (sd->flags & SD_SHARE_CPUPOWER &&
3647 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003648 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649
Ingo Molnar2d723762007-10-15 17:00:12 +02003650 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003651redo:
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02003652 update_shares_locked(this_rq, sd);
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003653 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003654 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003656 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003657 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 }
3659
Mike Travis7c16ec52008-04-04 18:11:11 -07003660 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003661 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003662 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003663 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 }
3665
Nick Piggindb935db2005-06-25 14:57:11 -07003666 BUG_ON(busiest == this_rq);
3667
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003668 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003669
Peter Williams43010652007-08-09 11:16:46 +02003670 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003671 if (busiest->nr_running > 1) {
3672 /* Attempt to move tasks */
3673 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003674 /* this_rq->clock is already updated */
3675 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003676 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003677 imbalance, sd, CPU_NEWLY_IDLE,
3678 &all_pinned);
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02003679 double_unlock_balance(this_rq, busiest);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003680
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003681 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003682 cpu_clear(cpu_of(busiest), *cpus);
3683 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003684 goto redo;
3685 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003686 }
3687
Peter Williams43010652007-08-09 11:16:46 +02003688 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003689 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003690 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3691 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003692 return -1;
3693 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003694 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02003696 update_shares_locked(this_rq, sd);
Peter Williams43010652007-08-09 11:16:46 +02003697 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003698
3699out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003700 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003701 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003702 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003703 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003704 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003705
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003706 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707}
3708
3709/*
3710 * idle_balance is called by schedule() if this_cpu is about to become
3711 * idle. Attempts to pull tasks from other CPUs.
3712 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003713static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714{
3715 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003716 int pulled_task = -1;
3717 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003718 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719
3720 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003721 unsigned long interval;
3722
3723 if (!(sd->flags & SD_LOAD_BALANCE))
3724 continue;
3725
3726 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003727 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003728 pulled_task = load_balance_newidle(this_cpu, this_rq,
3729 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003730
3731 interval = msecs_to_jiffies(sd->balance_interval);
3732 if (time_after(next_balance, sd->last_balance + interval))
3733 next_balance = sd->last_balance + interval;
3734 if (pulled_task)
3735 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003737 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003738 /*
3739 * We are going idle. next_balance may be set based on
3740 * a busy processor. So reset next_balance.
3741 */
3742 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744}
3745
3746/*
3747 * active_load_balance is run by migration threads. It pushes running tasks
3748 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3749 * running on each physical CPU where possible, and avoids physical /
3750 * logical imbalances.
3751 *
3752 * Called with busiest_rq locked.
3753 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003754static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755{
Nick Piggin39507452005-06-25 14:57:09 -07003756 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003757 struct sched_domain *sd;
3758 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003759
Ingo Molnar48f24c42006-07-03 00:25:40 -07003760 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003761 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003762 return;
3763
3764 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
3766 /*
Nick Piggin39507452005-06-25 14:57:09 -07003767 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003768 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003769 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 */
Nick Piggin39507452005-06-25 14:57:09 -07003771 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Nick Piggin39507452005-06-25 14:57:09 -07003773 /* move a task from busiest_rq to target_rq */
3774 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003775 update_rq_clock(busiest_rq);
3776 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777
Nick Piggin39507452005-06-25 14:57:09 -07003778 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003779 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003780 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003781 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003782 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
Ingo Molnar48f24c42006-07-03 00:25:40 -07003785 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003786 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787
Peter Williams43010652007-08-09 11:16:46 +02003788 if (move_one_task(target_rq, target_cpu, busiest_rq,
3789 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003790 schedstat_inc(sd, alb_pushed);
3791 else
3792 schedstat_inc(sd, alb_failed);
3793 }
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02003794 double_unlock_balance(busiest_rq, target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795}
3796
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003797#ifdef CONFIG_NO_HZ
3798static struct {
3799 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003800 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003801} nohz ____cacheline_aligned = {
3802 .load_balancer = ATOMIC_INIT(-1),
3803 .cpu_mask = CPU_MASK_NONE,
3804};
3805
Christoph Lameter7835b982006-12-10 02:20:22 -08003806/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003807 * This routine will try to nominate the ilb (idle load balancing)
3808 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3809 * load balancing on behalf of all those cpus. If all the cpus in the system
3810 * go into this tickless mode, then there will be no ilb owner (as there is
3811 * no need for one) and all the cpus will sleep till the next wakeup event
3812 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003813 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003814 * For the ilb owner, tick is not stopped. And this tick will be used
3815 * for idle load balancing. ilb owner will still be part of
3816 * nohz.cpu_mask..
3817 *
3818 * While stopping the tick, this cpu will become the ilb owner if there
3819 * is no other owner. And will be the owner till that cpu becomes busy
3820 * or if all cpus in the system stop their ticks at which point
3821 * there is no need for ilb owner.
3822 *
3823 * When the ilb owner becomes busy, it nominates another owner, during the
3824 * next busy scheduler_tick()
3825 */
3826int select_nohz_load_balancer(int stop_tick)
3827{
3828 int cpu = smp_processor_id();
3829
3830 if (stop_tick) {
3831 cpu_set(cpu, nohz.cpu_mask);
3832 cpu_rq(cpu)->in_nohz_recently = 1;
3833
3834 /*
3835 * If we are going offline and still the leader, give up!
3836 */
Max Krasnyanskye761b772008-07-15 04:43:49 -07003837 if (!cpu_active(cpu) &&
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003838 atomic_read(&nohz.load_balancer) == cpu) {
3839 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3840 BUG();
3841 return 0;
3842 }
3843
3844 /* time for ilb owner also to sleep */
3845 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3846 if (atomic_read(&nohz.load_balancer) == cpu)
3847 atomic_set(&nohz.load_balancer, -1);
3848 return 0;
3849 }
3850
3851 if (atomic_read(&nohz.load_balancer) == -1) {
3852 /* make me the ilb owner */
3853 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3854 return 1;
3855 } else if (atomic_read(&nohz.load_balancer) == cpu)
3856 return 1;
3857 } else {
3858 if (!cpu_isset(cpu, nohz.cpu_mask))
3859 return 0;
3860
3861 cpu_clear(cpu, nohz.cpu_mask);
3862
3863 if (atomic_read(&nohz.load_balancer) == cpu)
3864 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3865 BUG();
3866 }
3867 return 0;
3868}
3869#endif
3870
3871static DEFINE_SPINLOCK(balancing);
3872
3873/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003874 * It checks each scheduling domain to see if it is due to be balanced,
3875 * and initiates a balancing operation if so.
3876 *
3877 * Balancing parameters are set up in arch_init_sched_domains.
3878 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003879static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003880{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003881 int balance = 1;
3882 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003883 unsigned long interval;
3884 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003885 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003886 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003887 int update_next_balance = 0;
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003888 int need_serialize;
Mike Travis7c16ec52008-04-04 18:11:11 -07003889 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003891 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 if (!(sd->flags & SD_LOAD_BALANCE))
3893 continue;
3894
3895 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003896 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 interval *= sd->busy_factor;
3898
3899 /* scale ms to jiffies */
3900 interval = msecs_to_jiffies(interval);
3901 if (unlikely(!interval))
3902 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003903 if (interval > HZ*NR_CPUS/10)
3904 interval = HZ*NR_CPUS/10;
3905
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003906 need_serialize = sd->flags & SD_SERIALIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003908 if (need_serialize) {
Christoph Lameter08c183f2006-12-10 02:20:29 -08003909 if (!spin_trylock(&balancing))
3910 goto out;
3911 }
3912
Christoph Lameterc9819f42006-12-10 02:20:25 -08003913 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003914 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003915 /*
3916 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003917 * longer idle, or one of our SMT siblings is
3918 * not idle.
3919 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003920 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003922 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 }
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003924 if (need_serialize)
Christoph Lameter08c183f2006-12-10 02:20:29 -08003925 spin_unlock(&balancing);
3926out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003927 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003928 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003929 update_next_balance = 1;
3930 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003931
3932 /*
3933 * Stop the load balance at this level. There is another
3934 * CPU in our sched group which is doing load balancing more
3935 * actively.
3936 */
3937 if (!balance)
3938 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003940
3941 /*
3942 * next_balance will be updated only when there is a need.
3943 * When the cpu is attached to null domain for ex, it will not be
3944 * updated.
3945 */
3946 if (likely(update_next_balance))
3947 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003948}
3949
3950/*
3951 * run_rebalance_domains is triggered when needed from the scheduler tick.
3952 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3953 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3954 */
3955static void run_rebalance_domains(struct softirq_action *h)
3956{
Ingo Molnardd41f592007-07-09 18:51:59 +02003957 int this_cpu = smp_processor_id();
3958 struct rq *this_rq = cpu_rq(this_cpu);
3959 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3960 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003961
Ingo Molnardd41f592007-07-09 18:51:59 +02003962 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003963
3964#ifdef CONFIG_NO_HZ
3965 /*
3966 * If this cpu is the owner for idle load balancing, then do the
3967 * balancing on behalf of the other idle cpus whose ticks are
3968 * stopped.
3969 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003970 if (this_rq->idle_at_tick &&
3971 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003972 cpumask_t cpus = nohz.cpu_mask;
3973 struct rq *rq;
3974 int balance_cpu;
3975
Ingo Molnardd41f592007-07-09 18:51:59 +02003976 cpu_clear(this_cpu, cpus);
Mike Travis363ab6f2008-05-12 21:21:13 +02003977 for_each_cpu_mask_nr(balance_cpu, cpus) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003978 /*
3979 * If this cpu gets work to do, stop the load balancing
3980 * work being done for other cpus. Next load
3981 * balancing owner will pick it up.
3982 */
3983 if (need_resched())
3984 break;
3985
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003986 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003987
3988 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003989 if (time_after(this_rq->next_balance, rq->next_balance))
3990 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003991 }
3992 }
3993#endif
3994}
3995
3996/*
3997 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3998 *
3999 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4000 * idle load balancing owner or decide to stop the periodic load balancing,
4001 * if the whole system is idle.
4002 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004003static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004004{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004005#ifdef CONFIG_NO_HZ
4006 /*
4007 * If we were in the nohz mode recently and busy at the current
4008 * scheduler tick, then check if we need to nominate new idle
4009 * load balancer.
4010 */
4011 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4012 rq->in_nohz_recently = 0;
4013
4014 if (atomic_read(&nohz.load_balancer) == cpu) {
4015 cpu_clear(cpu, nohz.cpu_mask);
4016 atomic_set(&nohz.load_balancer, -1);
4017 }
4018
4019 if (atomic_read(&nohz.load_balancer) == -1) {
4020 /*
4021 * simple selection for now: Nominate the
4022 * first cpu in the nohz list to be the next
4023 * ilb owner.
4024 *
4025 * TBD: Traverse the sched domains and nominate
4026 * the nearest cpu in the nohz.cpu_mask.
4027 */
4028 int ilb = first_cpu(nohz.cpu_mask);
4029
Mike Travis434d53b2008-04-04 18:11:04 -07004030 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004031 resched_cpu(ilb);
4032 }
4033 }
4034
4035 /*
4036 * If this cpu is idle and doing idle load balancing for all the
4037 * cpus with ticks stopped, is it time for that to stop?
4038 */
4039 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
4040 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4041 resched_cpu(cpu);
4042 return;
4043 }
4044
4045 /*
4046 * If this cpu is idle and the idle load balancing is done by
4047 * someone else, then no need raise the SCHED_SOFTIRQ
4048 */
4049 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
4050 cpu_isset(cpu, nohz.cpu_mask))
4051 return;
4052#endif
4053 if (time_after_eq(jiffies, rq->next_balance))
4054 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055}
Ingo Molnardd41f592007-07-09 18:51:59 +02004056
4057#else /* CONFIG_SMP */
4058
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059/*
4060 * on UP we do not need to balance between CPUs:
4061 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004062static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063{
4064}
Ingo Molnardd41f592007-07-09 18:51:59 +02004065
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066#endif
4067
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068DEFINE_PER_CPU(struct kernel_stat, kstat);
4069
4070EXPORT_PER_CPU_SYMBOL(kstat);
4071
4072/*
Frank Mayharf06febc2008-09-12 09:54:39 -07004073 * Return any ns on the sched_clock that have not yet been banked in
4074 * @p in case that task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 */
Frank Mayharbb34d922008-09-12 09:54:39 -07004076unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004079 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07004080 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004081
Ingo Molnar41b86e92007-07-09 18:51:58 +02004082 rq = task_rq_lock(p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02004083
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004084 if (task_current(rq, p)) {
Frank Mayharf06febc2008-09-12 09:54:39 -07004085 u64 delta_exec;
4086
Ingo Molnara8e504d2007-08-09 11:16:47 +02004087 update_rq_clock(rq);
4088 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004089 if ((s64)delta_exec > 0)
Frank Mayharbb34d922008-09-12 09:54:39 -07004090 ns = delta_exec;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004091 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07004092
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 task_rq_unlock(rq, &flags);
4094
4095 return ns;
4096}
4097
4098/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 * Account user cpu time to a process.
4100 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 * @cputime: the cpu time spent in user space since the last update
4102 */
4103void account_user_time(struct task_struct *p, cputime_t cputime)
4104{
4105 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4106 cputime64_t tmp;
4107
4108 p->utime = cputime_add(p->utime, cputime);
Frank Mayharf06febc2008-09-12 09:54:39 -07004109 account_group_user_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
4111 /* Add user time to cpustat. */
4112 tmp = cputime_to_cputime64(cputime);
4113 if (TASK_NICE(p) > 0)
4114 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4115 else
4116 cpustat->user = cputime64_add(cpustat->user, tmp);
Jonathan Lim49b5cf32008-07-25 01:48:40 -07004117 /* Account for user time used */
4118 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119}
4120
4121/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004122 * Account guest cpu time to a process.
4123 * @p: the process that the cpu time gets accounted to
4124 * @cputime: the cpu time spent in virtual machine since the last update
4125 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004126static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004127{
4128 cputime64_t tmp;
4129 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4130
4131 tmp = cputime_to_cputime64(cputime);
4132
4133 p->utime = cputime_add(p->utime, cputime);
Frank Mayharf06febc2008-09-12 09:54:39 -07004134 account_group_user_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02004135 p->gtime = cputime_add(p->gtime, cputime);
4136
4137 cpustat->user = cputime64_add(cpustat->user, tmp);
4138 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4139}
4140
4141/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004142 * Account scaled user cpu time to a process.
4143 * @p: the process that the cpu time gets accounted to
4144 * @cputime: the cpu time spent in user space since the last update
4145 */
4146void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4147{
4148 p->utimescaled = cputime_add(p->utimescaled, cputime);
4149}
4150
4151/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 * Account system cpu time to a process.
4153 * @p: the process that the cpu time gets accounted to
4154 * @hardirq_offset: the offset to subtract from hardirq_count()
4155 * @cputime: the cpu time spent in kernel space since the last update
4156 */
4157void account_system_time(struct task_struct *p, int hardirq_offset,
4158 cputime_t cputime)
4159{
4160 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004161 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 cputime64_t tmp;
4163
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004164 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
4165 account_guest_time(p, cputime);
4166 return;
4167 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004168
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 p->stime = cputime_add(p->stime, cputime);
Frank Mayharf06febc2008-09-12 09:54:39 -07004170 account_group_system_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171
4172 /* Add system time to cpustat. */
4173 tmp = cputime_to_cputime64(cputime);
4174 if (hardirq_count() - hardirq_offset)
4175 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4176 else if (softirq_count())
4177 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004178 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004180 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4182 else
4183 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4184 /* Account for system time used */
4185 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186}
4187
4188/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004189 * Account scaled system cpu time to a process.
4190 * @p: the process that the cpu time gets accounted to
4191 * @hardirq_offset: the offset to subtract from hardirq_count()
4192 * @cputime: the cpu time spent in kernel space since the last update
4193 */
4194void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4195{
4196 p->stimescaled = cputime_add(p->stimescaled, cputime);
4197}
4198
4199/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 * Account for involuntary wait time.
4201 * @p: the process from which the cpu time has been stolen
4202 * @steal: the cpu time spent in involuntary wait
4203 */
4204void account_steal_time(struct task_struct *p, cputime_t steal)
4205{
4206 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4207 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004208 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
4210 if (p == rq->idle) {
4211 p->stime = cputime_add(p->stime, steal);
Frank Mayharf06febc2008-09-12 09:54:39 -07004212 account_group_system_time(p, steal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 if (atomic_read(&rq->nr_iowait) > 0)
4214 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4215 else
4216 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004217 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4219}
4220
Christoph Lameter7835b982006-12-10 02:20:22 -08004221/*
Balbir Singh49048622008-09-05 18:12:23 +02004222 * Use precise platform statistics if available:
4223 */
4224#ifdef CONFIG_VIRT_CPU_ACCOUNTING
4225cputime_t task_utime(struct task_struct *p)
4226{
4227 return p->utime;
4228}
4229
4230cputime_t task_stime(struct task_struct *p)
4231{
4232 return p->stime;
4233}
4234#else
4235cputime_t task_utime(struct task_struct *p)
4236{
4237 clock_t utime = cputime_to_clock_t(p->utime),
4238 total = utime + cputime_to_clock_t(p->stime);
4239 u64 temp;
4240
4241 /*
4242 * Use CFS's precise accounting:
4243 */
4244 temp = (u64)nsec_to_clock_t(p->se.sum_exec_runtime);
4245
4246 if (total) {
4247 temp *= utime;
4248 do_div(temp, total);
4249 }
4250 utime = (clock_t)temp;
4251
4252 p->prev_utime = max(p->prev_utime, clock_t_to_cputime(utime));
4253 return p->prev_utime;
4254}
4255
4256cputime_t task_stime(struct task_struct *p)
4257{
4258 clock_t stime;
4259
4260 /*
4261 * Use CFS's precise accounting. (we subtract utime from
4262 * the total, to make sure the total observed by userspace
4263 * grows monotonically - apps rely on that):
4264 */
4265 stime = nsec_to_clock_t(p->se.sum_exec_runtime) -
4266 cputime_to_clock_t(task_utime(p));
4267
4268 if (stime >= 0)
4269 p->prev_stime = max(p->prev_stime, clock_t_to_cputime(stime));
4270
4271 return p->prev_stime;
4272}
4273#endif
4274
4275inline cputime_t task_gtime(struct task_struct *p)
4276{
4277 return p->gtime;
4278}
4279
4280/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004281 * This function gets called by the timer code, with HZ frequency.
4282 * We call it with interrupts disabled.
4283 *
4284 * It also gets called by the fork code, when changing the parent's
4285 * timeslices.
4286 */
4287void scheduler_tick(void)
4288{
Christoph Lameter7835b982006-12-10 02:20:22 -08004289 int cpu = smp_processor_id();
4290 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004291 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004292
4293 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004294
Ingo Molnardd41f592007-07-09 18:51:59 +02004295 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004296 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004297 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004298 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004299 spin_unlock(&rq->lock);
4300
Christoph Lametere418e1c2006-12-10 02:20:23 -08004301#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004302 rq->idle_at_tick = idle_cpu(cpu);
4303 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004304#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305}
4306
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004307#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
4308 defined(CONFIG_PREEMPT_TRACER))
4309
4310static inline unsigned long get_parent_ip(unsigned long addr)
4311{
4312 if (in_lock_functions(addr)) {
4313 addr = CALLER_ADDR2;
4314 if (in_lock_functions(addr))
4315 addr = CALLER_ADDR3;
4316 }
4317 return addr;
4318}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319
Srinivasa Ds43627582008-02-23 15:24:04 -08004320void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004322#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 /*
4324 * Underflow?
4325 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004326 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4327 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004328#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004330#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 /*
4332 * Spinlock count overflowing soon?
4333 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004334 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4335 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004336#endif
4337 if (preempt_count() == val)
4338 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339}
4340EXPORT_SYMBOL(add_preempt_count);
4341
Srinivasa Ds43627582008-02-23 15:24:04 -08004342void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004344#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 /*
4346 * Underflow?
4347 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004348 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4349 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 /*
4351 * Is the spinlock portion underflowing?
4352 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004353 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4354 !(preempt_count() & PREEMPT_MASK)))
4355 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004356#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004357
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004358 if (preempt_count() == val)
4359 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 preempt_count() -= val;
4361}
4362EXPORT_SYMBOL(sub_preempt_count);
4363
4364#endif
4365
4366/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004367 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004369static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370{
Satyam Sharma838225b2007-10-24 18:23:50 +02004371 struct pt_regs *regs = get_irq_regs();
4372
4373 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4374 prev->comm, prev->pid, preempt_count());
4375
Ingo Molnardd41f592007-07-09 18:51:59 +02004376 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07004377 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02004378 if (irqs_disabled())
4379 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004380
4381 if (regs)
4382 show_regs(regs);
4383 else
4384 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004385}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386
Ingo Molnardd41f592007-07-09 18:51:59 +02004387/*
4388 * Various schedule()-time debugging checks and statistics:
4389 */
4390static inline void schedule_debug(struct task_struct *prev)
4391{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004393 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 * schedule() atomically, we ignore that path for now.
4395 * Otherwise, whine if we are scheduling when we should not be.
4396 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02004397 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02004398 __schedule_bug(prev);
4399
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4401
Ingo Molnar2d723762007-10-15 17:00:12 +02004402 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004403#ifdef CONFIG_SCHEDSTATS
4404 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004405 schedstat_inc(this_rq(), bkl_count);
4406 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004407 }
4408#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004409}
4410
4411/*
4412 * Pick up the highest-prio task:
4413 */
4414static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004415pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004416{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004417 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004418 struct task_struct *p;
4419
4420 /*
4421 * Optimization: we know that if all tasks are in
4422 * the fair class we can call that function directly:
4423 */
4424 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004425 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004426 if (likely(p))
4427 return p;
4428 }
4429
4430 class = sched_class_highest;
4431 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004432 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004433 if (p)
4434 return p;
4435 /*
4436 * Will never be NULL as the idle class always
4437 * returns a non-NULL p:
4438 */
4439 class = class->next;
4440 }
4441}
4442
4443/*
4444 * schedule() is the main scheduler function.
4445 */
4446asmlinkage void __sched schedule(void)
4447{
4448 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004449 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004450 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02004451 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02004452
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453need_resched:
4454 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004455 cpu = smp_processor_id();
4456 rq = cpu_rq(cpu);
4457 rcu_qsctr_inc(cpu);
4458 prev = rq->curr;
4459 switch_count = &prev->nivcsw;
4460
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461 release_kernel_lock(prev);
4462need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Ingo Molnardd41f592007-07-09 18:51:59 +02004464 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465
Peter Zijlstra31656512008-07-18 18:01:23 +02004466 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004467 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004468
Peter Zijlstra8cd162c2008-10-15 20:37:23 +02004469 spin_lock_irq(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004470 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004471 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472
Ingo Molnardd41f592007-07-09 18:51:59 +02004473 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Oleg Nesterov16882c12008-06-08 21:20:41 +04004474 if (unlikely(signal_pending_state(prev->state, prev)))
Ingo Molnardd41f592007-07-09 18:51:59 +02004475 prev->state = TASK_RUNNING;
Oleg Nesterov16882c12008-06-08 21:20:41 +04004476 else
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004477 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004478 switch_count = &prev->nvcsw;
4479 }
4480
Steven Rostedt9a897c52008-01-25 21:08:22 +01004481#ifdef CONFIG_SMP
4482 if (prev->sched_class->pre_schedule)
4483 prev->sched_class->pre_schedule(rq, prev);
4484#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004485
Ingo Molnardd41f592007-07-09 18:51:59 +02004486 if (unlikely(!rq->nr_running))
4487 idle_balance(cpu, rq);
4488
Ingo Molnar31ee5292007-08-09 11:16:49 +02004489 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004490 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004493 sched_info_switch(prev, next);
4494
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 rq->nr_switches++;
4496 rq->curr = next;
4497 ++*switch_count;
4498
Ingo Molnardd41f592007-07-09 18:51:59 +02004499 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004500 /*
4501 * the context switch might have flipped the stack from under
4502 * us, hence refresh the local variables.
4503 */
4504 cpu = smp_processor_id();
4505 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 } else
4507 spin_unlock_irq(&rq->lock);
4508
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004509 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004511
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 preempt_enable_no_resched();
4513 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4514 goto need_resched;
4515}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516EXPORT_SYMBOL(schedule);
4517
4518#ifdef CONFIG_PREEMPT
4519/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004520 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004521 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 * occur there and call schedule directly.
4523 */
4524asmlinkage void __sched preempt_schedule(void)
4525{
4526 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004527
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 /*
4529 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004530 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004532 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 return;
4534
Andi Kleen3a5c3592007-10-15 17:00:14 +02004535 do {
4536 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004537 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004538 sub_preempt_count(PREEMPT_ACTIVE);
4539
4540 /*
4541 * Check again in case we missed a preemption opportunity
4542 * between schedule and now.
4543 */
4544 barrier();
4545 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547EXPORT_SYMBOL(preempt_schedule);
4548
4549/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004550 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 * off of irq context.
4552 * Note, that this is called and return with irqs disabled. This will
4553 * protect us against recursive calling from irq.
4554 */
4555asmlinkage void __sched preempt_schedule_irq(void)
4556{
4557 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004558
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004559 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 BUG_ON(ti->preempt_count || !irqs_disabled());
4561
Andi Kleen3a5c3592007-10-15 17:00:14 +02004562 do {
4563 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004564 local_irq_enable();
4565 schedule();
4566 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004567 sub_preempt_count(PREEMPT_ACTIVE);
4568
4569 /*
4570 * Check again in case we missed a preemption opportunity
4571 * between schedule and now.
4572 */
4573 barrier();
4574 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575}
4576
4577#endif /* CONFIG_PREEMPT */
4578
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004579int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4580 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004582 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584EXPORT_SYMBOL(default_wake_function);
4585
4586/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004587 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4588 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 * number) then we wake all the non-exclusive tasks and one exclusive task.
4590 *
4591 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004592 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4594 */
4595static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4596 int nr_exclusive, int sync, void *key)
4597{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004598 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004600 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004601 unsigned flags = curr->flags;
4602
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004604 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 break;
4606 }
4607}
4608
4609/**
4610 * __wake_up - wake up threads blocked on a waitqueue.
4611 * @q: the waitqueue
4612 * @mode: which threads
4613 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004614 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004616void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004617 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618{
4619 unsigned long flags;
4620
4621 spin_lock_irqsave(&q->lock, flags);
4622 __wake_up_common(q, mode, nr_exclusive, 0, key);
4623 spin_unlock_irqrestore(&q->lock, flags);
4624}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625EXPORT_SYMBOL(__wake_up);
4626
4627/*
4628 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4629 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004630void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631{
4632 __wake_up_common(q, mode, 1, 0, NULL);
4633}
4634
4635/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004636 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 * @q: the waitqueue
4638 * @mode: which threads
4639 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4640 *
4641 * The sync wakeup differs that the waker knows that it will schedule
4642 * away soon, so while the target thread will be woken up, it will not
4643 * be migrated to another CPU - ie. the two threads are 'synchronized'
4644 * with each other. This can prevent needless bouncing between CPUs.
4645 *
4646 * On UP it can prevent extra preemption.
4647 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004648void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004649__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650{
4651 unsigned long flags;
4652 int sync = 1;
4653
4654 if (unlikely(!q))
4655 return;
4656
4657 if (unlikely(!nr_exclusive))
4658 sync = 0;
4659
4660 spin_lock_irqsave(&q->lock, flags);
4661 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4662 spin_unlock_irqrestore(&q->lock, flags);
4663}
4664EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4665
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004666/**
4667 * complete: - signals a single thread waiting on this completion
4668 * @x: holds the state of this particular completion
4669 *
4670 * This will wake up a single thread waiting on this completion. Threads will be
4671 * awakened in the same order in which they were queued.
4672 *
4673 * See also complete_all(), wait_for_completion() and related routines.
4674 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004675void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676{
4677 unsigned long flags;
4678
4679 spin_lock_irqsave(&x->wait.lock, flags);
4680 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004681 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 spin_unlock_irqrestore(&x->wait.lock, flags);
4683}
4684EXPORT_SYMBOL(complete);
4685
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004686/**
4687 * complete_all: - signals all threads waiting on this completion
4688 * @x: holds the state of this particular completion
4689 *
4690 * This will wake up all threads waiting on this particular completion event.
4691 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004692void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693{
4694 unsigned long flags;
4695
4696 spin_lock_irqsave(&x->wait.lock, flags);
4697 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004698 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 spin_unlock_irqrestore(&x->wait.lock, flags);
4700}
4701EXPORT_SYMBOL(complete_all);
4702
Andi Kleen8cbbe862007-10-15 17:00:14 +02004703static inline long __sched
4704do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 if (!x->done) {
4707 DECLARE_WAITQUEUE(wait, current);
4708
4709 wait.flags |= WQ_FLAG_EXCLUSIVE;
4710 __add_wait_queue_tail(&x->wait, &wait);
4711 do {
Oleg Nesterov94d3d822008-08-20 16:54:41 -07004712 if (signal_pending_state(state, current)) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04004713 timeout = -ERESTARTSYS;
4714 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004715 }
4716 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004718 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004720 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004722 if (!x->done)
4723 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724 }
4725 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04004726 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004727}
4728
4729static long __sched
4730wait_for_common(struct completion *x, long timeout, int state)
4731{
4732 might_sleep();
4733
4734 spin_lock_irq(&x->wait.lock);
4735 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004737 return timeout;
4738}
4739
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004740/**
4741 * wait_for_completion: - waits for completion of a task
4742 * @x: holds the state of this particular completion
4743 *
4744 * This waits to be signaled for completion of a specific task. It is NOT
4745 * interruptible and there is no timeout.
4746 *
4747 * See also similar routines (i.e. wait_for_completion_timeout()) with timeout
4748 * and interrupt capability. Also see complete().
4749 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004750void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004751{
4752 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753}
4754EXPORT_SYMBOL(wait_for_completion);
4755
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004756/**
4757 * wait_for_completion_timeout: - waits for completion of a task (w/timeout)
4758 * @x: holds the state of this particular completion
4759 * @timeout: timeout value in jiffies
4760 *
4761 * This waits for either a completion of a specific task to be signaled or for a
4762 * specified timeout to expire. The timeout is in jiffies. It is not
4763 * interruptible.
4764 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004765unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4767{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004768 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769}
4770EXPORT_SYMBOL(wait_for_completion_timeout);
4771
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004772/**
4773 * wait_for_completion_interruptible: - waits for completion of a task (w/intr)
4774 * @x: holds the state of this particular completion
4775 *
4776 * This waits for completion of a specific task to be signaled. It is
4777 * interruptible.
4778 */
Andi Kleen8cbbe862007-10-15 17:00:14 +02004779int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780{
Andi Kleen51e97992007-10-18 21:32:55 +02004781 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4782 if (t == -ERESTARTSYS)
4783 return t;
4784 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785}
4786EXPORT_SYMBOL(wait_for_completion_interruptible);
4787
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004788/**
4789 * wait_for_completion_interruptible_timeout: - waits for completion (w/(to,intr))
4790 * @x: holds the state of this particular completion
4791 * @timeout: timeout value in jiffies
4792 *
4793 * This waits for either a completion of a specific task to be signaled or for a
4794 * specified timeout to expire. It is interruptible. The timeout is in jiffies.
4795 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004796unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797wait_for_completion_interruptible_timeout(struct completion *x,
4798 unsigned long timeout)
4799{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004800 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801}
4802EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4803
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004804/**
4805 * wait_for_completion_killable: - waits for completion of a task (killable)
4806 * @x: holds the state of this particular completion
4807 *
4808 * This waits to be signaled for completion of a specific task. It can be
4809 * interrupted by a kill signal.
4810 */
Matthew Wilcox009e5772007-12-06 12:29:54 -05004811int __sched wait_for_completion_killable(struct completion *x)
4812{
4813 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4814 if (t == -ERESTARTSYS)
4815 return t;
4816 return 0;
4817}
4818EXPORT_SYMBOL(wait_for_completion_killable);
4819
Dave Chinnerbe4de352008-08-15 00:40:44 -07004820/**
4821 * try_wait_for_completion - try to decrement a completion without blocking
4822 * @x: completion structure
4823 *
4824 * Returns: 0 if a decrement cannot be done without blocking
4825 * 1 if a decrement succeeded.
4826 *
4827 * If a completion is being used as a counting completion,
4828 * attempt to decrement the counter without blocking. This
4829 * enables us to avoid waiting if the resource the completion
4830 * is protecting is not available.
4831 */
4832bool try_wait_for_completion(struct completion *x)
4833{
4834 int ret = 1;
4835
4836 spin_lock_irq(&x->wait.lock);
4837 if (!x->done)
4838 ret = 0;
4839 else
4840 x->done--;
4841 spin_unlock_irq(&x->wait.lock);
4842 return ret;
4843}
4844EXPORT_SYMBOL(try_wait_for_completion);
4845
4846/**
4847 * completion_done - Test to see if a completion has any waiters
4848 * @x: completion structure
4849 *
4850 * Returns: 0 if there are waiters (wait_for_completion() in progress)
4851 * 1 if there are no waiters.
4852 *
4853 */
4854bool completion_done(struct completion *x)
4855{
4856 int ret = 1;
4857
4858 spin_lock_irq(&x->wait.lock);
4859 if (!x->done)
4860 ret = 0;
4861 spin_unlock_irq(&x->wait.lock);
4862 return ret;
4863}
4864EXPORT_SYMBOL(completion_done);
4865
Andi Kleen8cbbe862007-10-15 17:00:14 +02004866static long __sched
4867sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004868{
4869 unsigned long flags;
4870 wait_queue_t wait;
4871
4872 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873
Andi Kleen8cbbe862007-10-15 17:00:14 +02004874 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
Andi Kleen8cbbe862007-10-15 17:00:14 +02004876 spin_lock_irqsave(&q->lock, flags);
4877 __add_wait_queue(q, &wait);
4878 spin_unlock(&q->lock);
4879 timeout = schedule_timeout(timeout);
4880 spin_lock_irq(&q->lock);
4881 __remove_wait_queue(q, &wait);
4882 spin_unlock_irqrestore(&q->lock, flags);
4883
4884 return timeout;
4885}
4886
4887void __sched interruptible_sleep_on(wait_queue_head_t *q)
4888{
4889 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891EXPORT_SYMBOL(interruptible_sleep_on);
4892
Ingo Molnar0fec1712007-07-09 18:52:01 +02004893long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004894interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004896 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4899
Ingo Molnar0fec1712007-07-09 18:52:01 +02004900void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004902 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904EXPORT_SYMBOL(sleep_on);
4905
Ingo Molnar0fec1712007-07-09 18:52:01 +02004906long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004908 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910EXPORT_SYMBOL(sleep_on_timeout);
4911
Ingo Molnarb29739f2006-06-27 02:54:51 -07004912#ifdef CONFIG_RT_MUTEXES
4913
4914/*
4915 * rt_mutex_setprio - set the current priority of a task
4916 * @p: task
4917 * @prio: prio value (kernel-internal form)
4918 *
4919 * This function changes the 'effective' priority of a task. It does
4920 * not touch ->normal_prio like __setscheduler().
4921 *
4922 * Used by the rt_mutex code to implement priority inheritance logic.
4923 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004924void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004925{
4926 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004927 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004928 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004929 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004930
4931 BUG_ON(prio < 0 || prio > MAX_PRIO);
4932
4933 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004934 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004935
Andrew Mortond5f9f942007-05-08 20:27:06 -07004936 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004937 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004938 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004939 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004940 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004941 if (running)
4942 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004943
4944 if (rt_prio(prio))
4945 p->sched_class = &rt_sched_class;
4946 else
4947 p->sched_class = &fair_sched_class;
4948
Ingo Molnarb29739f2006-06-27 02:54:51 -07004949 p->prio = prio;
4950
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004951 if (running)
4952 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004953 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004954 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004955
4956 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004957 }
4958 task_rq_unlock(rq, &flags);
4959}
4960
4961#endif
4962
Ingo Molnar36c8b582006-07-03 00:25:41 -07004963void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964{
Ingo Molnardd41f592007-07-09 18:51:59 +02004965 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004967 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
4969 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4970 return;
4971 /*
4972 * We have to be careful, if called from sys_setpriority(),
4973 * the task might be in the middle of scheduling on another CPU.
4974 */
4975 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004976 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 /*
4978 * The RT priorities are set via sched_setscheduler(), but we still
4979 * allow the 'normal' nice value to be set - but as expected
4980 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004981 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004983 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 p->static_prio = NICE_TO_PRIO(nice);
4985 goto out_unlock;
4986 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004987 on_rq = p->se.on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004988 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004989 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004992 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004993 old_prio = p->prio;
4994 p->prio = effective_prio(p);
4995 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996
Ingo Molnardd41f592007-07-09 18:51:59 +02004997 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004998 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07005000 * If the task increased its priority or is running and
5001 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07005003 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004 resched_task(rq->curr);
5005 }
5006out_unlock:
5007 task_rq_unlock(rq, &flags);
5008}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009EXPORT_SYMBOL(set_user_nice);
5010
Matt Mackalle43379f2005-05-01 08:59:00 -07005011/*
5012 * can_nice - check if a task can reduce its nice value
5013 * @p: task
5014 * @nice: nice value
5015 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005016int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07005017{
Matt Mackall024f4742005-08-18 11:24:19 -07005018 /* convert nice value [19,-20] to rlimit style value [1,40] */
5019 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005020
Matt Mackalle43379f2005-05-01 08:59:00 -07005021 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
5022 capable(CAP_SYS_NICE));
5023}
5024
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025#ifdef __ARCH_WANT_SYS_NICE
5026
5027/*
5028 * sys_nice - change the priority of the current process.
5029 * @increment: priority increment
5030 *
5031 * sys_setpriority is a more generic, but much slower function that
5032 * does similar things.
5033 */
5034asmlinkage long sys_nice(int increment)
5035{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005036 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
5038 /*
5039 * Setpriority might change our priority at the same moment.
5040 * We don't have to worry. Conceptually one call occurs first
5041 * and we have a single winner.
5042 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005043 if (increment < -40)
5044 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045 if (increment > 40)
5046 increment = 40;
5047
5048 nice = PRIO_TO_NICE(current->static_prio) + increment;
5049 if (nice < -20)
5050 nice = -20;
5051 if (nice > 19)
5052 nice = 19;
5053
Matt Mackalle43379f2005-05-01 08:59:00 -07005054 if (increment < 0 && !can_nice(current, nice))
5055 return -EPERM;
5056
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057 retval = security_task_setnice(current, nice);
5058 if (retval)
5059 return retval;
5060
5061 set_user_nice(current, nice);
5062 return 0;
5063}
5064
5065#endif
5066
5067/**
5068 * task_prio - return the priority value of a given task.
5069 * @p: the task in question.
5070 *
5071 * This is the priority value as seen by users in /proc.
5072 * RT tasks are offset by -200. Normal tasks are centered
5073 * around 0, value goes from -16 to +15.
5074 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005075int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076{
5077 return p->prio - MAX_RT_PRIO;
5078}
5079
5080/**
5081 * task_nice - return the nice value of a given task.
5082 * @p: the task in question.
5083 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005084int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085{
5086 return TASK_NICE(p);
5087}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005088EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089
5090/**
5091 * idle_cpu - is a given cpu idle currently?
5092 * @cpu: the processor in question.
5093 */
5094int idle_cpu(int cpu)
5095{
5096 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5097}
5098
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099/**
5100 * idle_task - return the idle task for a given cpu.
5101 * @cpu: the processor in question.
5102 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005103struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104{
5105 return cpu_rq(cpu)->idle;
5106}
5107
5108/**
5109 * find_process_by_pid - find a process with a matching PID value.
5110 * @pid: the pid in question.
5111 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005112static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005114 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115}
5116
5117/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005118static void
5119__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120{
Ingo Molnardd41f592007-07-09 18:51:59 +02005121 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005122
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005124 switch (p->policy) {
5125 case SCHED_NORMAL:
5126 case SCHED_BATCH:
5127 case SCHED_IDLE:
5128 p->sched_class = &fair_sched_class;
5129 break;
5130 case SCHED_FIFO:
5131 case SCHED_RR:
5132 p->sched_class = &rt_sched_class;
5133 break;
5134 }
5135
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005137 p->normal_prio = normal_prio(p);
5138 /* we are holding p->pi_lock already */
5139 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005140 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141}
5142
Rusty Russell961ccdd2008-06-23 13:55:38 +10005143static int __sched_setscheduler(struct task_struct *p, int policy,
5144 struct sched_param *param, bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005146 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005148 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005149 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150
Steven Rostedt66e53932006-06-27 02:54:44 -07005151 /* may grab non-irq protected spin_locks */
5152 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153recheck:
5154 /* double check policy once rq lock held */
5155 if (policy < 0)
5156 policy = oldpolicy = p->policy;
5157 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005158 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5159 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005160 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161 /*
5162 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005163 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5164 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 */
5166 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005167 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005168 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005170 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171 return -EINVAL;
5172
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005173 /*
5174 * Allow unprivileged RT tasks to decrease priority:
5175 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10005176 if (user && !capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005177 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005178 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005179
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005180 if (!lock_task_sighand(p, &flags))
5181 return -ESRCH;
5182 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5183 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005184
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005185 /* can't set/change the rt policy */
5186 if (policy != p->policy && !rlim_rtprio)
5187 return -EPERM;
5188
5189 /* can't increase priority */
5190 if (param->sched_priority > p->rt_priority &&
5191 param->sched_priority > rlim_rtprio)
5192 return -EPERM;
5193 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005194 /*
5195 * Like positive nice levels, dont allow tasks to
5196 * move out of SCHED_IDLE either:
5197 */
5198 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5199 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005200
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005201 /* can't change other user's priorities */
5202 if ((current->euid != p->euid) &&
5203 (current->euid != p->uid))
5204 return -EPERM;
5205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005207 if (user) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005208#ifdef CONFIG_RT_GROUP_SCHED
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005209 /*
5210 * Do not allow realtime tasks into groups that have no runtime
5211 * assigned.
5212 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02005213 if (rt_bandwidth_enabled() && rt_policy(policy) &&
5214 task_group(p)->rt_bandwidth.rt_runtime == 0)
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005215 return -EPERM;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005216#endif
5217
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005218 retval = security_task_setscheduler(p, policy, param);
5219 if (retval)
5220 return retval;
5221 }
5222
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005224 * make sure no PI-waiters arrive (or leave) while we are
5225 * changing the priority of the task:
5226 */
5227 spin_lock_irqsave(&p->pi_lock, flags);
5228 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229 * To be able to change p->policy safely, the apropriate
5230 * runqueue lock must be held.
5231 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005232 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 /* recheck policy now with rq lock held */
5234 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5235 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005236 __task_rq_unlock(rq);
5237 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238 goto recheck;
5239 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005240 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005241 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005242 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005243 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005244 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005245 if (running)
5246 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02005247
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005249 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02005250
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005251 if (running)
5252 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005253 if (on_rq) {
5254 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005255
5256 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005258 __task_rq_unlock(rq);
5259 spin_unlock_irqrestore(&p->pi_lock, flags);
5260
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005261 rt_mutex_adjust_pi(p);
5262
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 return 0;
5264}
Rusty Russell961ccdd2008-06-23 13:55:38 +10005265
5266/**
5267 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
5268 * @p: the task in question.
5269 * @policy: new policy.
5270 * @param: structure containing the new RT priority.
5271 *
5272 * NOTE that the task may be already dead.
5273 */
5274int sched_setscheduler(struct task_struct *p, int policy,
5275 struct sched_param *param)
5276{
5277 return __sched_setscheduler(p, policy, param, true);
5278}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279EXPORT_SYMBOL_GPL(sched_setscheduler);
5280
Rusty Russell961ccdd2008-06-23 13:55:38 +10005281/**
5282 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
5283 * @p: the task in question.
5284 * @policy: new policy.
5285 * @param: structure containing the new RT priority.
5286 *
5287 * Just like sched_setscheduler, only don't bother checking if the
5288 * current context has permission. For example, this is needed in
5289 * stop_machine(): we create temporary high priority worker threads,
5290 * but our caller might not have that capability.
5291 */
5292int sched_setscheduler_nocheck(struct task_struct *p, int policy,
5293 struct sched_param *param)
5294{
5295 return __sched_setscheduler(p, policy, param, false);
5296}
5297
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005298static int
5299do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301 struct sched_param lparam;
5302 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005303 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304
5305 if (!param || pid < 0)
5306 return -EINVAL;
5307 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5308 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005309
5310 rcu_read_lock();
5311 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005313 if (p != NULL)
5314 retval = sched_setscheduler(p, policy, &lparam);
5315 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005316
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317 return retval;
5318}
5319
5320/**
5321 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5322 * @pid: the pid in question.
5323 * @policy: new policy.
5324 * @param: structure containing the new RT priority.
5325 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005326asmlinkage long
5327sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328{
Jason Baronc21761f2006-01-18 17:43:03 -08005329 /* negative values for policy are not valid */
5330 if (policy < 0)
5331 return -EINVAL;
5332
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 return do_sched_setscheduler(pid, policy, param);
5334}
5335
5336/**
5337 * sys_sched_setparam - set/change the RT priority of a thread
5338 * @pid: the pid in question.
5339 * @param: structure containing the new RT priority.
5340 */
5341asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5342{
5343 return do_sched_setscheduler(pid, -1, param);
5344}
5345
5346/**
5347 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5348 * @pid: the pid in question.
5349 */
5350asmlinkage long sys_sched_getscheduler(pid_t pid)
5351{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005352 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005353 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354
5355 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005356 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
5358 retval = -ESRCH;
5359 read_lock(&tasklist_lock);
5360 p = find_process_by_pid(pid);
5361 if (p) {
5362 retval = security_task_getscheduler(p);
5363 if (!retval)
5364 retval = p->policy;
5365 }
5366 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 return retval;
5368}
5369
5370/**
5371 * sys_sched_getscheduler - get the RT priority of a thread
5372 * @pid: the pid in question.
5373 * @param: structure containing the RT priority.
5374 */
5375asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5376{
5377 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005378 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005379 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380
5381 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005382 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383
5384 read_lock(&tasklist_lock);
5385 p = find_process_by_pid(pid);
5386 retval = -ESRCH;
5387 if (!p)
5388 goto out_unlock;
5389
5390 retval = security_task_getscheduler(p);
5391 if (retval)
5392 goto out_unlock;
5393
5394 lp.sched_priority = p->rt_priority;
5395 read_unlock(&tasklist_lock);
5396
5397 /*
5398 * This one might sleep, we cannot do it with a spinlock held ...
5399 */
5400 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5401
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402 return retval;
5403
5404out_unlock:
5405 read_unlock(&tasklist_lock);
5406 return retval;
5407}
5408
Mike Travisb53e9212008-04-04 18:11:08 -07005409long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07005412 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005413 struct task_struct *p;
5414 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005416 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417 read_lock(&tasklist_lock);
5418
5419 p = find_process_by_pid(pid);
5420 if (!p) {
5421 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005422 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423 return -ESRCH;
5424 }
5425
5426 /*
5427 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005428 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 * usage count and then drop tasklist_lock.
5430 */
5431 get_task_struct(p);
5432 read_unlock(&tasklist_lock);
5433
5434 retval = -EPERM;
5435 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5436 !capable(CAP_SYS_NICE))
5437 goto out_unlock;
5438
David Quigleye7834f82006-06-23 02:03:59 -07005439 retval = security_task_setscheduler(p, 0, NULL);
5440 if (retval)
5441 goto out_unlock;
5442
Mike Travisf9a86fc2008-04-04 18:11:07 -07005443 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005445 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005446 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447
Paul Menage8707d8b2007-10-18 23:40:22 -07005448 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005449 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005450 if (!cpus_subset(new_mask, cpus_allowed)) {
5451 /*
5452 * We must have raced with a concurrent cpuset
5453 * update. Just reset the cpus_allowed to the
5454 * cpuset's cpus_allowed
5455 */
5456 new_mask = cpus_allowed;
5457 goto again;
5458 }
5459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460out_unlock:
5461 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005462 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463 return retval;
5464}
5465
5466static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5467 cpumask_t *new_mask)
5468{
5469 if (len < sizeof(cpumask_t)) {
5470 memset(new_mask, 0, sizeof(cpumask_t));
5471 } else if (len > sizeof(cpumask_t)) {
5472 len = sizeof(cpumask_t);
5473 }
5474 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5475}
5476
5477/**
5478 * sys_sched_setaffinity - set the cpu affinity of a process
5479 * @pid: pid of the process
5480 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5481 * @user_mask_ptr: user-space pointer to the new cpu mask
5482 */
5483asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5484 unsigned long __user *user_mask_ptr)
5485{
5486 cpumask_t new_mask;
5487 int retval;
5488
5489 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5490 if (retval)
5491 return retval;
5492
Mike Travisb53e9212008-04-04 18:11:08 -07005493 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494}
5495
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496long sched_getaffinity(pid_t pid, cpumask_t *mask)
5497{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005498 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005501 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502 read_lock(&tasklist_lock);
5503
5504 retval = -ESRCH;
5505 p = find_process_by_pid(pid);
5506 if (!p)
5507 goto out_unlock;
5508
David Quigleye7834f82006-06-23 02:03:59 -07005509 retval = security_task_getscheduler(p);
5510 if (retval)
5511 goto out_unlock;
5512
Jack Steiner2f7016d2006-02-01 03:05:18 -08005513 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514
5515out_unlock:
5516 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005517 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518
Ulrich Drepper9531b622007-08-09 11:16:46 +02005519 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520}
5521
5522/**
5523 * sys_sched_getaffinity - get the cpu affinity of a process
5524 * @pid: pid of the process
5525 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5526 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5527 */
5528asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5529 unsigned long __user *user_mask_ptr)
5530{
5531 int ret;
5532 cpumask_t mask;
5533
5534 if (len < sizeof(cpumask_t))
5535 return -EINVAL;
5536
5537 ret = sched_getaffinity(pid, &mask);
5538 if (ret < 0)
5539 return ret;
5540
5541 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5542 return -EFAULT;
5543
5544 return sizeof(cpumask_t);
5545}
5546
5547/**
5548 * sys_sched_yield - yield the current processor to other threads.
5549 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005550 * This function yields the current CPU to other tasks. If there are no
5551 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552 */
5553asmlinkage long sys_sched_yield(void)
5554{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005555 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556
Ingo Molnar2d723762007-10-15 17:00:12 +02005557 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005558 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559
5560 /*
5561 * Since we are going to call schedule() anyway, there's
5562 * no need to preempt or enable interrupts:
5563 */
5564 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005565 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566 _raw_spin_unlock(&rq->lock);
5567 preempt_enable_no_resched();
5568
5569 schedule();
5570
5571 return 0;
5572}
5573
Andrew Mortone7b38402006-06-30 01:56:00 -07005574static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005576#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5577 __might_sleep(__FILE__, __LINE__);
5578#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005579 /*
5580 * The BKS might be reacquired before we have dropped
5581 * PREEMPT_ACTIVE, which could trigger a second
5582 * cond_resched() call.
5583 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 do {
5585 add_preempt_count(PREEMPT_ACTIVE);
5586 schedule();
5587 sub_preempt_count(PREEMPT_ACTIVE);
5588 } while (need_resched());
5589}
5590
Herbert Xu02b67cc32008-01-25 21:08:28 +01005591int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592{
Ingo Molnar94142322006-12-29 16:48:13 -08005593 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5594 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595 __cond_resched();
5596 return 1;
5597 }
5598 return 0;
5599}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005600EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601
5602/*
5603 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5604 * call schedule, and on return reacquire the lock.
5605 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005606 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 * operations here to prevent schedule() from being called twice (once via
5608 * spin_unlock(), once by hand).
5609 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005610int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611{
Nick Piggin95c354f2008-01-30 13:31:20 +01005612 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005613 int ret = 0;
5614
Nick Piggin95c354f2008-01-30 13:31:20 +01005615 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005617 if (resched && need_resched())
5618 __cond_resched();
5619 else
5620 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005621 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005624 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626EXPORT_SYMBOL(cond_resched_lock);
5627
5628int __sched cond_resched_softirq(void)
5629{
5630 BUG_ON(!in_softirq());
5631
Ingo Molnar94142322006-12-29 16:48:13 -08005632 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005633 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634 __cond_resched();
5635 local_bh_disable();
5636 return 1;
5637 }
5638 return 0;
5639}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640EXPORT_SYMBOL(cond_resched_softirq);
5641
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642/**
5643 * yield - yield the current processor to other threads.
5644 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005645 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646 * thread runnable and calls sys_sched_yield().
5647 */
5648void __sched yield(void)
5649{
5650 set_current_state(TASK_RUNNING);
5651 sys_sched_yield();
5652}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653EXPORT_SYMBOL(yield);
5654
5655/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005656 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657 * that process accounting knows that this is a task in IO wait state.
5658 *
5659 * But don't do that if it is a deliberate, throttling IO wait (this task
5660 * has set its backing_dev_info: the queue against which it should throttle)
5661 */
5662void __sched io_schedule(void)
5663{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005664 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005666 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667 atomic_inc(&rq->nr_iowait);
5668 schedule();
5669 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005670 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672EXPORT_SYMBOL(io_schedule);
5673
5674long __sched io_schedule_timeout(long timeout)
5675{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005676 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677 long ret;
5678
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005679 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680 atomic_inc(&rq->nr_iowait);
5681 ret = schedule_timeout(timeout);
5682 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005683 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684 return ret;
5685}
5686
5687/**
5688 * sys_sched_get_priority_max - return maximum RT priority.
5689 * @policy: scheduling class.
5690 *
5691 * this syscall returns the maximum rt_priority that can be used
5692 * by a given scheduling class.
5693 */
5694asmlinkage long sys_sched_get_priority_max(int policy)
5695{
5696 int ret = -EINVAL;
5697
5698 switch (policy) {
5699 case SCHED_FIFO:
5700 case SCHED_RR:
5701 ret = MAX_USER_RT_PRIO-1;
5702 break;
5703 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005704 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005705 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706 ret = 0;
5707 break;
5708 }
5709 return ret;
5710}
5711
5712/**
5713 * sys_sched_get_priority_min - return minimum RT priority.
5714 * @policy: scheduling class.
5715 *
5716 * this syscall returns the minimum rt_priority that can be used
5717 * by a given scheduling class.
5718 */
5719asmlinkage long sys_sched_get_priority_min(int policy)
5720{
5721 int ret = -EINVAL;
5722
5723 switch (policy) {
5724 case SCHED_FIFO:
5725 case SCHED_RR:
5726 ret = 1;
5727 break;
5728 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005729 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005730 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731 ret = 0;
5732 }
5733 return ret;
5734}
5735
5736/**
5737 * sys_sched_rr_get_interval - return the default timeslice of a process.
5738 * @pid: pid of the process.
5739 * @interval: userspace pointer to the timeslice value.
5740 *
5741 * this syscall writes the default timeslice value of a given process
5742 * into the user-space timespec buffer. A value of '0' means infinity.
5743 */
5744asmlinkage
5745long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5746{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005747 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005748 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005749 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751
5752 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005753 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754
5755 retval = -ESRCH;
5756 read_lock(&tasklist_lock);
5757 p = find_process_by_pid(pid);
5758 if (!p)
5759 goto out_unlock;
5760
5761 retval = security_task_getscheduler(p);
5762 if (retval)
5763 goto out_unlock;
5764
Ingo Molnar77034932007-12-04 17:04:39 +01005765 /*
5766 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5767 * tasks that are on an otherwise idle runqueue:
5768 */
5769 time_slice = 0;
5770 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005771 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005772 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005773 struct sched_entity *se = &p->se;
5774 unsigned long flags;
5775 struct rq *rq;
5776
5777 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005778 if (rq->cfs.load.weight)
5779 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005780 task_rq_unlock(rq, &flags);
5781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005783 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005786
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787out_unlock:
5788 read_unlock(&tasklist_lock);
5789 return retval;
5790}
5791
Steven Rostedt7c731e02008-05-12 21:20:41 +02005792static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005793
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005794void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005797 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005800 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005801 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005802#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005804 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005806 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807#else
5808 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005809 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005811 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812#endif
5813#ifdef CONFIG_DEBUG_STACK_USAGE
5814 {
Al Viro10ebffd2005-11-13 16:06:56 -08005815 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816 while (!*n)
5817 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005818 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 }
5820#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005821 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005822 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005824 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825}
5826
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005827void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005829 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830
Ingo Molnar4bd77322007-07-11 21:21:47 +02005831#if BITS_PER_LONG == 32
5832 printk(KERN_INFO
5833 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005835 printk(KERN_INFO
5836 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837#endif
5838 read_lock(&tasklist_lock);
5839 do_each_thread(g, p) {
5840 /*
5841 * reset the NMI-timeout, listing all files on a slow
5842 * console might take alot of time:
5843 */
5844 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005845 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005846 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 } while_each_thread(g, p);
5848
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005849 touch_all_softlockup_watchdogs();
5850
Ingo Molnardd41f592007-07-09 18:51:59 +02005851#ifdef CONFIG_SCHED_DEBUG
5852 sysrq_sched_debug_show();
5853#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005855 /*
5856 * Only show locks if all tasks are dumped:
5857 */
5858 if (state_filter == -1)
5859 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860}
5861
Ingo Molnar1df21052007-07-09 18:51:58 +02005862void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5863{
Ingo Molnardd41f592007-07-09 18:51:59 +02005864 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005865}
5866
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005867/**
5868 * init_idle - set up an idle thread for a given CPU
5869 * @idle: task in question
5870 * @cpu: cpu the idle task belongs to
5871 *
5872 * NOTE: this function does not set the idle thread's NEED_RESCHED
5873 * flag, to make booting more robust.
5874 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005875void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005877 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878 unsigned long flags;
5879
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01005880 spin_lock_irqsave(&rq->lock, flags);
5881
Ingo Molnardd41f592007-07-09 18:51:59 +02005882 __sched_fork(idle);
5883 idle->se.exec_start = sched_clock();
5884
Ingo Molnarb29739f2006-06-27 02:54:51 -07005885 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005887 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005890#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5891 idle->oncpu = 1;
5892#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893 spin_unlock_irqrestore(&rq->lock, flags);
5894
5895 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005896#if defined(CONFIG_PREEMPT)
5897 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5898#else
Al Viroa1261f542005-11-13 16:06:55 -08005899 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005900#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005901 /*
5902 * The idle tasks have their own, simple scheduling class:
5903 */
5904 idle->sched_class = &idle_sched_class;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005905 ftrace_graph_init_task(idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906}
5907
5908/*
5909 * In a system that switches off the HZ timer nohz_cpu_mask
5910 * indicates which cpus entered this state. This is used
5911 * in the rcu update to wait only for active cpus. For system
5912 * which do not switch off the HZ timer nohz_cpu_mask should
5913 * always be CPU_MASK_NONE.
5914 */
5915cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5916
Ingo Molnar19978ca2007-11-09 22:39:38 +01005917/*
5918 * Increase the granularity value when there are more CPUs,
5919 * because with more CPUs the 'effective latency' as visible
5920 * to users decreases. But the relationship is not linear,
5921 * so pick a second-best guess by going with the log2 of the
5922 * number of CPUs.
5923 *
5924 * This idea comes from the SD scheduler of Con Kolivas:
5925 */
5926static inline void sched_init_granularity(void)
5927{
5928 unsigned int factor = 1 + ilog2(num_online_cpus());
5929 const unsigned long limit = 200000000;
5930
5931 sysctl_sched_min_granularity *= factor;
5932 if (sysctl_sched_min_granularity > limit)
5933 sysctl_sched_min_granularity = limit;
5934
5935 sysctl_sched_latency *= factor;
5936 if (sysctl_sched_latency > limit)
5937 sysctl_sched_latency = limit;
5938
5939 sysctl_sched_wakeup_granularity *= factor;
Peter Zijlstra55cd5342008-08-04 08:54:26 +02005940
5941 sysctl_sched_shares_ratelimit *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005942}
5943
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944#ifdef CONFIG_SMP
5945/*
5946 * This is how migration works:
5947 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005948 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949 * runqueue and wake up that CPU's migration thread.
5950 * 2) we down() the locked semaphore => thread blocks.
5951 * 3) migration thread wakes up (implicitly it forces the migrated
5952 * thread off the CPU)
5953 * 4) it gets the migration request and checks whether the migrated
5954 * task is still in the wrong runqueue.
5955 * 5) if it's in the wrong runqueue then the migration thread removes
5956 * it and puts it into the right queue.
5957 * 6) migration thread up()s the semaphore.
5958 * 7) we wake up and the migration is done.
5959 */
5960
5961/*
5962 * Change a given task's CPU affinity. Migrate the thread to a
5963 * proper CPU and schedule it away if the CPU it's executing on
5964 * is removed from the allowed bitmask.
5965 *
5966 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005967 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968 * call is not atomic; no spinlocks may be held.
5969 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005970int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005972 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005974 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005975 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976
5977 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005978 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979 ret = -EINVAL;
5980 goto out;
5981 }
5982
David Rientjes9985b0b2008-06-05 12:57:11 -07005983 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current &&
5984 !cpus_equal(p->cpus_allowed, *new_mask))) {
5985 ret = -EINVAL;
5986 goto out;
5987 }
5988
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01005989 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005990 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01005991 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005992 p->cpus_allowed = *new_mask;
5993 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01005994 }
5995
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005997 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998 goto out;
5999
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006000 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001 /* Need help from migration thread: drop lock and wait. */
6002 task_rq_unlock(rq, &flags);
6003 wake_up_process(rq->migration_thread);
6004 wait_for_completion(&req.done);
6005 tlb_migrate_finish(p->mm);
6006 return 0;
6007 }
6008out:
6009 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006010
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011 return ret;
6012}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006013EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014
6015/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006016 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017 * this because either it can't run here any more (set_cpus_allowed()
6018 * away from this CPU, or CPU going down), or because we're
6019 * attempting to rebalance this task on exec (sched_exec).
6020 *
6021 * So we race with normal scheduler movements, but that's OK, as long
6022 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07006023 *
6024 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07006026static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006028 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02006029 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030
Max Krasnyanskye761b772008-07-15 04:43:49 -07006031 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07006032 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033
6034 rq_src = cpu_rq(src_cpu);
6035 rq_dest = cpu_rq(dest_cpu);
6036
6037 double_rq_lock(rq_src, rq_dest);
6038 /* Already moved. */
6039 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006040 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041 /* Affinity changed (again). */
6042 if (!cpu_isset(dest_cpu, p->cpus_allowed))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006043 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044
Ingo Molnardd41f592007-07-09 18:51:59 +02006045 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006046 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006047 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006048
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006050 if (on_rq) {
6051 activate_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02006052 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006054done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07006055 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006056fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07006058 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059}
6060
6061/*
6062 * migration_thread - this is a highprio system thread that performs
6063 * thread migration by bumping thread off CPU then 'pushing' onto
6064 * another runqueue.
6065 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006066static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006069 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070
6071 rq = cpu_rq(cpu);
6072 BUG_ON(rq->migration_thread != current);
6073
6074 set_current_state(TASK_INTERRUPTIBLE);
6075 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006076 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079 spin_lock_irq(&rq->lock);
6080
6081 if (cpu_is_offline(cpu)) {
6082 spin_unlock_irq(&rq->lock);
6083 goto wait_to_die;
6084 }
6085
6086 if (rq->active_balance) {
6087 active_load_balance(rq, cpu);
6088 rq->active_balance = 0;
6089 }
6090
6091 head = &rq->migration_queue;
6092
6093 if (list_empty(head)) {
6094 spin_unlock_irq(&rq->lock);
6095 schedule();
6096 set_current_state(TASK_INTERRUPTIBLE);
6097 continue;
6098 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07006099 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100 list_del_init(head->next);
6101
Nick Piggin674311d2005-06-25 14:57:27 -07006102 spin_unlock(&rq->lock);
6103 __migrate_task(req->task, cpu, req->dest_cpu);
6104 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105
6106 complete(&req->done);
6107 }
6108 __set_current_state(TASK_RUNNING);
6109 return 0;
6110
6111wait_to_die:
6112 /* Wait for kthread_stop */
6113 set_current_state(TASK_INTERRUPTIBLE);
6114 while (!kthread_should_stop()) {
6115 schedule();
6116 set_current_state(TASK_INTERRUPTIBLE);
6117 }
6118 __set_current_state(TASK_RUNNING);
6119 return 0;
6120}
6121
6122#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006123
6124static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
6125{
6126 int ret;
6127
6128 local_irq_disable();
6129 ret = __migrate_task(p, src_cpu, dest_cpu);
6130 local_irq_enable();
6131 return ret;
6132}
6133
Kirill Korotaev054b9102006-12-10 02:20:11 -08006134/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006135 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08006136 * NOTE: interrupts should be disabled by the caller
6137 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006138static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139{
Kirill Korotaevefc30812006-06-27 02:54:32 -07006140 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006142 struct rq *rq;
6143 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144
Andi Kleen3a5c3592007-10-15 17:00:14 +02006145 do {
6146 /* On same node? */
6147 mask = node_to_cpumask(cpu_to_node(dead_cpu));
6148 cpus_and(mask, mask, p->cpus_allowed);
6149 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150
Andi Kleen3a5c3592007-10-15 17:00:14 +02006151 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07006152 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006153 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154
Andi Kleen3a5c3592007-10-15 17:00:14 +02006155 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07006156 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07006157 cpumask_t cpus_allowed;
6158
6159 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd642007-10-18 23:40:46 -07006160 /*
6161 * Try to stay on the same cpuset, where the
6162 * current cpuset may be a subset of all cpus.
6163 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006164 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07006165 * called within calls to cpuset_lock/cpuset_unlock.
6166 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02006167 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07006168 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006169 dest_cpu = any_online_cpu(p->cpus_allowed);
6170 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171
Andi Kleen3a5c3592007-10-15 17:00:14 +02006172 /*
6173 * Don't tell them about moving exiting tasks or
6174 * kernel threads (both mm NULL), since they never
6175 * leave kernel.
6176 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006177 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006178 printk(KERN_INFO "process %d (%s) no "
6179 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006180 task_pid_nr(p), p->comm, dead_cpu);
6181 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006182 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006183 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184}
6185
6186/*
6187 * While a dead CPU has no uninterruptible tasks queued at this point,
6188 * it might still have a nonzero ->nr_uninterruptible counter, because
6189 * for performance reasons the counter is not stricly tracking tasks to
6190 * their home CPUs. So we just add the counter to another CPU's counter,
6191 * to keep the global sum constant after CPU-down:
6192 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006193static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194{
Mike Travis7c16ec52008-04-04 18:11:11 -07006195 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196 unsigned long flags;
6197
6198 local_irq_save(flags);
6199 double_rq_lock(rq_src, rq_dest);
6200 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6201 rq_src->nr_uninterruptible = 0;
6202 double_rq_unlock(rq_src, rq_dest);
6203 local_irq_restore(flags);
6204}
6205
6206/* Run through task list and migrate tasks from the dead cpu. */
6207static void migrate_live_tasks(int src_cpu)
6208{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006209 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006211 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212
Ingo Molnar48f24c42006-07-03 00:25:40 -07006213 do_each_thread(t, p) {
6214 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215 continue;
6216
Ingo Molnar48f24c42006-07-03 00:25:40 -07006217 if (task_cpu(p) == src_cpu)
6218 move_task_off_dead_cpu(src_cpu, p);
6219 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006221 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222}
6223
Ingo Molnardd41f592007-07-09 18:51:59 +02006224/*
6225 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006226 * It does so by boosting its priority to highest possible.
6227 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228 */
6229void sched_idle_next(void)
6230{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006231 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006232 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233 struct task_struct *p = rq->idle;
6234 unsigned long flags;
6235
6236 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006237 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238
Ingo Molnar48f24c42006-07-03 00:25:40 -07006239 /*
6240 * Strictly not necessary since rest of the CPUs are stopped by now
6241 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242 */
6243 spin_lock_irqsave(&rq->lock, flags);
6244
Ingo Molnardd41f592007-07-09 18:51:59 +02006245 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006246
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006247 update_rq_clock(rq);
6248 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249
6250 spin_unlock_irqrestore(&rq->lock, flags);
6251}
6252
Ingo Molnar48f24c42006-07-03 00:25:40 -07006253/*
6254 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255 * offline.
6256 */
6257void idle_task_exit(void)
6258{
6259 struct mm_struct *mm = current->active_mm;
6260
6261 BUG_ON(cpu_online(smp_processor_id()));
6262
6263 if (mm != &init_mm)
6264 switch_mm(mm, &init_mm, current);
6265 mmdrop(mm);
6266}
6267
Kirill Korotaev054b9102006-12-10 02:20:11 -08006268/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006269static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006271 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272
6273 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006274 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275
6276 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006277 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278
Ingo Molnar48f24c42006-07-03 00:25:40 -07006279 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280
6281 /*
6282 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006283 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284 * fine.
6285 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006286 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006287 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006288 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289
Ingo Molnar48f24c42006-07-03 00:25:40 -07006290 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291}
6292
6293/* release_task() removes task from tasklist, so we won't find dead tasks. */
6294static void migrate_dead_tasks(unsigned int dead_cpu)
6295{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006296 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006297 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298
Ingo Molnardd41f592007-07-09 18:51:59 +02006299 for ( ; ; ) {
6300 if (!rq->nr_running)
6301 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006302 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006303 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006304 if (!next)
6305 break;
Dmitry Adamushko79c53792008-06-29 00:16:56 +02006306 next->sched_class->put_prev_task(rq, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02006307 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006308
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309 }
6310}
6311#endif /* CONFIG_HOTPLUG_CPU */
6312
Nick Piggine692ab52007-07-26 13:40:43 +02006313#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6314
6315static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006316 {
6317 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006318 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006319 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006320 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006321};
6322
6323static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006324 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006325 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006326 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006327 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006328 .child = sd_ctl_dir,
6329 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006330 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006331};
6332
6333static struct ctl_table *sd_alloc_ctl_entry(int n)
6334{
6335 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006336 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006337
Nick Piggine692ab52007-07-26 13:40:43 +02006338 return entry;
6339}
6340
Milton Miller6382bc92007-10-15 17:00:19 +02006341static void sd_free_ctl_entry(struct ctl_table **tablep)
6342{
Milton Millercd7900762007-10-17 16:55:11 +02006343 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006344
Milton Millercd7900762007-10-17 16:55:11 +02006345 /*
6346 * In the intermediate directories, both the child directory and
6347 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006348 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02006349 * static strings and all have proc handlers.
6350 */
6351 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006352 if (entry->child)
6353 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02006354 if (entry->proc_handler == NULL)
6355 kfree(entry->procname);
6356 }
Milton Miller6382bc92007-10-15 17:00:19 +02006357
6358 kfree(*tablep);
6359 *tablep = NULL;
6360}
6361
Nick Piggine692ab52007-07-26 13:40:43 +02006362static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006363set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006364 const char *procname, void *data, int maxlen,
6365 mode_t mode, proc_handler *proc_handler)
6366{
Nick Piggine692ab52007-07-26 13:40:43 +02006367 entry->procname = procname;
6368 entry->data = data;
6369 entry->maxlen = maxlen;
6370 entry->mode = mode;
6371 entry->proc_handler = proc_handler;
6372}
6373
6374static struct ctl_table *
6375sd_alloc_ctl_domain_table(struct sched_domain *sd)
6376{
Ingo Molnara5d8c342008-10-09 11:35:51 +02006377 struct ctl_table *table = sd_alloc_ctl_entry(13);
Nick Piggine692ab52007-07-26 13:40:43 +02006378
Milton Millerad1cdc12007-10-15 17:00:19 +02006379 if (table == NULL)
6380 return NULL;
6381
Alexey Dobriyane0361852007-08-09 11:16:46 +02006382 set_table_entry(&table[0], "min_interval", &sd->min_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[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006385 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006386 set_table_entry(&table[2], "busy_idx", &sd->busy_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[3], "idle_idx", &sd->idle_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[4], "newidle_idx", &sd->newidle_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[5], "wake_idx", &sd->wake_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[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006395 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006396 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006397 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006398 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006399 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006400 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006401 &sd->cache_nice_tries,
6402 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006403 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006404 sizeof(int), 0644, proc_dointvec_minmax);
Ingo Molnara5d8c342008-10-09 11:35:51 +02006405 set_table_entry(&table[11], "name", sd->name,
6406 CORENAME_MAX_SIZE, 0444, proc_dostring);
6407 /* &table[12] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006408
6409 return table;
6410}
6411
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006412static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006413{
6414 struct ctl_table *entry, *table;
6415 struct sched_domain *sd;
6416 int domain_num = 0, i;
6417 char buf[32];
6418
6419 for_each_domain(cpu, sd)
6420 domain_num++;
6421 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006422 if (table == NULL)
6423 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006424
6425 i = 0;
6426 for_each_domain(cpu, sd) {
6427 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006428 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006429 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006430 entry->child = sd_alloc_ctl_domain_table(sd);
6431 entry++;
6432 i++;
6433 }
6434 return table;
6435}
6436
6437static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006438static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006439{
6440 int i, cpu_num = num_online_cpus();
6441 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6442 char buf[32];
6443
Milton Miller73785472007-10-24 18:23:48 +02006444 WARN_ON(sd_ctl_dir[0].child);
6445 sd_ctl_dir[0].child = entry;
6446
Milton Millerad1cdc12007-10-15 17:00:19 +02006447 if (entry == NULL)
6448 return;
6449
Milton Miller97b6ea72007-10-15 17:00:19 +02006450 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006451 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006452 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006453 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006454 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006455 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006456 }
Milton Miller73785472007-10-24 18:23:48 +02006457
6458 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006459 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6460}
Milton Miller6382bc92007-10-15 17:00:19 +02006461
Milton Miller73785472007-10-24 18:23:48 +02006462/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006463static void unregister_sched_domain_sysctl(void)
6464{
Milton Miller73785472007-10-24 18:23:48 +02006465 if (sd_sysctl_header)
6466 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006467 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006468 if (sd_ctl_dir[0].child)
6469 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006470}
Nick Piggine692ab52007-07-26 13:40:43 +02006471#else
Milton Miller6382bc92007-10-15 17:00:19 +02006472static void register_sched_domain_sysctl(void)
6473{
6474}
6475static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006476{
6477}
6478#endif
6479
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006480static void set_rq_online(struct rq *rq)
6481{
6482 if (!rq->online) {
6483 const struct sched_class *class;
6484
6485 cpu_set(rq->cpu, rq->rd->online);
6486 rq->online = 1;
6487
6488 for_each_class(class) {
6489 if (class->rq_online)
6490 class->rq_online(rq);
6491 }
6492 }
6493}
6494
6495static void set_rq_offline(struct rq *rq)
6496{
6497 if (rq->online) {
6498 const struct sched_class *class;
6499
6500 for_each_class(class) {
6501 if (class->rq_offline)
6502 class->rq_offline(rq);
6503 }
6504
6505 cpu_clear(rq->cpu, rq->rd->online);
6506 rq->online = 0;
6507 }
6508}
6509
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510/*
6511 * migration_call - callback that gets triggered when a CPU is added.
6512 * Here we can start up the necessary migration thread for the new CPU.
6513 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006514static int __cpuinit
6515migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006518 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006520 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521
6522 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006523
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006525 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006526 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527 if (IS_ERR(p))
6528 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529 kthread_bind(p, cpu);
6530 /* Must be high prio: stop_machine expects to yield to it. */
6531 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006532 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533 task_rq_unlock(rq, &flags);
6534 cpu_rq(cpu)->migration_thread = p;
6535 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006536
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006538 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006539 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006541
6542 /* Update our root-domain */
6543 rq = cpu_rq(cpu);
6544 spin_lock_irqsave(&rq->lock, flags);
6545 if (rq->rd) {
6546 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006547
6548 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006549 }
6550 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006552
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553#ifdef CONFIG_HOTPLUG_CPU
6554 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006555 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006556 if (!cpu_rq(cpu)->migration_thread)
6557 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006558 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006559 kthread_bind(cpu_rq(cpu)->migration_thread,
6560 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561 kthread_stop(cpu_rq(cpu)->migration_thread);
6562 cpu_rq(cpu)->migration_thread = NULL;
6563 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006564
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006566 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006567 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568 migrate_live_tasks(cpu);
6569 rq = cpu_rq(cpu);
6570 kthread_stop(rq->migration_thread);
6571 rq->migration_thread = NULL;
6572 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006573 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006574 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006575 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006577 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6578 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006580 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006581 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006582 migrate_nr_uninterruptible(rq);
6583 BUG_ON(rq->nr_running != 0);
6584
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006585 /*
6586 * No need to migrate the tasks: it was best-effort if
6587 * they didn't take sched_hotcpu_mutex. Just wake up
6588 * the requestors.
6589 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006590 spin_lock_irq(&rq->lock);
6591 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006592 struct migration_req *req;
6593
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006595 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596 list_del_init(&req->list);
6597 complete(&req->done);
6598 }
6599 spin_unlock_irq(&rq->lock);
6600 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006601
Gregory Haskins08f503b2008-03-10 17:59:11 -04006602 case CPU_DYING:
6603 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006604 /* Update our root-domain */
6605 rq = cpu_rq(cpu);
6606 spin_lock_irqsave(&rq->lock, flags);
6607 if (rq->rd) {
6608 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006609 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006610 }
6611 spin_unlock_irqrestore(&rq->lock, flags);
6612 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613#endif
6614 }
6615 return NOTIFY_OK;
6616}
6617
6618/* Register at highest priority so that task migration (migrate_all_tasks)
6619 * happens before everything else.
6620 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006621static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622 .notifier_call = migration_call,
6623 .priority = 10
6624};
6625
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006626static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627{
6628 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006629 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006630
6631 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006632 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6633 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6635 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006636
6637 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006639early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006640#endif
6641
6642#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006643
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006644#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006645
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306646static inline const char *sd_level_to_string(enum sched_domain_level lvl)
6647{
6648 switch (lvl) {
6649 case SD_LV_NONE:
6650 return "NONE";
6651 case SD_LV_SIBLING:
6652 return "SIBLING";
6653 case SD_LV_MC:
6654 return "MC";
6655 case SD_LV_CPU:
6656 return "CPU";
6657 case SD_LV_NODE:
6658 return "NODE";
6659 case SD_LV_ALLNODES:
6660 return "ALLNODES";
6661 case SD_LV_MAX:
6662 return "MAX";
6663
6664 }
6665 return "MAX";
6666}
6667
Mike Travis7c16ec52008-04-04 18:11:11 -07006668static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6669 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006670{
6671 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006672 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006673
Mike Travis434d53b2008-04-04 18:11:04 -07006674 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006675 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006676
6677 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6678
6679 if (!(sd->flags & SD_LOAD_BALANCE)) {
6680 printk("does not load-balance\n");
6681 if (sd->parent)
6682 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6683 " has parent");
6684 return -1;
6685 }
6686
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306687 printk(KERN_CONT "span %s level %s\n",
6688 str, sd_level_to_string(sd->level));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006689
6690 if (!cpu_isset(cpu, sd->span)) {
6691 printk(KERN_ERR "ERROR: domain->span does not contain "
6692 "CPU%d\n", cpu);
6693 }
6694 if (!cpu_isset(cpu, group->cpumask)) {
6695 printk(KERN_ERR "ERROR: domain->groups does not contain"
6696 " CPU%d\n", cpu);
6697 }
6698
6699 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6700 do {
6701 if (!group) {
6702 printk("\n");
6703 printk(KERN_ERR "ERROR: group is NULL\n");
6704 break;
6705 }
6706
6707 if (!group->__cpu_power) {
6708 printk(KERN_CONT "\n");
6709 printk(KERN_ERR "ERROR: domain->cpu_power not "
6710 "set\n");
6711 break;
6712 }
6713
6714 if (!cpus_weight(group->cpumask)) {
6715 printk(KERN_CONT "\n");
6716 printk(KERN_ERR "ERROR: empty group\n");
6717 break;
6718 }
6719
Mike Travis7c16ec52008-04-04 18:11:11 -07006720 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006721 printk(KERN_CONT "\n");
6722 printk(KERN_ERR "ERROR: repeated CPUs\n");
6723 break;
6724 }
6725
Mike Travis7c16ec52008-04-04 18:11:11 -07006726 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006727
Mike Travis434d53b2008-04-04 18:11:04 -07006728 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006729 printk(KERN_CONT " %s", str);
6730
6731 group = group->next;
6732 } while (group != sd->groups);
6733 printk(KERN_CONT "\n");
6734
Mike Travis7c16ec52008-04-04 18:11:11 -07006735 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006736 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6737
Mike Travis7c16ec52008-04-04 18:11:11 -07006738 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006739 printk(KERN_ERR "ERROR: parent span is not a superset "
6740 "of domain->span\n");
6741 return 0;
6742}
6743
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744static void sched_domain_debug(struct sched_domain *sd, int cpu)
6745{
Mike Travis7c16ec52008-04-04 18:11:11 -07006746 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747 int level = 0;
6748
Nick Piggin41c7ce92005-06-25 14:57:24 -07006749 if (!sd) {
6750 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6751 return;
6752 }
6753
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6755
Mike Travis7c16ec52008-04-04 18:11:11 -07006756 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6757 if (!groupmask) {
6758 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6759 return;
6760 }
6761
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006762 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006763 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765 level++;
6766 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006767 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006768 break;
6769 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006770 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006772#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006773# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006774#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006776static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006777{
6778 if (cpus_weight(sd->span) == 1)
6779 return 1;
6780
6781 /* Following flags need at least 2 groups */
6782 if (sd->flags & (SD_LOAD_BALANCE |
6783 SD_BALANCE_NEWIDLE |
6784 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006785 SD_BALANCE_EXEC |
6786 SD_SHARE_CPUPOWER |
6787 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006788 if (sd->groups != sd->groups->next)
6789 return 0;
6790 }
6791
6792 /* Following flags don't use groups */
6793 if (sd->flags & (SD_WAKE_IDLE |
6794 SD_WAKE_AFFINE |
6795 SD_WAKE_BALANCE))
6796 return 0;
6797
6798 return 1;
6799}
6800
Ingo Molnar48f24c42006-07-03 00:25:40 -07006801static int
6802sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006803{
6804 unsigned long cflags = sd->flags, pflags = parent->flags;
6805
6806 if (sd_degenerate(parent))
6807 return 1;
6808
6809 if (!cpus_equal(sd->span, parent->span))
6810 return 0;
6811
6812 /* Does parent contain flags not in child? */
6813 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6814 if (cflags & SD_WAKE_AFFINE)
6815 pflags &= ~SD_WAKE_BALANCE;
6816 /* Flags needing groups don't count if only 1 group in parent */
6817 if (parent->groups == parent->groups->next) {
6818 pflags &= ~(SD_LOAD_BALANCE |
6819 SD_BALANCE_NEWIDLE |
6820 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006821 SD_BALANCE_EXEC |
6822 SD_SHARE_CPUPOWER |
6823 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006824 }
6825 if (~cflags & pflags)
6826 return 0;
6827
6828 return 1;
6829}
6830
Gregory Haskins57d885f2008-01-25 21:08:18 +01006831static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6832{
6833 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006834
6835 spin_lock_irqsave(&rq->lock, flags);
6836
6837 if (rq->rd) {
6838 struct root_domain *old_rd = rq->rd;
6839
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006840 if (cpu_isset(rq->cpu, old_rd->online))
6841 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006842
Gregory Haskinsdc938522008-01-25 21:08:26 +01006843 cpu_clear(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006844
Gregory Haskins57d885f2008-01-25 21:08:18 +01006845 if (atomic_dec_and_test(&old_rd->refcount))
6846 kfree(old_rd);
6847 }
6848
6849 atomic_inc(&rd->refcount);
6850 rq->rd = rd;
6851
Gregory Haskinsdc938522008-01-25 21:08:26 +01006852 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006853 if (cpu_isset(rq->cpu, cpu_online_map))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006854 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006855
6856 spin_unlock_irqrestore(&rq->lock, flags);
6857}
6858
Gregory Haskinsdc938522008-01-25 21:08:26 +01006859static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006860{
6861 memset(rd, 0, sizeof(*rd));
6862
Gregory Haskinsdc938522008-01-25 21:08:26 +01006863 cpus_clear(rd->span);
6864 cpus_clear(rd->online);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006865
6866 cpupri_init(&rd->cpupri);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006867}
6868
6869static void init_defrootdomain(void)
6870{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006871 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006872 atomic_set(&def_root_domain.refcount, 1);
6873}
6874
Gregory Haskinsdc938522008-01-25 21:08:26 +01006875static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006876{
6877 struct root_domain *rd;
6878
6879 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6880 if (!rd)
6881 return NULL;
6882
Gregory Haskinsdc938522008-01-25 21:08:26 +01006883 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006884
6885 return rd;
6886}
6887
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006889 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890 * hold the hotplug lock.
6891 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006892static void
6893cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006895 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006896 struct sched_domain *tmp;
6897
6898 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08006899 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006900 struct sched_domain *parent = tmp->parent;
6901 if (!parent)
6902 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08006903
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006904 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006905 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006906 if (parent->parent)
6907 parent->parent->child = tmp;
Li Zefanf29c9b12008-11-06 09:45:16 +08006908 } else
6909 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07006910 }
6911
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006912 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006913 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006914 if (sd)
6915 sd->child = NULL;
6916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917
6918 sched_domain_debug(sd, cpu);
6919
Gregory Haskins57d885f2008-01-25 21:08:18 +01006920 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006921 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006922}
6923
6924/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006925static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926
6927/* Setup the mask of cpus configured for isolated domains */
6928static int __init isolated_cpu_setup(char *str)
6929{
Mike Travis13b40c12008-07-01 10:32:50 -07006930 static int __initdata ints[NR_CPUS];
6931 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932
6933 str = get_options(str, ARRAY_SIZE(ints), ints);
6934 cpus_clear(cpu_isolated_map);
6935 for (i = 1; i <= ints[0]; i++)
6936 if (ints[i] < NR_CPUS)
6937 cpu_set(ints[i], cpu_isolated_map);
6938 return 1;
6939}
6940
Ingo Molnar8927f492007-10-15 17:00:13 +02006941__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942
6943/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006944 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6945 * to a function which identifies what group(along with sched group) a CPU
6946 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6947 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948 *
6949 * init_sched_build_groups will build a circular linked list of the groups
6950 * covered by the given span, and will set each group's ->cpumask correctly,
6951 * and ->cpu_power to 0.
6952 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006953static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006954init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006955 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006956 struct sched_group **sg,
6957 cpumask_t *tmpmask),
6958 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006959{
6960 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961 int i;
6962
Mike Travis7c16ec52008-04-04 18:11:11 -07006963 cpus_clear(*covered);
6964
Mike Travis363ab6f2008-05-12 21:21:13 +02006965 for_each_cpu_mask_nr(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006966 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006967 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006968 int j;
6969
Mike Travis7c16ec52008-04-04 18:11:11 -07006970 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971 continue;
6972
Mike Travis7c16ec52008-04-04 18:11:11 -07006973 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006974 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975
Mike Travis363ab6f2008-05-12 21:21:13 +02006976 for_each_cpu_mask_nr(j, *span) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006977 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978 continue;
6979
Mike Travis7c16ec52008-04-04 18:11:11 -07006980 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981 cpu_set(j, sg->cpumask);
6982 }
6983 if (!first)
6984 first = sg;
6985 if (last)
6986 last->next = sg;
6987 last = sg;
6988 }
6989 last->next = first;
6990}
6991
John Hawkes9c1cfda2005-09-06 15:18:14 -07006992#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006993
John Hawkes9c1cfda2005-09-06 15:18:14 -07006994#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006995
John Hawkes9c1cfda2005-09-06 15:18:14 -07006996/**
6997 * find_next_best_node - find the next node to include in a sched_domain
6998 * @node: node whose sched_domain we're building
6999 * @used_nodes: nodes already in the sched_domain
7000 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007001 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07007002 * finds the closest node not already in the @used_nodes map.
7003 *
7004 * Should use nodemask_t.
7005 */
Mike Travisc5f59f02008-04-04 18:11:10 -07007006static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007007{
7008 int i, n, val, min_val, best_node = 0;
7009
7010 min_val = INT_MAX;
7011
Mike Travis076ac2a2008-05-12 21:21:12 +02007012 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007013 /* Start at @node */
Mike Travis076ac2a2008-05-12 21:21:12 +02007014 n = (node + i) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007015
7016 if (!nr_cpus_node(n))
7017 continue;
7018
7019 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07007020 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007021 continue;
7022
7023 /* Simple min distance search */
7024 val = node_distance(node, n);
7025
7026 if (val < min_val) {
7027 min_val = val;
7028 best_node = n;
7029 }
7030 }
7031
Mike Travisc5f59f02008-04-04 18:11:10 -07007032 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007033 return best_node;
7034}
7035
7036/**
7037 * sched_domain_node_span - get a cpumask for a node's sched_domain
7038 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07007039 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07007040 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007041 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07007042 * should be one that prevents unnecessary balancing, but also spreads tasks
7043 * out optimally.
7044 */
Mike Travis4bdbaad32008-04-15 16:35:52 -07007045static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007046{
Mike Travisc5f59f02008-04-04 18:11:10 -07007047 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07007048 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007049 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007050
Mike Travis4bdbaad32008-04-15 16:35:52 -07007051 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07007052 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007053
Mike Travis4bdbaad32008-04-15 16:35:52 -07007054 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07007055 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007056
7057 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07007058 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007059
Mike Travisc5f59f02008-04-04 18:11:10 -07007060 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007061 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007062 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007063}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007064#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007065
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007066int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007067
John Hawkes9c1cfda2005-09-06 15:18:14 -07007068/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07007069 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07007070 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071#ifdef CONFIG_SCHED_SMT
7072static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007073static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007074
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007075static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007076cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7077 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007078{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007079 if (sg)
7080 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081 return cpu;
7082}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007083#endif /* CONFIG_SCHED_SMT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007084
Ingo Molnar48f24c42006-07-03 00:25:40 -07007085/*
7086 * multi-core sched-domains:
7087 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007088#ifdef CONFIG_SCHED_MC
7089static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007090static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007091#endif /* CONFIG_SCHED_MC */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007092
7093#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007094static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007095cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7096 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007097{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007098 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07007099
7100 *mask = per_cpu(cpu_sibling_map, cpu);
7101 cpus_and(*mask, *mask, *cpu_map);
7102 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007103 if (sg)
7104 *sg = &per_cpu(sched_group_core, group);
7105 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007106}
7107#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007108static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007109cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7110 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007111{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007112 if (sg)
7113 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007114 return cpu;
7115}
7116#endif
7117
Linus Torvalds1da177e2005-04-16 15:20:36 -07007118static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007119static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007120
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007121static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007122cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7123 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007125 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007126#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07007127 *mask = cpu_coregroup_map(cpu);
7128 cpus_and(*mask, *mask, *cpu_map);
7129 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007130#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07007131 *mask = per_cpu(cpu_sibling_map, cpu);
7132 cpus_and(*mask, *mask, *cpu_map);
7133 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007134#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007135 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007137 if (sg)
7138 *sg = &per_cpu(sched_group_phys, group);
7139 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007140}
7141
7142#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07007143/*
7144 * The init_sched_build_groups can't handle what we want to do with node
7145 * groups, so roll our own. Now each node has its own list of groups which
7146 * gets dynamically allocated.
7147 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07007149static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007150
7151static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007152static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007153
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007154static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007155 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007157 int group;
7158
Mike Travis7c16ec52008-04-04 18:11:11 -07007159 *nodemask = node_to_cpumask(cpu_to_node(cpu));
7160 cpus_and(*nodemask, *nodemask, *cpu_map);
7161 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007162
7163 if (sg)
7164 *sg = &per_cpu(sched_group_allnodes, group);
7165 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007166}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007167
Siddha, Suresh B08069032006-03-27 01:15:23 -08007168static void init_numa_sched_groups_power(struct sched_group *group_head)
7169{
7170 struct sched_group *sg = group_head;
7171 int j;
7172
7173 if (!sg)
7174 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007175 do {
Mike Travis363ab6f2008-05-12 21:21:13 +02007176 for_each_cpu_mask_nr(j, sg->cpumask) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02007177 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007178
Andi Kleen3a5c3592007-10-15 17:00:14 +02007179 sd = &per_cpu(phys_domains, j);
7180 if (j != first_cpu(sd->groups->cpumask)) {
7181 /*
7182 * Only add "power" once for each
7183 * physical package.
7184 */
7185 continue;
7186 }
7187
7188 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007189 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007190 sg = sg->next;
7191 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007192}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007193#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007195#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007196/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07007197static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007198{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007199 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007200
Mike Travis363ab6f2008-05-12 21:21:13 +02007201 for_each_cpu_mask_nr(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007202 struct sched_group **sched_group_nodes
7203 = sched_group_nodes_bycpu[cpu];
7204
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007205 if (!sched_group_nodes)
7206 continue;
7207
Mike Travis076ac2a2008-05-12 21:21:12 +02007208 for (i = 0; i < nr_node_ids; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007209 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7210
Mike Travis7c16ec52008-04-04 18:11:11 -07007211 *nodemask = node_to_cpumask(i);
7212 cpus_and(*nodemask, *nodemask, *cpu_map);
7213 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007214 continue;
7215
7216 if (sg == NULL)
7217 continue;
7218 sg = sg->next;
7219next_sg:
7220 oldsg = sg;
7221 sg = sg->next;
7222 kfree(oldsg);
7223 if (oldsg != sched_group_nodes[i])
7224 goto next_sg;
7225 }
7226 kfree(sched_group_nodes);
7227 sched_group_nodes_bycpu[cpu] = NULL;
7228 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007229}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007230#else /* !CONFIG_NUMA */
Mike Travis7c16ec52008-04-04 18:11:11 -07007231static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007232{
7233}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007234#endif /* CONFIG_NUMA */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007235
Linus Torvalds1da177e2005-04-16 15:20:36 -07007236/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007237 * Initialize sched groups cpu_power.
7238 *
7239 * cpu_power indicates the capacity of sched group, which is used while
7240 * distributing the load between different sched groups in a sched domain.
7241 * Typically cpu_power for all the groups in a sched domain will be same unless
7242 * there are asymmetries in the topology. If there are asymmetries, group
7243 * having more cpu_power will pickup more load compared to the group having
7244 * less cpu_power.
7245 *
7246 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7247 * the maximum number of tasks a group can handle in the presence of other idle
7248 * or lightly loaded groups in the same sched domain.
7249 */
7250static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7251{
7252 struct sched_domain *child;
7253 struct sched_group *group;
7254
7255 WARN_ON(!sd || !sd->groups);
7256
7257 if (cpu != first_cpu(sd->groups->cpumask))
7258 return;
7259
7260 child = sd->child;
7261
Eric Dumazet5517d862007-05-08 00:32:57 -07007262 sd->groups->__cpu_power = 0;
7263
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007264 /*
7265 * For perf policy, if the groups in child domain share resources
7266 * (for example cores sharing some portions of the cache hierarchy
7267 * or SMT), then set this domain groups cpu_power such that each group
7268 * can handle only one task, when there are other idle groups in the
7269 * same sched domain.
7270 */
7271 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7272 (child->flags &
7273 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007274 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007275 return;
7276 }
7277
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007278 /*
7279 * add cpu_power of each child group to this groups cpu_power
7280 */
7281 group = child->groups;
7282 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007283 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007284 group = group->next;
7285 } while (group != child->groups);
7286}
7287
7288/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007289 * Initializers for schedule domains
7290 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7291 */
7292
Ingo Molnara5d8c342008-10-09 11:35:51 +02007293#ifdef CONFIG_SCHED_DEBUG
7294# define SD_INIT_NAME(sd, type) sd->name = #type
7295#else
7296# define SD_INIT_NAME(sd, type) do { } while (0)
7297#endif
7298
Mike Travis7c16ec52008-04-04 18:11:11 -07007299#define SD_INIT(sd, type) sd_init_##type(sd)
Ingo Molnara5d8c342008-10-09 11:35:51 +02007300
Mike Travis7c16ec52008-04-04 18:11:11 -07007301#define SD_INIT_FUNC(type) \
7302static noinline void sd_init_##type(struct sched_domain *sd) \
7303{ \
7304 memset(sd, 0, sizeof(*sd)); \
7305 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007306 sd->level = SD_LV_##type; \
Ingo Molnara5d8c342008-10-09 11:35:51 +02007307 SD_INIT_NAME(sd, type); \
Mike Travis7c16ec52008-04-04 18:11:11 -07007308}
7309
7310SD_INIT_FUNC(CPU)
7311#ifdef CONFIG_NUMA
7312 SD_INIT_FUNC(ALLNODES)
7313 SD_INIT_FUNC(NODE)
7314#endif
7315#ifdef CONFIG_SCHED_SMT
7316 SD_INIT_FUNC(SIBLING)
7317#endif
7318#ifdef CONFIG_SCHED_MC
7319 SD_INIT_FUNC(MC)
7320#endif
7321
7322/*
7323 * To minimize stack usage kmalloc room for cpumasks and share the
7324 * space as the usage in build_sched_domains() dictates. Used only
7325 * if the amount of space is significant.
7326 */
7327struct allmasks {
7328 cpumask_t tmpmask; /* make this one first */
7329 union {
7330 cpumask_t nodemask;
7331 cpumask_t this_sibling_map;
7332 cpumask_t this_core_map;
7333 };
7334 cpumask_t send_covered;
7335
7336#ifdef CONFIG_NUMA
7337 cpumask_t domainspan;
7338 cpumask_t covered;
7339 cpumask_t notcovered;
7340#endif
7341};
7342
7343#if NR_CPUS > 128
7344#define SCHED_CPUMASK_ALLOC 1
7345#define SCHED_CPUMASK_FREE(v) kfree(v)
7346#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
7347#else
7348#define SCHED_CPUMASK_ALLOC 0
7349#define SCHED_CPUMASK_FREE(v)
7350#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
7351#endif
7352
7353#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
7354 ((unsigned long)(a) + offsetof(struct allmasks, v))
7355
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007356static int default_relax_domain_level = -1;
7357
7358static int __init setup_relax_domain_level(char *str)
7359{
Li Zefan30e0e172008-05-13 10:27:17 +08007360 unsigned long val;
7361
7362 val = simple_strtoul(str, NULL, 0);
7363 if (val < SD_LV_MAX)
7364 default_relax_domain_level = val;
7365
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007366 return 1;
7367}
7368__setup("relax_domain_level=", setup_relax_domain_level);
7369
7370static void set_domain_attribute(struct sched_domain *sd,
7371 struct sched_domain_attr *attr)
7372{
7373 int request;
7374
7375 if (!attr || attr->relax_domain_level < 0) {
7376 if (default_relax_domain_level < 0)
7377 return;
7378 else
7379 request = default_relax_domain_level;
7380 } else
7381 request = attr->relax_domain_level;
7382 if (request < sd->level) {
7383 /* turn off idle balance on this domain */
7384 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7385 } else {
7386 /* turn on idle balance on this domain */
7387 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7388 }
7389}
7390
Mike Travis7c16ec52008-04-04 18:11:11 -07007391/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007392 * Build sched domains for a given set of cpus and attach the sched domains
7393 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007395static int __build_sched_domains(const cpumask_t *cpu_map,
7396 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007397{
7398 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007399 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007400 SCHED_CPUMASK_DECLARE(allmasks);
7401 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007402#ifdef CONFIG_NUMA
7403 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007404 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007405
7406 /*
7407 * Allocate the per-node list of sched groups
7408 */
Mike Travis076ac2a2008-05-12 21:21:12 +02007409 sched_group_nodes = kcalloc(nr_node_ids, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007410 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007411 if (!sched_group_nodes) {
7412 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007413 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07007414 }
John Hawkesd1b55132005-09-06 15:18:14 -07007415#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007416
Gregory Haskinsdc938522008-01-25 21:08:26 +01007417 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007418 if (!rd) {
7419 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07007420#ifdef CONFIG_NUMA
7421 kfree(sched_group_nodes);
7422#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007423 return -ENOMEM;
7424 }
7425
Mike Travis7c16ec52008-04-04 18:11:11 -07007426#if SCHED_CPUMASK_ALLOC
7427 /* get space for all scratch cpumask variables */
7428 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7429 if (!allmasks) {
7430 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7431 kfree(rd);
7432#ifdef CONFIG_NUMA
7433 kfree(sched_group_nodes);
7434#endif
7435 return -ENOMEM;
7436 }
7437#endif
7438 tmpmask = (cpumask_t *)allmasks;
7439
7440
7441#ifdef CONFIG_NUMA
7442 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7443#endif
7444
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007446 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447 */
Mike Travis363ab6f2008-05-12 21:21:13 +02007448 for_each_cpu_mask_nr(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07007450 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007451
Mike Travis7c16ec52008-04-04 18:11:11 -07007452 *nodemask = node_to_cpumask(cpu_to_node(i));
7453 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007454
7455#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02007456 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07007457 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007458 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007459 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007460 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007461 sd->span = *cpu_map;
Mike Travis7c16ec52008-04-04 18:11:11 -07007462 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007463 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007464 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007465 } else
7466 p = NULL;
7467
Linus Torvalds1da177e2005-04-16 15:20:36 -07007468 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007469 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007470 set_domain_attribute(sd, attr);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007471 sched_domain_node_span(cpu_to_node(i), &sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007472 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007473 if (p)
7474 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007475 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007476#endif
7477
7478 p = sd;
7479 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007480 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007481 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007482 sd->span = *nodemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007484 if (p)
7485 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007486 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007488#ifdef CONFIG_SCHED_MC
7489 p = sd;
7490 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007491 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007492 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007493 sd->span = cpu_coregroup_map(i);
7494 cpus_and(sd->span, sd->span, *cpu_map);
7495 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007496 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007497 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007498#endif
7499
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500#ifdef CONFIG_SCHED_SMT
7501 p = sd;
7502 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007503 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007504 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007505 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007506 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007508 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007509 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510#endif
7511 }
7512
7513#ifdef CONFIG_SCHED_SMT
7514 /* Set up CPU (sibling) groups */
Mike Travis363ab6f2008-05-12 21:21:13 +02007515 for_each_cpu_mask_nr(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007516 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7517 SCHED_CPUMASK_VAR(send_covered, allmasks);
7518
7519 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7520 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7521 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522 continue;
7523
Ingo Molnardd41f592007-07-09 18:51:59 +02007524 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007525 &cpu_to_cpu_group,
7526 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007527 }
7528#endif
7529
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007530#ifdef CONFIG_SCHED_MC
7531 /* Set up multi-core groups */
Mike Travis363ab6f2008-05-12 21:21:13 +02007532 for_each_cpu_mask_nr(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007533 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7534 SCHED_CPUMASK_VAR(send_covered, allmasks);
7535
7536 *this_core_map = cpu_coregroup_map(i);
7537 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7538 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007539 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007540
Ingo Molnardd41f592007-07-09 18:51:59 +02007541 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007542 &cpu_to_core_group,
7543 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007544 }
7545#endif
7546
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547 /* Set up physical groups */
Mike Travis076ac2a2008-05-12 21:21:12 +02007548 for (i = 0; i < nr_node_ids; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007549 SCHED_CPUMASK_VAR(nodemask, allmasks);
7550 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551
Mike Travis7c16ec52008-04-04 18:11:11 -07007552 *nodemask = node_to_cpumask(i);
7553 cpus_and(*nodemask, *nodemask, *cpu_map);
7554 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007555 continue;
7556
Mike Travis7c16ec52008-04-04 18:11:11 -07007557 init_sched_build_groups(nodemask, cpu_map,
7558 &cpu_to_phys_group,
7559 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007560 }
7561
7562#ifdef CONFIG_NUMA
7563 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007564 if (sd_allnodes) {
7565 SCHED_CPUMASK_VAR(send_covered, allmasks);
7566
7567 init_sched_build_groups(cpu_map, cpu_map,
7568 &cpu_to_allnodes_group,
7569 send_covered, tmpmask);
7570 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007571
Mike Travis076ac2a2008-05-12 21:21:12 +02007572 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007573 /* Set up node groups */
7574 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007575 SCHED_CPUMASK_VAR(nodemask, allmasks);
7576 SCHED_CPUMASK_VAR(domainspan, allmasks);
7577 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007578 int j;
7579
Mike Travis7c16ec52008-04-04 18:11:11 -07007580 *nodemask = node_to_cpumask(i);
7581 cpus_clear(*covered);
7582
7583 cpus_and(*nodemask, *nodemask, *cpu_map);
7584 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007585 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007586 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007587 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007588
Mike Travis4bdbaad32008-04-15 16:35:52 -07007589 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007590 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007591
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007592 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007593 if (!sg) {
7594 printk(KERN_WARNING "Can not alloc domain group for "
7595 "node %d\n", i);
7596 goto error;
7597 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007598 sched_group_nodes[i] = sg;
Mike Travis363ab6f2008-05-12 21:21:13 +02007599 for_each_cpu_mask_nr(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007600 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007601
John Hawkes9c1cfda2005-09-06 15:18:14 -07007602 sd = &per_cpu(node_domains, j);
7603 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007604 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007605 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007606 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007607 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007608 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007609 prev = sg;
7610
Mike Travis076ac2a2008-05-12 21:21:12 +02007611 for (j = 0; j < nr_node_ids; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007612 SCHED_CPUMASK_VAR(notcovered, allmasks);
Mike Travis076ac2a2008-05-12 21:21:12 +02007613 int n = (i + j) % nr_node_ids;
Mike Travisc5f59f02008-04-04 18:11:10 -07007614 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007615
Mike Travis7c16ec52008-04-04 18:11:11 -07007616 cpus_complement(*notcovered, *covered);
7617 cpus_and(*tmpmask, *notcovered, *cpu_map);
7618 cpus_and(*tmpmask, *tmpmask, *domainspan);
7619 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007620 break;
7621
Mike Travis7c16ec52008-04-04 18:11:11 -07007622 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7623 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007624 continue;
7625
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007626 sg = kmalloc_node(sizeof(struct sched_group),
7627 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007628 if (!sg) {
7629 printk(KERN_WARNING
7630 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007631 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007632 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007633 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007634 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007635 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007636 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007637 prev->next = sg;
7638 prev = sg;
7639 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007641#endif
7642
7643 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007644#ifdef CONFIG_SCHED_SMT
Mike Travis363ab6f2008-05-12 21:21:13 +02007645 for_each_cpu_mask_nr(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007646 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7647
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007648 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007649 }
7650#endif
7651#ifdef CONFIG_SCHED_MC
Mike Travis363ab6f2008-05-12 21:21:13 +02007652 for_each_cpu_mask_nr(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007653 struct sched_domain *sd = &per_cpu(core_domains, i);
7654
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007655 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007656 }
7657#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007658
Mike Travis363ab6f2008-05-12 21:21:13 +02007659 for_each_cpu_mask_nr(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007660 struct sched_domain *sd = &per_cpu(phys_domains, i);
7661
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007662 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663 }
7664
John Hawkes9c1cfda2005-09-06 15:18:14 -07007665#ifdef CONFIG_NUMA
Mike Travis076ac2a2008-05-12 21:21:12 +02007666 for (i = 0; i < nr_node_ids; i++)
Siddha, Suresh B08069032006-03-27 01:15:23 -08007667 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007668
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007669 if (sd_allnodes) {
7670 struct sched_group *sg;
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007671
Mike Travis7c16ec52008-04-04 18:11:11 -07007672 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7673 tmpmask);
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007674 init_numa_sched_groups_power(sg);
7675 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007676#endif
7677
Linus Torvalds1da177e2005-04-16 15:20:36 -07007678 /* Attach the domains */
Mike Travis363ab6f2008-05-12 21:21:13 +02007679 for_each_cpu_mask_nr(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680 struct sched_domain *sd;
7681#ifdef CONFIG_SCHED_SMT
7682 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007683#elif defined(CONFIG_SCHED_MC)
7684 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007685#else
7686 sd = &per_cpu(phys_domains, i);
7687#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007688 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007690
Mike Travis7c16ec52008-04-04 18:11:11 -07007691 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007692 return 0;
7693
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007694#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007695error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007696 free_sched_groups(cpu_map, tmpmask);
7697 SCHED_CPUMASK_FREE((void *)allmasks);
Li Zefanca3273f92008-11-07 14:47:21 +08007698 kfree(rd);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007699 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007700#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007701}
Paul Jackson029190c2007-10-18 23:40:20 -07007702
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007703static int build_sched_domains(const cpumask_t *cpu_map)
7704{
7705 return __build_sched_domains(cpu_map, NULL);
7706}
7707
Paul Jackson029190c2007-10-18 23:40:20 -07007708static cpumask_t *doms_cur; /* current sched domains */
7709static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007710static struct sched_domain_attr *dattr_cur;
7711 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007712
7713/*
7714 * Special case: If a kmalloc of a doms_cur partition (array of
7715 * cpumask_t) fails, then fallback to a single sched domain,
7716 * as determined by the single cpumask_t fallback_doms.
7717 */
7718static cpumask_t fallback_doms;
7719
Heiko Carstens22e52b02008-03-12 18:31:59 +01007720void __attribute__((weak)) arch_update_cpu_topology(void)
7721{
7722}
7723
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007724/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007725 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007726 * For now this just excludes isolated cpus, but could be used to
7727 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007728 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007729static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007730{
Milton Miller73785472007-10-24 18:23:48 +02007731 int err;
7732
Heiko Carstens22e52b02008-03-12 18:31:59 +01007733 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007734 ndoms_cur = 1;
7735 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7736 if (!doms_cur)
7737 doms_cur = &fallback_doms;
7738 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007739 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007740 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007741 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007742
7743 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007744}
7745
Mike Travis7c16ec52008-04-04 18:11:11 -07007746static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7747 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748{
Mike Travis7c16ec52008-04-04 18:11:11 -07007749 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007750}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007752/*
7753 * Detach sched domains from a group of cpus specified in cpu_map
7754 * These cpus will now be attached to the NULL domain
7755 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007756static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007757{
Mike Travis7c16ec52008-04-04 18:11:11 -07007758 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007759 int i;
7760
Milton Miller6382bc92007-10-15 17:00:19 +02007761 unregister_sched_domain_sysctl();
7762
Mike Travis363ab6f2008-05-12 21:21:13 +02007763 for_each_cpu_mask_nr(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007764 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007765 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007766 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007767}
7768
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007769/* handle null as "default" */
7770static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7771 struct sched_domain_attr *new, int idx_new)
7772{
7773 struct sched_domain_attr tmp;
7774
7775 /* fast path */
7776 if (!new && !cur)
7777 return 1;
7778
7779 tmp = SD_ATTR_INIT;
7780 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7781 new ? (new + idx_new) : &tmp,
7782 sizeof(struct sched_domain_attr));
7783}
7784
Paul Jackson029190c2007-10-18 23:40:20 -07007785/*
7786 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007787 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007788 * doms_new[] to the current sched domain partitioning, doms_cur[].
7789 * It destroys each deleted domain and builds each new domain.
7790 *
7791 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007792 * The masks don't intersect (don't overlap.) We should setup one
7793 * sched domain for each mask. CPUs not in any of the cpumasks will
7794 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007795 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7796 * it as it is.
7797 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007798 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7799 * ownership of it and will kfree it when done with it. If the caller
Li Zefan700018e2008-11-18 14:02:03 +08007800 * failed the kmalloc call, then it can pass in doms_new == NULL &&
7801 * ndoms_new == 1, and partition_sched_domains() will fallback to
7802 * the single partition 'fallback_doms', it also forces the domains
7803 * to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07007804 *
Li Zefan700018e2008-11-18 14:02:03 +08007805 * If doms_new == NULL it will be replaced with cpu_online_map.
7806 * ndoms_new == 0 is a special case for destroying existing domains,
7807 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007808 *
Paul Jackson029190c2007-10-18 23:40:20 -07007809 * Call with hotplug lock held
7810 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007811void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7812 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007813{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007814 int i, j, n;
Paul Jackson029190c2007-10-18 23:40:20 -07007815
Heiko Carstens712555e2008-04-28 11:33:07 +02007816 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007817
Milton Miller73785472007-10-24 18:23:48 +02007818 /* always unregister in case we don't destroy any domains */
7819 unregister_sched_domain_sysctl();
7820
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007821 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07007822
7823 /* Destroy deleted domains */
7824 for (i = 0; i < ndoms_cur; i++) {
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007825 for (j = 0; j < n; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007826 if (cpus_equal(doms_cur[i], doms_new[j])
7827 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007828 goto match1;
7829 }
7830 /* no match - a current sched domain not in new doms_new[] */
7831 detach_destroy_domains(doms_cur + i);
7832match1:
7833 ;
7834 }
7835
Max Krasnyanskye761b772008-07-15 04:43:49 -07007836 if (doms_new == NULL) {
7837 ndoms_cur = 0;
Max Krasnyanskye761b772008-07-15 04:43:49 -07007838 doms_new = &fallback_doms;
7839 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
7840 dattr_new = NULL;
7841 }
7842
Paul Jackson029190c2007-10-18 23:40:20 -07007843 /* Build new domains */
7844 for (i = 0; i < ndoms_new; i++) {
7845 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007846 if (cpus_equal(doms_new[i], doms_cur[j])
7847 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007848 goto match2;
7849 }
7850 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007851 __build_sched_domains(doms_new + i,
7852 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007853match2:
7854 ;
7855 }
7856
7857 /* Remember the new sched domains */
7858 if (doms_cur != &fallback_doms)
7859 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007860 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007861 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007862 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007863 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007864
7865 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007866
Heiko Carstens712555e2008-04-28 11:33:07 +02007867 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007868}
7869
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007870#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007871int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007872{
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007873 get_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007874
7875 /* Destroy domains first to force the rebuild */
7876 partition_sched_domains(0, NULL, NULL);
7877
Max Krasnyanskye761b772008-07-15 04:43:49 -07007878 rebuild_sched_domains();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007879 put_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007880
Max Krasnyanskye761b772008-07-15 04:43:49 -07007881 return 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007882}
7883
7884static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7885{
7886 int ret;
7887
7888 if (buf[0] != '0' && buf[0] != '1')
7889 return -EINVAL;
7890
7891 if (smt)
7892 sched_smt_power_savings = (buf[0] == '1');
7893 else
7894 sched_mc_power_savings = (buf[0] == '1');
7895
7896 ret = arch_reinit_sched_domains();
7897
7898 return ret ? ret : count;
7899}
7900
Adrian Bunk6707de002007-08-12 18:08:19 +02007901#ifdef CONFIG_SCHED_MC
Andi Kleenf718cd42008-07-29 22:33:52 -07007902static ssize_t sched_mc_power_savings_show(struct sysdev_class *class,
7903 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007904{
7905 return sprintf(page, "%u\n", sched_mc_power_savings);
7906}
Andi Kleenf718cd42008-07-29 22:33:52 -07007907static ssize_t sched_mc_power_savings_store(struct sysdev_class *class,
Adrian Bunk6707de002007-08-12 18:08:19 +02007908 const char *buf, size_t count)
7909{
7910 return sched_power_savings_store(buf, count, 0);
7911}
Andi Kleenf718cd42008-07-29 22:33:52 -07007912static SYSDEV_CLASS_ATTR(sched_mc_power_savings, 0644,
7913 sched_mc_power_savings_show,
7914 sched_mc_power_savings_store);
Adrian Bunk6707de002007-08-12 18:08:19 +02007915#endif
7916
7917#ifdef CONFIG_SCHED_SMT
Andi Kleenf718cd42008-07-29 22:33:52 -07007918static ssize_t sched_smt_power_savings_show(struct sysdev_class *dev,
7919 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007920{
7921 return sprintf(page, "%u\n", sched_smt_power_savings);
7922}
Andi Kleenf718cd42008-07-29 22:33:52 -07007923static ssize_t sched_smt_power_savings_store(struct sysdev_class *dev,
Adrian Bunk6707de002007-08-12 18:08:19 +02007924 const char *buf, size_t count)
7925{
7926 return sched_power_savings_store(buf, count, 1);
7927}
Andi Kleenf718cd42008-07-29 22:33:52 -07007928static SYSDEV_CLASS_ATTR(sched_smt_power_savings, 0644,
7929 sched_smt_power_savings_show,
Adrian Bunk6707de002007-08-12 18:08:19 +02007930 sched_smt_power_savings_store);
7931#endif
7932
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007933int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7934{
7935 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007936
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007937#ifdef CONFIG_SCHED_SMT
7938 if (smt_capable())
7939 err = sysfs_create_file(&cls->kset.kobj,
7940 &attr_sched_smt_power_savings.attr);
7941#endif
7942#ifdef CONFIG_SCHED_MC
7943 if (!err && mc_capable())
7944 err = sysfs_create_file(&cls->kset.kobj,
7945 &attr_sched_mc_power_savings.attr);
7946#endif
7947 return err;
7948}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007949#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007950
Max Krasnyanskye761b772008-07-15 04:43:49 -07007951#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07007952/*
Max Krasnyanskye761b772008-07-15 04:43:49 -07007953 * Add online and remove offline CPUs from the scheduler domains.
7954 * When cpusets are enabled they take over this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007955 */
7956static int update_sched_domains(struct notifier_block *nfb,
7957 unsigned long action, void *hcpu)
7958{
Max Krasnyanskye761b772008-07-15 04:43:49 -07007959 switch (action) {
7960 case CPU_ONLINE:
7961 case CPU_ONLINE_FROZEN:
7962 case CPU_DEAD:
7963 case CPU_DEAD_FROZEN:
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007964 partition_sched_domains(1, NULL, NULL);
Max Krasnyanskye761b772008-07-15 04:43:49 -07007965 return NOTIFY_OK;
7966
7967 default:
7968 return NOTIFY_DONE;
7969 }
7970}
7971#endif
7972
7973static int update_runtime(struct notifier_block *nfb,
7974 unsigned long action, void *hcpu)
7975{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007976 int cpu = (int)(long)hcpu;
7977
Linus Torvalds1da177e2005-04-16 15:20:36 -07007978 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007979 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007980 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007981 disable_runtime(cpu_rq(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982 return NOTIFY_OK;
7983
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007985 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007986 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007987 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007988 enable_runtime(cpu_rq(cpu));
Max Krasnyanskye761b772008-07-15 04:43:49 -07007989 return NOTIFY_OK;
7990
Linus Torvalds1da177e2005-04-16 15:20:36 -07007991 default:
7992 return NOTIFY_DONE;
7993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007994}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007995
7996void __init sched_init_smp(void)
7997{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007998 cpumask_t non_isolated_cpus;
7999
Mike Travis434d53b2008-04-04 18:11:04 -07008000#if defined(CONFIG_NUMA)
8001 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
8002 GFP_KERNEL);
8003 BUG_ON(sched_group_nodes_bycpu == NULL);
8004#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008005 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02008006 mutex_lock(&sched_domains_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008007 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08008008 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07008009 if (cpus_empty(non_isolated_cpus))
8010 cpu_set(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02008011 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008012 put_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07008013
8014#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07008015 /* XXX: Theoretical race here - CPU may be hotplugged now */
8016 hotcpu_notifier(update_sched_domains, 0);
Max Krasnyanskye761b772008-07-15 04:43:49 -07008017#endif
8018
8019 /* RT runtime code needs to handle some hotplug events */
8020 hotcpu_notifier(update_runtime, 0);
8021
Peter Zijlstrab328ca12008-04-29 10:02:46 +02008022 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07008023
8024 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07008025 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07008026 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01008027 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028}
8029#else
8030void __init sched_init_smp(void)
8031{
Ingo Molnar19978ca2007-11-09 22:39:38 +01008032 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008033}
8034#endif /* CONFIG_SMP */
8035
8036int in_sched_functions(unsigned long addr)
8037{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008038 return in_lock_functions(addr) ||
8039 (addr >= (unsigned long)__sched_text_start
8040 && addr < (unsigned long)__sched_text_end);
8041}
8042
Alexey Dobriyana9957442007-10-15 17:00:13 +02008043static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02008044{
8045 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02008046 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02008047#ifdef CONFIG_FAIR_GROUP_SCHED
8048 cfs_rq->rq = rq;
8049#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02008050 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02008051}
8052
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008053static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
8054{
8055 struct rt_prio_array *array;
8056 int i;
8057
8058 array = &rt_rq->active;
8059 for (i = 0; i < MAX_RT_PRIO; i++) {
8060 INIT_LIST_HEAD(array->queue + i);
8061 __clear_bit(i, array->bitmap);
8062 }
8063 /* delimiter for bitsearch: */
8064 __set_bit(MAX_RT_PRIO, array->bitmap);
8065
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008066#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01008067 rt_rq->highest_prio = MAX_RT_PRIO;
8068#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008069#ifdef CONFIG_SMP
8070 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008071 rt_rq->overloaded = 0;
8072#endif
8073
8074 rt_rq->rt_time = 0;
8075 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008076 rt_rq->rt_runtime = 0;
8077 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008078
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008079#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01008080 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008081 rt_rq->rq = rq;
8082#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008083}
8084
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008085#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008086static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
8087 struct sched_entity *se, int cpu, int add,
8088 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008089{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008090 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008091 tg->cfs_rq[cpu] = cfs_rq;
8092 init_cfs_rq(cfs_rq, rq);
8093 cfs_rq->tg = tg;
8094 if (add)
8095 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
8096
8097 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008098 /* se could be NULL for init_task_group */
8099 if (!se)
8100 return;
8101
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008102 if (!parent)
8103 se->cfs_rq = &rq->cfs;
8104 else
8105 se->cfs_rq = parent->my_q;
8106
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008107 se->my_q = cfs_rq;
8108 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008109 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008110 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008111}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008112#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008113
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008114#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008115static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
8116 struct sched_rt_entity *rt_se, int cpu, int add,
8117 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008118{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008119 struct rq *rq = cpu_rq(cpu);
8120
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008121 tg->rt_rq[cpu] = rt_rq;
8122 init_rt_rq(rt_rq, rq);
8123 rt_rq->tg = tg;
8124 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008125 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008126 if (add)
8127 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
8128
8129 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008130 if (!rt_se)
8131 return;
8132
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008133 if (!parent)
8134 rt_se->rt_rq = &rq->rt;
8135 else
8136 rt_se->rt_rq = parent->my_q;
8137
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008138 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008139 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008140 INIT_LIST_HEAD(&rt_se->run_list);
8141}
8142#endif
8143
Linus Torvalds1da177e2005-04-16 15:20:36 -07008144void __init sched_init(void)
8145{
Ingo Molnardd41f592007-07-09 18:51:59 +02008146 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008147 unsigned long alloc_size = 0, ptr;
8148
8149#ifdef CONFIG_FAIR_GROUP_SCHED
8150 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8151#endif
8152#ifdef CONFIG_RT_GROUP_SCHED
8153 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8154#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008155#ifdef CONFIG_USER_SCHED
8156 alloc_size *= 2;
8157#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008158 /*
8159 * As sched_init() is called before page_alloc is setup,
8160 * we use alloc_bootmem().
8161 */
8162 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07008163 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07008164
8165#ifdef CONFIG_FAIR_GROUP_SCHED
8166 init_task_group.se = (struct sched_entity **)ptr;
8167 ptr += nr_cpu_ids * sizeof(void **);
8168
8169 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8170 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008171
8172#ifdef CONFIG_USER_SCHED
8173 root_task_group.se = (struct sched_entity **)ptr;
8174 ptr += nr_cpu_ids * sizeof(void **);
8175
8176 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8177 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008178#endif /* CONFIG_USER_SCHED */
8179#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008180#ifdef CONFIG_RT_GROUP_SCHED
8181 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8182 ptr += nr_cpu_ids * sizeof(void **);
8183
8184 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008185 ptr += nr_cpu_ids * sizeof(void **);
8186
8187#ifdef CONFIG_USER_SCHED
8188 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8189 ptr += nr_cpu_ids * sizeof(void **);
8190
8191 root_task_group.rt_rq = (struct rt_rq **)ptr;
8192 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008193#endif /* CONFIG_USER_SCHED */
8194#endif /* CONFIG_RT_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008195 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008196
Gregory Haskins57d885f2008-01-25 21:08:18 +01008197#ifdef CONFIG_SMP
8198 init_defrootdomain();
8199#endif
8200
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008201 init_rt_bandwidth(&def_rt_bandwidth,
8202 global_rt_period(), global_rt_runtime());
8203
8204#ifdef CONFIG_RT_GROUP_SCHED
8205 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8206 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008207#ifdef CONFIG_USER_SCHED
8208 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8209 global_rt_period(), RUNTIME_INF);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008210#endif /* CONFIG_USER_SCHED */
8211#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008212
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008213#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008214 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008215 INIT_LIST_HEAD(&init_task_group.children);
8216
8217#ifdef CONFIG_USER_SCHED
8218 INIT_LIST_HEAD(&root_task_group.children);
8219 init_task_group.parent = &root_task_group;
8220 list_add(&init_task_group.siblings, &root_task_group.children);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008221#endif /* CONFIG_USER_SCHED */
8222#endif /* CONFIG_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008223
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008224 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008225 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008226
8227 rq = cpu_rq(i);
8228 spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07008229 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008230 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008231 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008232#ifdef CONFIG_FAIR_GROUP_SCHED
8233 init_task_group.shares = init_task_group_load;
8234 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008235#ifdef CONFIG_CGROUP_SCHED
8236 /*
8237 * How much cpu bandwidth does init_task_group get?
8238 *
8239 * In case of task-groups formed thr' the cgroup filesystem, it
8240 * gets 100% of the cpu resources in the system. This overall
8241 * system cpu resource is divided among the tasks of
8242 * init_task_group and its child task-groups in a fair manner,
8243 * based on each entity's (task or task-group's) weight
8244 * (se->load.weight).
8245 *
8246 * In other words, if init_task_group has 10 tasks of weight
8247 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8248 * then A0's share of the cpu resource is:
8249 *
8250 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
8251 *
8252 * We achieve this by letting init_task_group's tasks sit
8253 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8254 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008255 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008256#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008257 root_task_group.shares = NICE_0_LOAD;
8258 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008259 /*
8260 * In case of task-groups formed thr' the user id of tasks,
8261 * init_task_group represents tasks belonging to root user.
8262 * Hence it forms a sibling of all subsequent groups formed.
8263 * In this case, init_task_group gets only a fraction of overall
8264 * system cpu resource, based on the weight assigned to root
8265 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8266 * by letting tasks of init_task_group sit in a separate cfs_rq
8267 * (init_cfs_rq) and having one entity represent this group of
8268 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
8269 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008270 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008271 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008272 &per_cpu(init_sched_entity, i), i, 1,
8273 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008274
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008275#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008276#endif /* CONFIG_FAIR_GROUP_SCHED */
8277
8278 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008279#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008280 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008281#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008282 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008283#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008284 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008285 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008286 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008287 &per_cpu(init_sched_rt_entity, i), i, 1,
8288 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008289#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008290#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008291
Ingo Molnardd41f592007-07-09 18:51:59 +02008292 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8293 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008294#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008295 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008296 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008297 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008298 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008299 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008300 rq->cpu = i;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04008301 rq->online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008302 rq->migration_thread = NULL;
8303 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008304 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008305#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008306 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008307 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008308 }
8309
Peter Williams2dd73a42006-06-27 02:54:34 -07008310 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008311
Avi Kivitye107be32007-07-26 13:40:43 +02008312#ifdef CONFIG_PREEMPT_NOTIFIERS
8313 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8314#endif
8315
Christoph Lameterc9819f42006-12-10 02:20:25 -08008316#ifdef CONFIG_SMP
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008317 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
Christoph Lameterc9819f42006-12-10 02:20:25 -08008318#endif
8319
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008320#ifdef CONFIG_RT_MUTEXES
8321 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8322#endif
8323
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324 /*
8325 * The boot idle thread does lazy MMU switching as well:
8326 */
8327 atomic_inc(&init_mm.mm_count);
8328 enter_lazy_tlb(&init_mm, current);
8329
8330 /*
8331 * Make us the idle thread. Technically, schedule() should not be
8332 * called from this thread, however somewhere below it might be,
8333 * but because we are the idle thread, we just pick up running again
8334 * when this runqueue becomes "idle".
8335 */
8336 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008337 /*
8338 * During early bootup we pretend to be a normal task:
8339 */
8340 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008341
8342 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008343}
8344
8345#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8346void __might_sleep(char *file, int line)
8347{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008348#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008349 static unsigned long prev_jiffy; /* ratelimiting */
8350
Ingo Molnaraef745f2008-08-28 11:34:43 +02008351 if ((!in_atomic() && !irqs_disabled()) ||
8352 system_state != SYSTEM_RUNNING || oops_in_progress)
8353 return;
8354 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8355 return;
8356 prev_jiffy = jiffies;
8357
8358 printk(KERN_ERR
8359 "BUG: sleeping function called from invalid context at %s:%d\n",
8360 file, line);
8361 printk(KERN_ERR
8362 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
8363 in_atomic(), irqs_disabled(),
8364 current->pid, current->comm);
8365
8366 debug_show_held_locks(current);
8367 if (irqs_disabled())
8368 print_irqtrace_events(current);
8369 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008370#endif
8371}
8372EXPORT_SYMBOL(__might_sleep);
8373#endif
8374
8375#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008376static void normalize_task(struct rq *rq, struct task_struct *p)
8377{
8378 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008379
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008380 update_rq_clock(rq);
8381 on_rq = p->se.on_rq;
8382 if (on_rq)
8383 deactivate_task(rq, p, 0);
8384 __setscheduler(rq, p, SCHED_NORMAL, 0);
8385 if (on_rq) {
8386 activate_task(rq, p, 0);
8387 resched_task(rq->curr);
8388 }
8389}
8390
Linus Torvalds1da177e2005-04-16 15:20:36 -07008391void normalize_rt_tasks(void)
8392{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008393 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008394 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008395 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008396
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008397 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008398 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008399 /*
8400 * Only normalize user tasks:
8401 */
8402 if (!p->mm)
8403 continue;
8404
Ingo Molnardd41f592007-07-09 18:51:59 +02008405 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008406#ifdef CONFIG_SCHEDSTATS
8407 p->se.wait_start = 0;
8408 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008409 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008410#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008411
8412 if (!rt_task(p)) {
8413 /*
8414 * Renice negative nice level userspace
8415 * tasks back to 0:
8416 */
8417 if (TASK_NICE(p) < 0 && p->mm)
8418 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008419 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008421
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008422 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008423 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424
Ingo Molnar178be792007-10-15 17:00:18 +02008425 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008426
Ingo Molnarb29739f2006-06-27 02:54:51 -07008427 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008428 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008429 } while_each_thread(g, p);
8430
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008431 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008432}
8433
8434#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008435
8436#ifdef CONFIG_IA64
8437/*
8438 * These functions are only useful for the IA64 MCA handling.
8439 *
8440 * They can only be called when the whole system has been
8441 * stopped - every CPU needs to be quiescent, and no scheduling
8442 * activity can take place. Using them for anything else would
8443 * be a serious bug, and as a result, they aren't even visible
8444 * under any other configuration.
8445 */
8446
8447/**
8448 * curr_task - return the current task for a given cpu.
8449 * @cpu: the processor in question.
8450 *
8451 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8452 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008453struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008454{
8455 return cpu_curr(cpu);
8456}
8457
8458/**
8459 * set_curr_task - set the current task for a given cpu.
8460 * @cpu: the processor in question.
8461 * @p: the task pointer to set.
8462 *
8463 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008464 * are serviced on a separate stack. It allows the architecture to switch the
8465 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008466 * must be called with all CPU's synchronized, and interrupts disabled, the
8467 * and caller must save the original value of the current task (see
8468 * curr_task() above) and restore that value before reenabling interrupts and
8469 * re-starting the system.
8470 *
8471 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8472 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008473void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008474{
8475 cpu_curr(cpu) = p;
8476}
8477
8478#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008479
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008480#ifdef CONFIG_FAIR_GROUP_SCHED
8481static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008482{
8483 int i;
8484
8485 for_each_possible_cpu(i) {
8486 if (tg->cfs_rq)
8487 kfree(tg->cfs_rq[i]);
8488 if (tg->se)
8489 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008490 }
8491
8492 kfree(tg->cfs_rq);
8493 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008494}
8495
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008496static
8497int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008498{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008499 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008500 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008501 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008502 int i;
8503
Mike Travis434d53b2008-04-04 18:11:04 -07008504 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008505 if (!tg->cfs_rq)
8506 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008507 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008508 if (!tg->se)
8509 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008510
8511 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008512
8513 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008514 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008515
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008516 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8517 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008518 if (!cfs_rq)
8519 goto err;
8520
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008521 se = kmalloc_node(sizeof(struct sched_entity),
8522 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008523 if (!se)
8524 goto err;
8525
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008526 parent_se = parent ? parent->se[i] : NULL;
8527 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008528 }
8529
8530 return 1;
8531
8532 err:
8533 return 0;
8534}
8535
8536static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8537{
8538 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8539 &cpu_rq(cpu)->leaf_cfs_rq_list);
8540}
8541
8542static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8543{
8544 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8545}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008546#else /* !CONFG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008547static inline void free_fair_sched_group(struct task_group *tg)
8548{
8549}
8550
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008551static inline
8552int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008553{
8554 return 1;
8555}
8556
8557static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8558{
8559}
8560
8561static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8562{
8563}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008564#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008565
8566#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008567static void free_rt_sched_group(struct task_group *tg)
8568{
8569 int i;
8570
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008571 destroy_rt_bandwidth(&tg->rt_bandwidth);
8572
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008573 for_each_possible_cpu(i) {
8574 if (tg->rt_rq)
8575 kfree(tg->rt_rq[i]);
8576 if (tg->rt_se)
8577 kfree(tg->rt_se[i]);
8578 }
8579
8580 kfree(tg->rt_rq);
8581 kfree(tg->rt_se);
8582}
8583
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008584static
8585int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008586{
8587 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008588 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008589 struct rq *rq;
8590 int i;
8591
Mike Travis434d53b2008-04-04 18:11:04 -07008592 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008593 if (!tg->rt_rq)
8594 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008595 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008596 if (!tg->rt_se)
8597 goto err;
8598
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008599 init_rt_bandwidth(&tg->rt_bandwidth,
8600 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008601
8602 for_each_possible_cpu(i) {
8603 rq = cpu_rq(i);
8604
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008605 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8606 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8607 if (!rt_rq)
8608 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008609
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008610 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8611 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8612 if (!rt_se)
8613 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008614
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008615 parent_se = parent ? parent->rt_se[i] : NULL;
8616 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008617 }
8618
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008619 return 1;
8620
8621 err:
8622 return 0;
8623}
8624
8625static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8626{
8627 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8628 &cpu_rq(cpu)->leaf_rt_rq_list);
8629}
8630
8631static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8632{
8633 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8634}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008635#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008636static inline void free_rt_sched_group(struct task_group *tg)
8637{
8638}
8639
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008640static inline
8641int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008642{
8643 return 1;
8644}
8645
8646static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8647{
8648}
8649
8650static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8651{
8652}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008653#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008654
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008655#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008656static void free_sched_group(struct task_group *tg)
8657{
8658 free_fair_sched_group(tg);
8659 free_rt_sched_group(tg);
8660 kfree(tg);
8661}
8662
8663/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008664struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008665{
8666 struct task_group *tg;
8667 unsigned long flags;
8668 int i;
8669
8670 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8671 if (!tg)
8672 return ERR_PTR(-ENOMEM);
8673
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008674 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008675 goto err;
8676
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008677 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008678 goto err;
8679
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008680 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008681 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008682 register_fair_sched_group(tg, i);
8683 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008684 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008685 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008686
8687 WARN_ON(!parent); /* root should already exist */
8688
8689 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008690 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08008691 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008692 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008693
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008694 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008695
8696err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008697 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008698 return ERR_PTR(-ENOMEM);
8699}
8700
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008701/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008702static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008703{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008704 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008705 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008706}
8707
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008708/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008709void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008710{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008711 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008712 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008713
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008714 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008715 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008716 unregister_fair_sched_group(tg, i);
8717 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008718 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008719 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008720 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008721 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008722
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008723 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008724 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008725}
8726
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008727/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008728 * The caller of this function should have put the task in its new group
8729 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8730 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008731 */
8732void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008733{
8734 int on_rq, running;
8735 unsigned long flags;
8736 struct rq *rq;
8737
8738 rq = task_rq_lock(tsk, &flags);
8739
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008740 update_rq_clock(rq);
8741
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008742 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008743 on_rq = tsk->se.on_rq;
8744
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008745 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008746 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008747 if (unlikely(running))
8748 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008749
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008750 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008751
Peter Zijlstra810b3812008-02-29 15:21:01 -05008752#ifdef CONFIG_FAIR_GROUP_SCHED
8753 if (tsk->sched_class->moved_group)
8754 tsk->sched_class->moved_group(tsk);
8755#endif
8756
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008757 if (unlikely(running))
8758 tsk->sched_class->set_curr_task(rq);
8759 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008760 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008761
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008762 task_rq_unlock(rq, &flags);
8763}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008764#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008765
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008766#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008767static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008768{
8769 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008770 int on_rq;
8771
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008772 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008773 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008774 dequeue_entity(cfs_rq, se, 0);
8775
8776 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008777 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008778
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008779 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008780 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008781}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008782
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008783static void set_se_shares(struct sched_entity *se, unsigned long shares)
8784{
8785 struct cfs_rq *cfs_rq = se->cfs_rq;
8786 struct rq *rq = cfs_rq->rq;
8787 unsigned long flags;
8788
8789 spin_lock_irqsave(&rq->lock, flags);
8790 __set_se_shares(se, shares);
8791 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008792}
8793
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008794static DEFINE_MUTEX(shares_mutex);
8795
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008796int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008797{
8798 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008799 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008800
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008801 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008802 * We can't change the weight of the root cgroup.
8803 */
8804 if (!tg->se[0])
8805 return -EINVAL;
8806
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008807 if (shares < MIN_SHARES)
8808 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008809 else if (shares > MAX_SHARES)
8810 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008811
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008812 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008813 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008814 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008815
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008816 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008817 for_each_possible_cpu(i)
8818 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008819 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008820 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008821
8822 /* wait for any ongoing reference to this group to finish */
8823 synchronize_sched();
8824
8825 /*
8826 * Now we are free to modify the group's share on each cpu
8827 * w/o tripping rebalance_share or load_balance_fair.
8828 */
8829 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008830 for_each_possible_cpu(i) {
8831 /*
8832 * force a rebalance
8833 */
8834 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008835 set_se_shares(tg->se[i], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008836 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008837
8838 /*
8839 * Enable load balance activity on this group, by inserting it back on
8840 * each cpu's rq->leaf_cfs_rq_list.
8841 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008842 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008843 for_each_possible_cpu(i)
8844 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008845 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008846 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008847done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008848 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008849 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008850}
8851
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008852unsigned long sched_group_shares(struct task_group *tg)
8853{
8854 return tg->shares;
8855}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008856#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008857
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008858#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008859/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008860 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008861 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008862static DEFINE_MUTEX(rt_constraints_mutex);
8863
8864static unsigned long to_ratio(u64 period, u64 runtime)
8865{
8866 if (runtime == RUNTIME_INF)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008867 return 1ULL << 20;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008868
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008869 return div64_u64(runtime << 20, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008870}
8871
Dhaval Giani521f1a242008-02-28 15:21:56 +05308872/* Must be called with tasklist_lock held */
8873static inline int tg_has_rt_tasks(struct task_group *tg)
8874{
8875 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008876
Dhaval Giani521f1a242008-02-28 15:21:56 +05308877 do_each_thread(g, p) {
8878 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8879 return 1;
8880 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008881
Dhaval Giani521f1a242008-02-28 15:21:56 +05308882 return 0;
8883}
8884
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008885struct rt_schedulable_data {
8886 struct task_group *tg;
8887 u64 rt_period;
8888 u64 rt_runtime;
8889};
8890
8891static int tg_schedulable(struct task_group *tg, void *data)
8892{
8893 struct rt_schedulable_data *d = data;
8894 struct task_group *child;
8895 unsigned long total, sum = 0;
8896 u64 period, runtime;
8897
8898 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8899 runtime = tg->rt_bandwidth.rt_runtime;
8900
8901 if (tg == d->tg) {
8902 period = d->rt_period;
8903 runtime = d->rt_runtime;
8904 }
8905
Peter Zijlstra4653f802008-09-23 15:33:44 +02008906 /*
8907 * Cannot have more runtime than the period.
8908 */
8909 if (runtime > period && runtime != RUNTIME_INF)
8910 return -EINVAL;
8911
8912 /*
8913 * Ensure we don't starve existing RT tasks.
8914 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008915 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
8916 return -EBUSY;
8917
8918 total = to_ratio(period, runtime);
8919
Peter Zijlstra4653f802008-09-23 15:33:44 +02008920 /*
8921 * Nobody can have more than the global setting allows.
8922 */
8923 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
8924 return -EINVAL;
8925
8926 /*
8927 * The sum of our children's runtime should not exceed our own.
8928 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008929 list_for_each_entry_rcu(child, &tg->children, siblings) {
8930 period = ktime_to_ns(child->rt_bandwidth.rt_period);
8931 runtime = child->rt_bandwidth.rt_runtime;
8932
8933 if (child == d->tg) {
8934 period = d->rt_period;
8935 runtime = d->rt_runtime;
8936 }
8937
8938 sum += to_ratio(period, runtime);
8939 }
8940
8941 if (sum > total)
8942 return -EINVAL;
8943
8944 return 0;
8945}
8946
8947static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8948{
8949 struct rt_schedulable_data data = {
8950 .tg = tg,
8951 .rt_period = period,
8952 .rt_runtime = runtime,
8953 };
8954
8955 return walk_tg_tree(tg_schedulable, tg_nop, &data);
8956}
8957
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008958static int tg_set_bandwidth(struct task_group *tg,
8959 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008960{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008961 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008962
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008963 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308964 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008965 err = __rt_schedulable(tg, rt_period, rt_runtime);
8966 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05308967 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008968
8969 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008970 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8971 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008972
8973 for_each_possible_cpu(i) {
8974 struct rt_rq *rt_rq = tg->rt_rq[i];
8975
8976 spin_lock(&rt_rq->rt_runtime_lock);
8977 rt_rq->rt_runtime = rt_runtime;
8978 spin_unlock(&rt_rq->rt_runtime_lock);
8979 }
8980 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008981 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308982 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008983 mutex_unlock(&rt_constraints_mutex);
8984
8985 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008986}
8987
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008988int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8989{
8990 u64 rt_runtime, rt_period;
8991
8992 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8993 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8994 if (rt_runtime_us < 0)
8995 rt_runtime = RUNTIME_INF;
8996
8997 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8998}
8999
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009000long sched_group_rt_runtime(struct task_group *tg)
9001{
9002 u64 rt_runtime_us;
9003
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009004 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009005 return -1;
9006
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009007 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009008 do_div(rt_runtime_us, NSEC_PER_USEC);
9009 return rt_runtime_us;
9010}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009011
9012int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
9013{
9014 u64 rt_runtime, rt_period;
9015
9016 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
9017 rt_runtime = tg->rt_bandwidth.rt_runtime;
9018
Raistlin619b0482008-06-26 18:54:09 +02009019 if (rt_period == 0)
9020 return -EINVAL;
9021
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009022 return tg_set_bandwidth(tg, rt_period, rt_runtime);
9023}
9024
9025long sched_group_rt_period(struct task_group *tg)
9026{
9027 u64 rt_period_us;
9028
9029 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
9030 do_div(rt_period_us, NSEC_PER_USEC);
9031 return rt_period_us;
9032}
9033
9034static int sched_rt_global_constraints(void)
9035{
Peter Zijlstra4653f802008-09-23 15:33:44 +02009036 u64 runtime, period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009037 int ret = 0;
9038
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07009039 if (sysctl_sched_rt_period <= 0)
9040 return -EINVAL;
9041
Peter Zijlstra4653f802008-09-23 15:33:44 +02009042 runtime = global_rt_runtime();
9043 period = global_rt_period();
9044
9045 /*
9046 * Sanity check on the sysctl variables.
9047 */
9048 if (runtime > period && runtime != RUNTIME_INF)
9049 return -EINVAL;
Peter Zijlstra10b612f2008-06-19 14:22:27 +02009050
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009051 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009052 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02009053 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009054 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009055 mutex_unlock(&rt_constraints_mutex);
9056
9057 return ret;
9058}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009059#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009060static int sched_rt_global_constraints(void)
9061{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009062 unsigned long flags;
9063 int i;
9064
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07009065 if (sysctl_sched_rt_period <= 0)
9066 return -EINVAL;
9067
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009068 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
9069 for_each_possible_cpu(i) {
9070 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
9071
9072 spin_lock(&rt_rq->rt_runtime_lock);
9073 rt_rq->rt_runtime = global_rt_runtime();
9074 spin_unlock(&rt_rq->rt_runtime_lock);
9075 }
9076 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
9077
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009078 return 0;
9079}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009080#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009081
9082int sched_rt_handler(struct ctl_table *table, int write,
9083 struct file *filp, void __user *buffer, size_t *lenp,
9084 loff_t *ppos)
9085{
9086 int ret;
9087 int old_period, old_runtime;
9088 static DEFINE_MUTEX(mutex);
9089
9090 mutex_lock(&mutex);
9091 old_period = sysctl_sched_rt_period;
9092 old_runtime = sysctl_sched_rt_runtime;
9093
9094 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
9095
9096 if (!ret && write) {
9097 ret = sched_rt_global_constraints();
9098 if (ret) {
9099 sysctl_sched_rt_period = old_period;
9100 sysctl_sched_rt_runtime = old_runtime;
9101 } else {
9102 def_rt_bandwidth.rt_runtime = global_rt_runtime();
9103 def_rt_bandwidth.rt_period =
9104 ns_to_ktime(global_rt_period());
9105 }
9106 }
9107 mutex_unlock(&mutex);
9108
9109 return ret;
9110}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009111
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009112#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009113
9114/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009115static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009116{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009117 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
9118 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009119}
9120
9121static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02009122cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009123{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009124 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009125
Paul Menage2b01dfe2007-10-24 18:23:50 +02009126 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009127 /* This is early initialization for the top cgroup */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009128 return &init_task_group.css;
9129 }
9130
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009131 parent = cgroup_tg(cgrp->parent);
9132 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009133 if (IS_ERR(tg))
9134 return ERR_PTR(-ENOMEM);
9135
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009136 return &tg->css;
9137}
9138
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009139static void
9140cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009141{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009142 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009143
9144 sched_destroy_group(tg);
9145}
9146
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009147static int
9148cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
9149 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009150{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009151#ifdef CONFIG_RT_GROUP_SCHED
9152 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009153 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009154 return -EINVAL;
9155#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009156 /* We don't support RT-tasks being in separate groups */
9157 if (tsk->sched_class != &fair_sched_class)
9158 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009159#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009160
9161 return 0;
9162}
9163
9164static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02009165cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009166 struct cgroup *old_cont, struct task_struct *tsk)
9167{
9168 sched_move_task(tsk);
9169}
9170
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009171#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07009172static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009173 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009174{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009175 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009176}
9177
Paul Menagef4c753b2008-04-29 00:59:56 -07009178static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009179{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009180 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009181
9182 return (u64) tg->shares;
9183}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009184#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009185
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009186#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07009187static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009188 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009189{
Paul Menage06ecb272008-04-29 01:00:06 -07009190 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009191}
9192
Paul Menage06ecb272008-04-29 01:00:06 -07009193static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009194{
Paul Menage06ecb272008-04-29 01:00:06 -07009195 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009196}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009197
9198static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9199 u64 rt_period_us)
9200{
9201 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9202}
9203
9204static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9205{
9206 return sched_group_rt_period(cgroup_tg(cgrp));
9207}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009208#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009209
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009210static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009211#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009212 {
9213 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009214 .read_u64 = cpu_shares_read_u64,
9215 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009216 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009217#endif
9218#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009219 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009220 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009221 .read_s64 = cpu_rt_runtime_read,
9222 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009223 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009224 {
9225 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009226 .read_u64 = cpu_rt_period_read_uint,
9227 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009228 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009229#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009230};
9231
9232static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9233{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009234 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009235}
9236
9237struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009238 .name = "cpu",
9239 .create = cpu_cgroup_create,
9240 .destroy = cpu_cgroup_destroy,
9241 .can_attach = cpu_cgroup_can_attach,
9242 .attach = cpu_cgroup_attach,
9243 .populate = cpu_cgroup_populate,
9244 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009245 .early_init = 1,
9246};
9247
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009248#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009249
9250#ifdef CONFIG_CGROUP_CPUACCT
9251
9252/*
9253 * CPU accounting code for task groups.
9254 *
9255 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9256 * (balbir@in.ibm.com).
9257 */
9258
9259/* track cpu usage of a group of tasks */
9260struct cpuacct {
9261 struct cgroup_subsys_state css;
9262 /* cpuusage holds pointer to a u64-type object on every cpu */
9263 u64 *cpuusage;
9264};
9265
9266struct cgroup_subsys cpuacct_subsys;
9267
9268/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309269static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009270{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309271 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009272 struct cpuacct, css);
9273}
9274
9275/* return cpu accounting group to which this task belongs */
9276static inline struct cpuacct *task_ca(struct task_struct *tsk)
9277{
9278 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9279 struct cpuacct, css);
9280}
9281
9282/* create a new cpu accounting group */
9283static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309284 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009285{
9286 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9287
9288 if (!ca)
9289 return ERR_PTR(-ENOMEM);
9290
9291 ca->cpuusage = alloc_percpu(u64);
9292 if (!ca->cpuusage) {
9293 kfree(ca);
9294 return ERR_PTR(-ENOMEM);
9295 }
9296
9297 return &ca->css;
9298}
9299
9300/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009301static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309302cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009303{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309304 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009305
9306 free_percpu(ca->cpuusage);
9307 kfree(ca);
9308}
9309
9310/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309311static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009312{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309313 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009314 u64 totalcpuusage = 0;
9315 int i;
9316
9317 for_each_possible_cpu(i) {
9318 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9319
9320 /*
9321 * Take rq->lock to make 64-bit addition safe on 32-bit
9322 * platforms.
9323 */
9324 spin_lock_irq(&cpu_rq(i)->lock);
9325 totalcpuusage += *cpuusage;
9326 spin_unlock_irq(&cpu_rq(i)->lock);
9327 }
9328
9329 return totalcpuusage;
9330}
9331
Dhaval Giani0297b802008-02-29 10:02:44 +05309332static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9333 u64 reset)
9334{
9335 struct cpuacct *ca = cgroup_ca(cgrp);
9336 int err = 0;
9337 int i;
9338
9339 if (reset) {
9340 err = -EINVAL;
9341 goto out;
9342 }
9343
9344 for_each_possible_cpu(i) {
9345 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9346
9347 spin_lock_irq(&cpu_rq(i)->lock);
9348 *cpuusage = 0;
9349 spin_unlock_irq(&cpu_rq(i)->lock);
9350 }
9351out:
9352 return err;
9353}
9354
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009355static struct cftype files[] = {
9356 {
9357 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009358 .read_u64 = cpuusage_read,
9359 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009360 },
9361};
9362
Dhaval Giani32cd7562008-02-29 10:02:43 +05309363static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009364{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309365 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009366}
9367
9368/*
9369 * charge this task's execution time to its accounting group.
9370 *
9371 * called with rq->lock held.
9372 */
9373static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9374{
9375 struct cpuacct *ca;
9376
9377 if (!cpuacct_subsys.active)
9378 return;
9379
9380 ca = task_ca(tsk);
9381 if (ca) {
9382 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
9383
9384 *cpuusage += cputime;
9385 }
9386}
9387
9388struct cgroup_subsys cpuacct_subsys = {
9389 .name = "cpuacct",
9390 .create = cpuacct_create,
9391 .destroy = cpuacct_destroy,
9392 .populate = cpuacct_populate,
9393 .subsys_id = cpuacct_subsys_id,
9394};
9395#endif /* CONFIG_CGROUP_CPUACCT */