blob: 24ab80c28765b6b8a6e713c2f864dbaf61cea14f [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
Arun R Bharadwaj6c415b92008-12-01 20:49:05 +0530270#ifdef CONFIG_USER_SCHED
271 uid_t uid;
272#endif
273
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100274#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200275 /* schedulable entities of this group on each cpu */
276 struct sched_entity **se;
277 /* runqueue "owned" by this group on each cpu */
278 struct cfs_rq **cfs_rq;
279 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100280#endif
281
282#ifdef CONFIG_RT_GROUP_SCHED
283 struct sched_rt_entity **rt_se;
284 struct rt_rq **rt_rq;
285
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200286 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100287#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100288
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100289 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100290 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200291
292 struct task_group *parent;
293 struct list_head siblings;
294 struct list_head children;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200295};
296
Dhaval Giani354d60c2008-04-19 19:44:59 +0200297#ifdef CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200298
Arun R Bharadwaj6c415b92008-12-01 20:49:05 +0530299/* Helper function to pass uid information to create_sched_user() */
300void set_tg_uid(struct user_struct *user)
301{
302 user->tg->uid = user->uid;
303}
304
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200305/*
306 * Root task group.
307 * Every UID task group (including init_task_group aka UID-0) will
308 * be a child to this group.
309 */
310struct task_group root_task_group;
311
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100312#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200313/* Default task group's sched entity on each cpu */
314static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
315/* Default task group's cfs_rq on each cpu */
316static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200317#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100318
319#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100320static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
321static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200322#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +0200323#else /* !CONFIG_USER_SCHED */
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200324#define root_task_group init_task_group
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +0200325#endif /* CONFIG_USER_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100326
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100327/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100328 * a task group's cpu shares.
329 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100330static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100331
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100332#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100333#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100334# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200335#else /* !CONFIG_USER_SCHED */
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100336# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200337#endif /* CONFIG_USER_SCHED */
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200338
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800339/*
Lai Jiangshan2e084782008-06-12 16:42:58 +0800340 * A weight of 0 or 1 can cause arithmetics problems.
341 * A weight of a cfs_rq is the sum of weights of which entities
342 * are queued on this cfs_rq, so a weight of a entity should not be
343 * too large, so as the shares value of a task group.
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800344 * (The default weight is 1024 - so there's no practical
345 * limitation from this.)
346 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200347#define MIN_SHARES 2
Lai Jiangshan2e084782008-06-12 16:42:58 +0800348#define MAX_SHARES (1UL << 18)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200349
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100350static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100351#endif
352
353/* Default task group.
354 * Every task in system belong to this group at bootup.
355 */
Mike Travis434d53b2008-04-04 18:11:04 -0700356struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200357
358/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200359static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200360{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200361 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200362
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100363#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200364 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100365#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700366 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
367 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200368#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100369 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200370#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200371 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200372}
373
374/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100375static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200376{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100377#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100378 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
379 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100380#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100381
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100382#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100383 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
384 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100385#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200386}
387
388#else
389
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100390static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Peter Zijlstra83378262008-06-27 13:41:37 +0200391static inline struct task_group *task_group(struct task_struct *p)
392{
393 return NULL;
394}
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200395
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100396#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200397
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200398/* CFS-related fields in a runqueue */
399struct cfs_rq {
400 struct load_weight load;
401 unsigned long nr_running;
402
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200403 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200404 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200405
406 struct rb_root tasks_timeline;
407 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200408
409 struct list_head tasks;
410 struct list_head *balance_iterator;
411
412 /*
413 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200414 * It is set to NULL otherwise (i.e when none are currently running).
415 */
Peter Zijlstra47932412008-11-04 21:25:09 +0100416 struct sched_entity *curr, *next, *last;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200417
Peter Zijlstra5ac5c4d2008-11-10 10:46:32 +0100418 unsigned int nr_spread_over;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200419
Ingo Molnar62160e32007-10-15 17:00:03 +0200420#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200421 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
422
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100423 /*
424 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200425 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
426 * (like users, containers etc.)
427 *
428 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
429 * list is used during load balance.
430 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100431 struct list_head leaf_cfs_rq_list;
432 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200433
434#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200435 /*
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200436 * the part of load.weight contributed by tasks
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200437 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200438 unsigned long task_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200439
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200440 /*
441 * h_load = weight * f(tg)
442 *
443 * Where f(tg) is the recursive weight fraction assigned to
444 * this group.
445 */
446 unsigned long h_load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200447
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200448 /*
449 * this cpu's part of tg->shares
450 */
451 unsigned long shares;
Peter Zijlstraf1d239f2008-06-27 13:41:38 +0200452
453 /*
454 * load.weight at the time we set shares
455 */
456 unsigned long rq_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200457#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200458#endif
459};
460
461/* Real-Time classes' related field in a runqueue: */
462struct rt_rq {
463 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100464 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100465#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -0500466 struct {
467 int curr; /* highest queued rt task prio */
468 int next; /* next highest */
469 } highest_prio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100470#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100471#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100472 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100473 int overloaded;
Gregory Haskins917b6272008-12-29 09:39:53 -0500474 struct plist_head pushable_tasks;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100475#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100476 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100477 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200478 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100479 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200480 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100481
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100482#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100483 unsigned long rt_nr_boosted;
484
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100485 struct rq *rq;
486 struct list_head leaf_rt_rq_list;
487 struct task_group *tg;
488 struct sched_rt_entity *rt_se;
489#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200490};
491
Gregory Haskins57d885f2008-01-25 21:08:18 +0100492#ifdef CONFIG_SMP
493
494/*
495 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100496 * variables. Each exclusive cpuset essentially defines an island domain by
497 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100498 * exclusive cpuset is created, we also create and attach a new root-domain
499 * object.
500 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100501 */
502struct root_domain {
503 atomic_t refcount;
Rusty Russellc6c49272008-11-25 02:35:05 +1030504 cpumask_var_t span;
505 cpumask_var_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100506
Ingo Molnar0eab9142008-01-25 21:08:19 +0100507 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100508 * The "RT overload" flag: it gets set if a CPU has more than
509 * one runnable RT task.
510 */
Rusty Russellc6c49272008-11-25 02:35:05 +1030511 cpumask_var_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100512 atomic_t rto_count;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200513#ifdef CONFIG_SMP
514 struct cpupri cpupri;
515#endif
Vaidyanathan Srinivasan7a09b1a2008-12-18 23:26:22 +0530516#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
517 /*
518 * Preferred wake up cpu nominated by sched_mc balance that will be
519 * used when most cpus are idle in the system indicating overall very
520 * low system utilisation. Triggered at POWERSAVINGS_BALANCE_WAKEUP(2)
521 */
522 unsigned int sched_mc_preferred_wakeup_cpu;
523#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +0100524};
525
Gregory Haskinsdc938522008-01-25 21:08:26 +0100526/*
527 * By default the system creates a single root-domain with all cpus as
528 * members (mimicking the global state we have today).
529 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100530static struct root_domain def_root_domain;
531
532#endif
533
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200534/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * This is the main, per-CPU runqueue data structure.
536 *
537 * Locking rule: those places that want to lock multiple runqueues
538 * (such as the load balancing or the thread migration code), lock
539 * acquire operations must be ordered by ascending &runqueue.
540 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700541struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200542 /* runqueue lock: */
543 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 /*
546 * nr_running and cpu_load should be in the same cacheline because
547 * remote CPUs use both these fields when doing load calculation.
548 */
549 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200550 #define CPU_LOAD_IDX_MAX 5
551 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700552 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700553#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200554 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700555 unsigned char in_nohz_recently;
556#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200557 /* capture load from *all* tasks on this cpu: */
558 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200559 unsigned long nr_load_updates;
560 u64 nr_switches;
561
562 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100563 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100564
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200565#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200566 /* list of leaf cfs_rq on this cpu: */
567 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100568#endif
569#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100570 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /*
574 * This is part of a global counter where only the total sum
575 * over all CPUs matters. A task can increase this counter on
576 * one CPU and if it got migrated afterwards it may decrease
577 * it on another CPU. Always updated under the runqueue lock:
578 */
579 unsigned long nr_uninterruptible;
580
Ingo Molnar36c8b582006-07-03 00:25:41 -0700581 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800582 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200584
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200585 u64 clock;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 atomic_t nr_iowait;
588
589#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100590 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 struct sched_domain *sd;
592
593 /* For active balancing */
594 int active_balance;
595 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200596 /* cpu of this runqueue: */
597 int cpu;
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400598 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Peter Zijlstraa8a51d52008-06-27 13:41:26 +0200600 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Ingo Molnar36c8b582006-07-03 00:25:41 -0700602 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 struct list_head migration_queue;
604#endif
605
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100606#ifdef CONFIG_SCHED_HRTICK
Peter Zijlstra31656512008-07-18 18:01:23 +0200607#ifdef CONFIG_SMP
608 int hrtick_csd_pending;
609 struct call_single_data hrtick_csd;
610#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100611 struct hrtimer hrtick_timer;
612#endif
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614#ifdef CONFIG_SCHEDSTATS
615 /* latency stats */
616 struct sched_info rq_sched_info;
617
618 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200619 unsigned int yld_exp_empty;
620 unsigned int yld_act_empty;
621 unsigned int yld_both_empty;
622 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200625 unsigned int sched_switch;
626 unsigned int sched_count;
627 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200630 unsigned int ttwu_count;
631 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200632
633 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200634 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635#endif
636};
637
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700638static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Peter Zijlstra15afe092008-09-20 23:38:02 +0200640static inline void check_preempt_curr(struct rq *rq, struct task_struct *p, int sync)
Ingo Molnardd41f592007-07-09 18:51:59 +0200641{
Peter Zijlstra15afe092008-09-20 23:38:02 +0200642 rq->curr->sched_class->check_preempt_curr(rq, p, sync);
Ingo Molnardd41f592007-07-09 18:51:59 +0200643}
644
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700645static inline int cpu_of(struct rq *rq)
646{
647#ifdef CONFIG_SMP
648 return rq->cpu;
649#else
650 return 0;
651#endif
652}
653
Ingo Molnar20d315d2007-07-09 18:51:58 +0200654/*
Nick Piggin674311d2005-06-25 14:57:27 -0700655 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700656 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700657 *
658 * The domain tree of any CPU may only be accessed from within
659 * preempt-disabled sections.
660 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700661#define for_each_domain(cpu, __sd) \
662 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
665#define this_rq() (&__get_cpu_var(runqueues))
666#define task_rq(p) cpu_rq(task_cpu(p))
667#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
668
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200669static inline void update_rq_clock(struct rq *rq)
670{
671 rq->clock = sched_clock_cpu(cpu_of(rq));
672}
673
Ingo Molnare436d802007-07-19 21:28:35 +0200674/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200675 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
676 */
677#ifdef CONFIG_SCHED_DEBUG
678# define const_debug __read_mostly
679#else
680# define const_debug static const
681#endif
682
Ingo Molnar017730c2008-05-12 21:20:52 +0200683/**
684 * runqueue_is_locked
685 *
686 * Returns true if the current cpu runqueue is locked.
687 * This interface allows printk to be called with the runqueue lock
688 * held and know whether or not it is OK to wake up the klogd.
689 */
690int runqueue_is_locked(void)
691{
692 int cpu = get_cpu();
693 struct rq *rq = cpu_rq(cpu);
694 int ret;
695
696 ret = spin_is_locked(&rq->lock);
697 put_cpu();
698 return ret;
699}
700
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200701/*
702 * Debugging: various feature bits
703 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200704
705#define SCHED_FEAT(name, enabled) \
706 __SCHED_FEAT_##name ,
707
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200708enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200709#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200710};
711
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200712#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200713
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200714#define SCHED_FEAT(name, enabled) \
715 (1UL << __SCHED_FEAT_##name) * enabled |
716
717const_debug unsigned int sysctl_sched_features =
718#include "sched_features.h"
719 0;
720
721#undef SCHED_FEAT
722
723#ifdef CONFIG_SCHED_DEBUG
724#define SCHED_FEAT(name, enabled) \
725 #name ,
726
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700727static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200728#include "sched_features.h"
729 NULL
730};
731
732#undef SCHED_FEAT
733
Li Zefan34f3a812008-10-30 15:23:32 +0800734static int sched_feat_show(struct seq_file *m, void *v)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200735{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200736 int i;
737
738 for (i = 0; sched_feat_names[i]; i++) {
Li Zefan34f3a812008-10-30 15:23:32 +0800739 if (!(sysctl_sched_features & (1UL << i)))
740 seq_puts(m, "NO_");
741 seq_printf(m, "%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200742 }
Li Zefan34f3a812008-10-30 15:23:32 +0800743 seq_puts(m, "\n");
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200744
Li Zefan34f3a812008-10-30 15:23:32 +0800745 return 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200746}
747
748static ssize_t
749sched_feat_write(struct file *filp, const char __user *ubuf,
750 size_t cnt, loff_t *ppos)
751{
752 char buf[64];
753 char *cmp = buf;
754 int neg = 0;
755 int i;
756
757 if (cnt > 63)
758 cnt = 63;
759
760 if (copy_from_user(&buf, ubuf, cnt))
761 return -EFAULT;
762
763 buf[cnt] = 0;
764
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200765 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200766 neg = 1;
767 cmp += 3;
768 }
769
770 for (i = 0; sched_feat_names[i]; i++) {
771 int len = strlen(sched_feat_names[i]);
772
773 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
774 if (neg)
775 sysctl_sched_features &= ~(1UL << i);
776 else
777 sysctl_sched_features |= (1UL << i);
778 break;
779 }
780 }
781
782 if (!sched_feat_names[i])
783 return -EINVAL;
784
785 filp->f_pos += cnt;
786
787 return cnt;
788}
789
Li Zefan34f3a812008-10-30 15:23:32 +0800790static int sched_feat_open(struct inode *inode, struct file *filp)
791{
792 return single_open(filp, sched_feat_show, NULL);
793}
794
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200795static struct file_operations sched_feat_fops = {
Li Zefan34f3a812008-10-30 15:23:32 +0800796 .open = sched_feat_open,
797 .write = sched_feat_write,
798 .read = seq_read,
799 .llseek = seq_lseek,
800 .release = single_release,
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200801};
802
803static __init int sched_init_debug(void)
804{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200805 debugfs_create_file("sched_features", 0644, NULL, NULL,
806 &sched_feat_fops);
807
808 return 0;
809}
810late_initcall(sched_init_debug);
811
812#endif
813
814#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200815
816/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100817 * Number of tasks to iterate in a single balance run.
818 * Limited because this is done with IRQs disabled.
819 */
820const_debug unsigned int sysctl_sched_nr_migrate = 32;
821
822/*
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200823 * ratelimit for updating the group shares.
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200824 * default: 0.25ms
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200825 */
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200826unsigned int sysctl_sched_shares_ratelimit = 250000;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200827
828/*
Peter Zijlstraffda12a2008-10-17 19:27:02 +0200829 * Inject some fuzzyness into changing the per-cpu group shares
830 * this avoids remote rq-locks at the expense of fairness.
831 * default: 4
832 */
833unsigned int sysctl_sched_shares_thresh = 4;
834
835/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100836 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100837 * default: 1s
838 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100839unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100840
Ingo Molnar6892b752008-02-13 14:02:36 +0100841static __read_mostly int scheduler_running;
842
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100843/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100844 * part of the period that we allow rt tasks to run in us.
845 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100846 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100847int sysctl_sched_rt_runtime = 950000;
848
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200849static inline u64 global_rt_period(void)
850{
851 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
852}
853
854static inline u64 global_rt_runtime(void)
855{
roel kluine26873b2008-07-22 16:51:15 -0400856 if (sysctl_sched_rt_runtime < 0)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200857 return RUNTIME_INF;
858
859 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
860}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700863# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700865#ifndef finish_arch_switch
866# define finish_arch_switch(prev) do { } while (0)
867#endif
868
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100869static inline int task_current(struct rq *rq, struct task_struct *p)
870{
871 return rq->curr == p;
872}
873
Nick Piggin4866cde2005-06-25 14:57:23 -0700874#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700875static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700876{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100877 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700878}
879
Ingo Molnar70b97a72006-07-03 00:25:42 -0700880static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700881{
882}
883
Ingo Molnar70b97a72006-07-03 00:25:42 -0700884static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700885{
Ingo Molnarda04c032005-09-13 11:17:59 +0200886#ifdef CONFIG_DEBUG_SPINLOCK
887 /* this is a valid case when another task releases the spinlock */
888 rq->lock.owner = current;
889#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700890 /*
891 * If we are tracking spinlock dependencies then we have to
892 * fix up the runqueue lock - which gets 'carried over' from
893 * prev into current:
894 */
895 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
896
Nick Piggin4866cde2005-06-25 14:57:23 -0700897 spin_unlock_irq(&rq->lock);
898}
899
900#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700901static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700902{
903#ifdef CONFIG_SMP
904 return p->oncpu;
905#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100906 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700907#endif
908}
909
Ingo Molnar70b97a72006-07-03 00:25:42 -0700910static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700911{
912#ifdef CONFIG_SMP
913 /*
914 * We can optimise this out completely for !SMP, because the
915 * SMP rebalancing from interrupt is the only thing that cares
916 * here.
917 */
918 next->oncpu = 1;
919#endif
920#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
921 spin_unlock_irq(&rq->lock);
922#else
923 spin_unlock(&rq->lock);
924#endif
925}
926
Ingo Molnar70b97a72006-07-03 00:25:42 -0700927static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700928{
929#ifdef CONFIG_SMP
930 /*
931 * After ->oncpu is cleared, the task can be moved to a different CPU.
932 * We must ensure this doesn't happen until the switch is completely
933 * finished.
934 */
935 smp_wmb();
936 prev->oncpu = 0;
937#endif
938#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
939 local_irq_enable();
940#endif
941}
942#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700945 * __task_rq_lock - lock the runqueue a given task resides on.
946 * Must be called interrupts disabled.
947 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700948static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700949 __acquires(rq->lock)
950{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200951 for (;;) {
952 struct rq *rq = task_rq(p);
953 spin_lock(&rq->lock);
954 if (likely(rq == task_rq(p)))
955 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700956 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700957 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700958}
959
960/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100962 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 * explicitly disabling preemption.
964 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700965static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 __acquires(rq->lock)
967{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700968 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Andi Kleen3a5c3592007-10-15 17:00:14 +0200970 for (;;) {
971 local_irq_save(*flags);
972 rq = task_rq(p);
973 spin_lock(&rq->lock);
974 if (likely(rq == task_rq(p)))
975 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
Oleg Nesterovad474ca2008-11-10 15:39:30 +0100980void task_rq_unlock_wait(struct task_struct *p)
981{
982 struct rq *rq = task_rq(p);
983
984 smp_mb(); /* spin-unlock-wait is not a full memory barrier */
985 spin_unlock_wait(&rq->lock);
986}
987
Alexey Dobriyana9957442007-10-15 17:00:13 +0200988static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700989 __releases(rq->lock)
990{
991 spin_unlock(&rq->lock);
992}
993
Ingo Molnar70b97a72006-07-03 00:25:42 -0700994static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 __releases(rq->lock)
996{
997 spin_unlock_irqrestore(&rq->lock, *flags);
998}
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -08001001 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001003static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 __acquires(rq->lock)
1005{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001006 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 local_irq_disable();
1009 rq = this_rq();
1010 spin_lock(&rq->lock);
1011
1012 return rq;
1013}
1014
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001015#ifdef CONFIG_SCHED_HRTICK
1016/*
1017 * Use HR-timers to deliver accurate preemption points.
1018 *
1019 * Its all a bit involved since we cannot program an hrt while holding the
1020 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1021 * reschedule event.
1022 *
1023 * When we get rescheduled we reprogram the hrtick_timer outside of the
1024 * rq->lock.
1025 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001026
1027/*
1028 * Use hrtick when:
1029 * - enabled by features
1030 * - hrtimer is actually high res
1031 */
1032static inline int hrtick_enabled(struct rq *rq)
1033{
1034 if (!sched_feat(HRTICK))
1035 return 0;
Ingo Molnarba420592008-07-20 11:02:06 +02001036 if (!cpu_active(cpu_of(rq)))
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001037 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001038 return hrtimer_is_hres_active(&rq->hrtick_timer);
1039}
1040
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001041static void hrtick_clear(struct rq *rq)
1042{
1043 if (hrtimer_active(&rq->hrtick_timer))
1044 hrtimer_cancel(&rq->hrtick_timer);
1045}
1046
1047/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001048 * High-resolution timer tick.
1049 * Runs from hardirq context with interrupts disabled.
1050 */
1051static enum hrtimer_restart hrtick(struct hrtimer *timer)
1052{
1053 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1054
1055 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1056
1057 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001058 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001059 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1060 spin_unlock(&rq->lock);
1061
1062 return HRTIMER_NORESTART;
1063}
1064
Rabin Vincent95e904c2008-05-11 05:55:33 +05301065#ifdef CONFIG_SMP
Peter Zijlstra31656512008-07-18 18:01:23 +02001066/*
1067 * called from hardirq (IPI) context
1068 */
1069static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001070{
Peter Zijlstra31656512008-07-18 18:01:23 +02001071 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001072
Peter Zijlstra31656512008-07-18 18:01:23 +02001073 spin_lock(&rq->lock);
1074 hrtimer_restart(&rq->hrtick_timer);
1075 rq->hrtick_csd_pending = 0;
1076 spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001077}
1078
Peter Zijlstra31656512008-07-18 18:01:23 +02001079/*
1080 * Called to set the hrtick timer state.
1081 *
1082 * called with rq->lock held and irqs disabled
1083 */
1084static void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001085{
Peter Zijlstra31656512008-07-18 18:01:23 +02001086 struct hrtimer *timer = &rq->hrtick_timer;
1087 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001088
Arjan van de Vencc584b22008-09-01 15:02:30 -07001089 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +02001090
1091 if (rq == this_rq()) {
1092 hrtimer_restart(timer);
1093 } else if (!rq->hrtick_csd_pending) {
1094 __smp_call_function_single(cpu_of(rq), &rq->hrtick_csd);
1095 rq->hrtick_csd_pending = 1;
1096 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001097}
1098
1099static int
1100hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1101{
1102 int cpu = (int)(long)hcpu;
1103
1104 switch (action) {
1105 case CPU_UP_CANCELED:
1106 case CPU_UP_CANCELED_FROZEN:
1107 case CPU_DOWN_PREPARE:
1108 case CPU_DOWN_PREPARE_FROZEN:
1109 case CPU_DEAD:
1110 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +02001111 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001112 return NOTIFY_OK;
1113 }
1114
1115 return NOTIFY_DONE;
1116}
1117
Rakib Mullickfa748202008-09-22 14:55:45 -07001118static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001119{
1120 hotcpu_notifier(hotplug_hrtick, 0);
1121}
Peter Zijlstra31656512008-07-18 18:01:23 +02001122#else
1123/*
1124 * Called to set the hrtick timer state.
1125 *
1126 * called with rq->lock held and irqs disabled
1127 */
1128static void hrtick_start(struct rq *rq, u64 delay)
1129{
1130 hrtimer_start(&rq->hrtick_timer, ns_to_ktime(delay), HRTIMER_MODE_REL);
1131}
1132
Andrew Morton006c75f2008-09-22 14:55:46 -07001133static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +02001134{
1135}
Rabin Vincent95e904c2008-05-11 05:55:33 +05301136#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001137
1138static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001139{
Peter Zijlstra31656512008-07-18 18:01:23 +02001140#ifdef CONFIG_SMP
1141 rq->hrtick_csd_pending = 0;
1142
1143 rq->hrtick_csd.flags = 0;
1144 rq->hrtick_csd.func = __hrtick_start;
1145 rq->hrtick_csd.info = rq;
1146#endif
1147
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001148 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1149 rq->hrtick_timer.function = hrtick;
Thomas Gleixnerccc7dad2008-09-29 15:47:42 +02001150 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_PERCPU;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001151}
Andrew Morton006c75f2008-09-22 14:55:46 -07001152#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001153static inline void hrtick_clear(struct rq *rq)
1154{
1155}
1156
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001157static inline void init_rq_hrtick(struct rq *rq)
1158{
1159}
1160
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001161static inline void init_hrtick(void)
1162{
1163}
Andrew Morton006c75f2008-09-22 14:55:46 -07001164#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001165
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001166/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001167 * resched_task - mark a task 'to be rescheduled now'.
1168 *
1169 * On UP this means the setting of the need_resched flag, on SMP it
1170 * might also involve a cross-CPU call to trigger the scheduler on
1171 * the target CPU.
1172 */
1173#ifdef CONFIG_SMP
1174
1175#ifndef tsk_is_polling
1176#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1177#endif
1178
Peter Zijlstra31656512008-07-18 18:01:23 +02001179static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001180{
1181 int cpu;
1182
1183 assert_spin_locked(&task_rq(p)->lock);
1184
Peter Zijlstra31656512008-07-18 18:01:23 +02001185 if (unlikely(test_tsk_thread_flag(p, TIF_NEED_RESCHED)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001186 return;
1187
Peter Zijlstra31656512008-07-18 18:01:23 +02001188 set_tsk_thread_flag(p, TIF_NEED_RESCHED);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001189
1190 cpu = task_cpu(p);
1191 if (cpu == smp_processor_id())
1192 return;
1193
1194 /* NEED_RESCHED must be visible before we test polling */
1195 smp_mb();
1196 if (!tsk_is_polling(p))
1197 smp_send_reschedule(cpu);
1198}
1199
1200static void resched_cpu(int cpu)
1201{
1202 struct rq *rq = cpu_rq(cpu);
1203 unsigned long flags;
1204
1205 if (!spin_trylock_irqsave(&rq->lock, flags))
1206 return;
1207 resched_task(cpu_curr(cpu));
1208 spin_unlock_irqrestore(&rq->lock, flags);
1209}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001210
1211#ifdef CONFIG_NO_HZ
1212/*
1213 * When add_timer_on() enqueues a timer into the timer wheel of an
1214 * idle CPU then this timer might expire before the next timer event
1215 * which is scheduled to wake up that CPU. In case of a completely
1216 * idle system the next event might even be infinite time into the
1217 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1218 * leaves the inner idle loop so the newly added timer is taken into
1219 * account when the CPU goes back to idle and evaluates the timer
1220 * wheel for the next timer event.
1221 */
1222void wake_up_idle_cpu(int cpu)
1223{
1224 struct rq *rq = cpu_rq(cpu);
1225
1226 if (cpu == smp_processor_id())
1227 return;
1228
1229 /*
1230 * This is safe, as this function is called with the timer
1231 * wheel base lock of (cpu) held. When the CPU is on the way
1232 * to idle and has not yet set rq->curr to idle then it will
1233 * be serialized on the timer wheel base lock and take the new
1234 * timer into account automatically.
1235 */
1236 if (rq->curr != rq->idle)
1237 return;
1238
1239 /*
1240 * We can set TIF_RESCHED on the idle task of the other CPU
1241 * lockless. The worst case is that the other CPU runs the
1242 * idle task through an additional NOOP schedule()
1243 */
1244 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1245
1246 /* NEED_RESCHED must be visible before we test polling */
1247 smp_mb();
1248 if (!tsk_is_polling(rq->idle))
1249 smp_send_reschedule(cpu);
1250}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001251#endif /* CONFIG_NO_HZ */
Thomas Gleixner06d83082008-03-22 09:20:24 +01001252
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001253#else /* !CONFIG_SMP */
Peter Zijlstra31656512008-07-18 18:01:23 +02001254static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001255{
1256 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001257 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001258}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001259#endif /* CONFIG_SMP */
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001260
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001261#if BITS_PER_LONG == 32
1262# define WMULT_CONST (~0UL)
1263#else
1264# define WMULT_CONST (1UL << 32)
1265#endif
1266
1267#define WMULT_SHIFT 32
1268
Ingo Molnar194081e2007-08-09 11:16:51 +02001269/*
1270 * Shift right and round:
1271 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001272#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001273
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001274/*
1275 * delta *= weight / lw
1276 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001277static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001278calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1279 struct load_weight *lw)
1280{
1281 u64 tmp;
1282
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001283 if (!lw->inv_weight) {
1284 if (BITS_PER_LONG > 32 && unlikely(lw->weight >= WMULT_CONST))
1285 lw->inv_weight = 1;
1286 else
1287 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)
1288 / (lw->weight+1);
1289 }
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001290
1291 tmp = (u64)delta_exec * weight;
1292 /*
1293 * Check whether we'd overflow the 64-bit multiplication:
1294 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001295 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001296 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001297 WMULT_SHIFT/2);
1298 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001299 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001300
Ingo Molnarecf691d2007-08-02 17:41:40 +02001301 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001302}
1303
Ingo Molnar10919852007-10-15 17:00:04 +02001304static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001305{
1306 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001307 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001308}
1309
Ingo Molnar10919852007-10-15 17:00:04 +02001310static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001311{
1312 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001313 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001317 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1318 * of tasks with abnormal "nice" values across CPUs the contribution that
1319 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001320 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001321 * scaled version of the new time slice allocation that they receive on time
1322 * slice expiry etc.
1323 */
1324
Ingo Molnardd41f592007-07-09 18:51:59 +02001325#define WEIGHT_IDLEPRIO 2
1326#define WMULT_IDLEPRIO (1 << 31)
1327
1328/*
1329 * Nice levels are multiplicative, with a gentle 10% change for every
1330 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1331 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1332 * that remained on nice 0.
1333 *
1334 * The "10% effect" is relative and cumulative: from _any_ nice level,
1335 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001336 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1337 * If a task goes up by ~10% and another task goes down by ~10% then
1338 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001339 */
1340static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001341 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1342 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1343 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1344 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1345 /* 0 */ 1024, 820, 655, 526, 423,
1346 /* 5 */ 335, 272, 215, 172, 137,
1347 /* 10 */ 110, 87, 70, 56, 45,
1348 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001349};
1350
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001351/*
1352 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1353 *
1354 * In cases where the weight does not change often, we can use the
1355 * precalculated inverse to speed up arithmetics by turning divisions
1356 * into multiplications:
1357 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001358static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001359 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1360 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1361 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1362 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1363 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1364 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1365 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1366 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001367};
Peter Williams2dd73a42006-06-27 02:54:34 -07001368
Ingo Molnardd41f592007-07-09 18:51:59 +02001369static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1370
1371/*
1372 * runqueue iterator, to support SMP load-balancing between different
1373 * scheduling classes, without having to expose their internal data
1374 * structures to the load-balancing proper:
1375 */
1376struct rq_iterator {
1377 void *arg;
1378 struct task_struct *(*start)(void *);
1379 struct task_struct *(*next)(void *);
1380};
1381
Peter Williamse1d14842007-10-24 18:23:51 +02001382#ifdef CONFIG_SMP
1383static unsigned long
1384balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1385 unsigned long max_load_move, struct sched_domain *sd,
1386 enum cpu_idle_type idle, int *all_pinned,
1387 int *this_best_prio, struct rq_iterator *iterator);
1388
1389static int
1390iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1391 struct sched_domain *sd, enum cpu_idle_type idle,
1392 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001393#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001394
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001395#ifdef CONFIG_CGROUP_CPUACCT
1396static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1397#else
1398static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1399#endif
1400
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001401static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1402{
1403 update_load_add(&rq->load, load);
1404}
1405
1406static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1407{
1408 update_load_sub(&rq->load, load);
1409}
1410
Ingo Molnar7940ca32008-08-19 13:40:47 +02001411#if (defined(CONFIG_SMP) && defined(CONFIG_FAIR_GROUP_SCHED)) || defined(CONFIG_RT_GROUP_SCHED)
Peter Zijlstraeb755802008-08-19 12:33:05 +02001412typedef int (*tg_visitor)(struct task_group *, void *);
1413
1414/*
1415 * Iterate the full tree, calling @down when first entering a node and @up when
1416 * leaving it for the final time.
1417 */
1418static int walk_tg_tree(tg_visitor down, tg_visitor up, void *data)
1419{
1420 struct task_group *parent, *child;
1421 int ret;
1422
1423 rcu_read_lock();
1424 parent = &root_task_group;
1425down:
1426 ret = (*down)(parent, data);
1427 if (ret)
1428 goto out_unlock;
1429 list_for_each_entry_rcu(child, &parent->children, siblings) {
1430 parent = child;
1431 goto down;
1432
1433up:
1434 continue;
1435 }
1436 ret = (*up)(parent, data);
1437 if (ret)
1438 goto out_unlock;
1439
1440 child = parent;
1441 parent = parent->parent;
1442 if (parent)
1443 goto up;
1444out_unlock:
1445 rcu_read_unlock();
1446
1447 return ret;
1448}
1449
1450static int tg_nop(struct task_group *tg, void *data)
1451{
1452 return 0;
1453}
1454#endif
1455
Gregory Haskinse7693a32008-01-25 21:08:09 +01001456#ifdef CONFIG_SMP
1457static unsigned long source_load(int cpu, int type);
1458static unsigned long target_load(int cpu, int type);
Gregory Haskinse7693a32008-01-25 21:08:09 +01001459static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001460
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001461static unsigned long cpu_avg_load_per_task(int cpu)
1462{
1463 struct rq *rq = cpu_rq(cpu);
Ingo Molnaraf6d5962008-11-29 20:45:15 +01001464 unsigned long nr_running = ACCESS_ONCE(rq->nr_running);
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001465
Steven Rostedt4cd42622008-11-26 21:04:24 -05001466 if (nr_running)
1467 rq->avg_load_per_task = rq->load.weight / nr_running;
Balbir Singha2d47772008-11-12 16:19:00 +05301468 else
1469 rq->avg_load_per_task = 0;
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001470
1471 return rq->avg_load_per_task;
1472}
1473
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001474#ifdef CONFIG_FAIR_GROUP_SCHED
1475
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001476static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1477
1478/*
1479 * Calculate and set the cpu's group shares.
1480 */
1481static void
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001482update_group_shares_cpu(struct task_group *tg, int cpu,
1483 unsigned long sd_shares, unsigned long sd_rq_weight)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001484{
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001485 unsigned long shares;
1486 unsigned long rq_weight;
1487
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001488 if (!tg->se[cpu])
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001489 return;
1490
Ken Chenec4e0e22008-11-18 22:41:57 -08001491 rq_weight = tg->cfs_rq[cpu]->rq_weight;
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001492
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001493 /*
1494 * \Sum shares * rq_weight
1495 * shares = -----------------------
1496 * \Sum rq_weight
1497 *
1498 */
Ken Chenec4e0e22008-11-18 22:41:57 -08001499 shares = (sd_shares * rq_weight) / sd_rq_weight;
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001500 shares = clamp_t(unsigned long, shares, MIN_SHARES, MAX_SHARES);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001501
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001502 if (abs(shares - tg->se[cpu]->load.weight) >
1503 sysctl_sched_shares_thresh) {
1504 struct rq *rq = cpu_rq(cpu);
1505 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001506
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001507 spin_lock_irqsave(&rq->lock, flags);
Ken Chenec4e0e22008-11-18 22:41:57 -08001508 tg->cfs_rq[cpu]->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001509
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001510 __set_se_shares(tg->se[cpu], shares);
1511 spin_unlock_irqrestore(&rq->lock, flags);
1512 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001513}
1514
1515/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001516 * Re-compute the task group their per cpu shares over the given domain.
1517 * This needs to be done in a bottom-up fashion because the rq weight of a
1518 * parent group depends on the shares of its child groups.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001519 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001520static int tg_shares_up(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001521{
Ken Chenec4e0e22008-11-18 22:41:57 -08001522 unsigned long weight, rq_weight = 0;
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001523 unsigned long shares = 0;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001524 struct sched_domain *sd = data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001525 int i;
1526
Rusty Russell758b2cd2008-11-25 02:35:04 +10301527 for_each_cpu(i, sched_domain_span(sd)) {
Ken Chenec4e0e22008-11-18 22:41:57 -08001528 /*
1529 * If there are currently no tasks on the cpu pretend there
1530 * is one of average load so that when a new task gets to
1531 * run here it will not get delayed by group starvation.
1532 */
1533 weight = tg->cfs_rq[i]->load.weight;
1534 if (!weight)
1535 weight = NICE_0_LOAD;
1536
1537 tg->cfs_rq[i]->rq_weight = weight;
1538 rq_weight += weight;
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001539 shares += tg->cfs_rq[i]->shares;
1540 }
1541
1542 if ((!shares && rq_weight) || shares > tg->shares)
1543 shares = tg->shares;
1544
1545 if (!sd->parent || !(sd->parent->flags & SD_LOAD_BALANCE))
1546 shares = tg->shares;
1547
Rusty Russell758b2cd2008-11-25 02:35:04 +10301548 for_each_cpu(i, sched_domain_span(sd))
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001549 update_group_shares_cpu(tg, i, shares, rq_weight);
Peter Zijlstraeb755802008-08-19 12:33:05 +02001550
1551 return 0;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001552}
1553
1554/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001555 * Compute the cpu's hierarchical load factor for each task group.
1556 * This needs to be done in a top-down fashion because the load of a child
1557 * group is a fraction of its parents load.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001558 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001559static int tg_load_down(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001560{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001561 unsigned long load;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001562 long cpu = (long)data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001563
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001564 if (!tg->parent) {
1565 load = cpu_rq(cpu)->load.weight;
1566 } else {
1567 load = tg->parent->cfs_rq[cpu]->h_load;
1568 load *= tg->cfs_rq[cpu]->shares;
1569 load /= tg->parent->cfs_rq[cpu]->load.weight + 1;
1570 }
1571
1572 tg->cfs_rq[cpu]->h_load = load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001573
Peter Zijlstraeb755802008-08-19 12:33:05 +02001574 return 0;
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001575}
1576
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001577static void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001578{
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001579 u64 now = cpu_clock(raw_smp_processor_id());
1580 s64 elapsed = now - sd->last_update;
1581
1582 if (elapsed >= (s64)(u64)sysctl_sched_shares_ratelimit) {
1583 sd->last_update = now;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001584 walk_tg_tree(tg_nop, tg_shares_up, sd);
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001585 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001586}
1587
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001588static void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1589{
1590 spin_unlock(&rq->lock);
1591 update_shares(sd);
1592 spin_lock(&rq->lock);
1593}
1594
Peter Zijlstraeb755802008-08-19 12:33:05 +02001595static void update_h_load(long cpu)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001596{
Peter Zijlstraeb755802008-08-19 12:33:05 +02001597 walk_tg_tree(tg_load_down, tg_nop, (void *)cpu);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001598}
1599
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001600#else
1601
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001602static inline void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001603{
1604}
1605
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001606static inline void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1607{
1608}
1609
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001610#endif
1611
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001612#ifdef CONFIG_PREEMPT
1613
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001614/*
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001615 * fair double_lock_balance: Safely acquires both rq->locks in a fair
1616 * way at the expense of forcing extra atomic operations in all
1617 * invocations. This assures that the double_lock is acquired using the
1618 * same underlying policy as the spinlock_t on this architecture, which
1619 * reduces latency compared to the unfair variant below. However, it
1620 * also adds more overhead and therefore may reduce throughput.
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001621 */
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001622static inline int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
1623 __releases(this_rq->lock)
1624 __acquires(busiest->lock)
1625 __acquires(this_rq->lock)
1626{
1627 spin_unlock(&this_rq->lock);
1628 double_rq_lock(this_rq, busiest);
1629
1630 return 1;
1631}
1632
1633#else
1634/*
1635 * Unfair double_lock_balance: Optimizes throughput at the expense of
1636 * latency by eliminating extra atomic operations when the locks are
1637 * already in proper order on entry. This favors lower cpu-ids and will
1638 * grant the double lock to lower cpus over higher ids under contention,
1639 * regardless of entry order into the function.
1640 */
1641static int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001642 __releases(this_rq->lock)
1643 __acquires(busiest->lock)
1644 __acquires(this_rq->lock)
1645{
1646 int ret = 0;
1647
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001648 if (unlikely(!spin_trylock(&busiest->lock))) {
1649 if (busiest < this_rq) {
1650 spin_unlock(&this_rq->lock);
1651 spin_lock(&busiest->lock);
1652 spin_lock_nested(&this_rq->lock, SINGLE_DEPTH_NESTING);
1653 ret = 1;
1654 } else
1655 spin_lock_nested(&busiest->lock, SINGLE_DEPTH_NESTING);
1656 }
1657 return ret;
1658}
1659
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001660#endif /* CONFIG_PREEMPT */
1661
1662/*
1663 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1664 */
1665static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
1666{
1667 if (unlikely(!irqs_disabled())) {
1668 /* printk() doesn't work good under rq->lock */
1669 spin_unlock(&this_rq->lock);
1670 BUG_ON(1);
1671 }
1672
1673 return _double_lock_balance(this_rq, busiest);
1674}
1675
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001676static inline void double_unlock_balance(struct rq *this_rq, struct rq *busiest)
1677 __releases(busiest->lock)
1678{
1679 spin_unlock(&busiest->lock);
1680 lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_);
1681}
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001682#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001683
1684#ifdef CONFIG_FAIR_GROUP_SCHED
1685static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1686{
Vegard Nossum30432092008-06-27 21:35:50 +02001687#ifdef CONFIG_SMP
Ingo Molnar34e83e82008-06-27 15:42:36 +02001688 cfs_rq->shares = shares;
1689#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001690}
1691#endif
1692
Ingo Molnardd41f592007-07-09 18:51:59 +02001693#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001694#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001695#include "sched_fair.c"
1696#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001697#ifdef CONFIG_SCHED_DEBUG
1698# include "sched_debug.c"
1699#endif
1700
1701#define sched_class_highest (&rt_sched_class)
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001702#define for_each_class(class) \
1703 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001704
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001705static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001706{
1707 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001708}
1709
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001710static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001711{
1712 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001713}
1714
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001715static void set_load_weight(struct task_struct *p)
1716{
1717 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001718 p->se.load.weight = prio_to_weight[0] * 2;
1719 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1720 return;
1721 }
1722
1723 /*
1724 * SCHED_IDLE tasks get minimal weight:
1725 */
1726 if (p->policy == SCHED_IDLE) {
1727 p->se.load.weight = WEIGHT_IDLEPRIO;
1728 p->se.load.inv_weight = WMULT_IDLEPRIO;
1729 return;
1730 }
1731
1732 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1733 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001734}
1735
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001736static void update_avg(u64 *avg, u64 sample)
1737{
1738 s64 diff = sample - *avg;
1739 *avg += diff >> 3;
1740}
1741
Ingo Molnar8159f872007-08-09 11:16:49 +02001742static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001743{
1744 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001745 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001746 p->se.on_rq = 1;
1747}
1748
Ingo Molnar69be72c2007-08-09 11:16:49 +02001749static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001750{
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001751 if (sleep && p->se.last_wakeup) {
1752 update_avg(&p->se.avg_overlap,
1753 p->se.sum_exec_runtime - p->se.last_wakeup);
1754 p->se.last_wakeup = 0;
1755 }
1756
Ankita Garg46ac22b2008-07-01 14:30:06 +05301757 sched_info_dequeued(p);
Ingo Molnarf02231e2007-08-09 11:16:48 +02001758 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001759 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001760}
1761
1762/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001763 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001764 */
Ingo Molnar14531182007-07-09 18:51:59 +02001765static inline int __normal_prio(struct task_struct *p)
1766{
Ingo Molnardd41f592007-07-09 18:51:59 +02001767 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001768}
1769
1770/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001771 * Calculate the expected normal priority: i.e. priority
1772 * without taking RT-inheritance into account. Might be
1773 * boosted by interactivity modifiers. Changes upon fork,
1774 * setprio syscalls, and whenever the interactivity
1775 * estimator recalculates.
1776 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001777static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001778{
1779 int prio;
1780
Ingo Molnare05606d2007-07-09 18:51:59 +02001781 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001782 prio = MAX_RT_PRIO-1 - p->rt_priority;
1783 else
1784 prio = __normal_prio(p);
1785 return prio;
1786}
1787
1788/*
1789 * Calculate the current priority, i.e. the priority
1790 * taken into account by the scheduler. This value might
1791 * be boosted by RT tasks, or might be boosted by
1792 * interactivity modifiers. Will be RT if the task got
1793 * RT-boosted. If not then it returns p->normal_prio.
1794 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001795static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001796{
1797 p->normal_prio = normal_prio(p);
1798 /*
1799 * If we are RT tasks or we were boosted to RT priority,
1800 * keep the priority unchanged. Otherwise, update priority
1801 * to the normal priority:
1802 */
1803 if (!rt_prio(p->prio))
1804 return p->normal_prio;
1805 return p->prio;
1806}
1807
1808/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001809 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001811static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001813 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001814 rq->nr_uninterruptible--;
1815
Ingo Molnar8159f872007-08-09 11:16:49 +02001816 enqueue_task(rq, p, wakeup);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001817 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818}
1819
1820/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 * deactivate_task - remove a task from the runqueue.
1822 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001823static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001825 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001826 rq->nr_uninterruptible++;
1827
Ingo Molnar69be72c2007-08-09 11:16:49 +02001828 dequeue_task(rq, p, sleep);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001829 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832/**
1833 * task_curr - is this task currently executing on a CPU?
1834 * @p: the task in question.
1835 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001836inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 return cpu_curr(task_cpu(p)) == p;
1839}
1840
Ingo Molnardd41f592007-07-09 18:51:59 +02001841static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1842{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001843 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001844#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001845 /*
1846 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1847 * successfuly executed on another CPU. We must ensure that updates of
1848 * per-task data have been completed by this moment.
1849 */
1850 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001851 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001852#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001853}
1854
Steven Rostedtcb469842008-01-25 21:08:22 +01001855static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1856 const struct sched_class *prev_class,
1857 int oldprio, int running)
1858{
1859 if (prev_class != p->sched_class) {
1860 if (prev_class->switched_from)
1861 prev_class->switched_from(rq, p, running);
1862 p->sched_class->switched_to(rq, p, running);
1863 } else
1864 p->sched_class->prio_changed(rq, p, oldprio, running);
1865}
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001868
Thomas Gleixnere958b362008-06-04 23:22:32 +02001869/* Used instead of source_load when we know the type == 0 */
1870static unsigned long weighted_cpuload(const int cpu)
1871{
1872 return cpu_rq(cpu)->load.weight;
1873}
1874
Ingo Molnarcc367732007-10-15 17:00:18 +02001875/*
1876 * Is this task likely cache-hot:
1877 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001878static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001879task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1880{
1881 s64 delta;
1882
Ingo Molnarf540a602008-03-15 17:10:34 +01001883 /*
1884 * Buddy candidates are cache hot:
1885 */
Peter Zijlstra47932412008-11-04 21:25:09 +01001886 if (sched_feat(CACHE_HOT_BUDDY) &&
1887 (&p->se == cfs_rq_of(&p->se)->next ||
1888 &p->se == cfs_rq_of(&p->se)->last))
Ingo Molnarf540a602008-03-15 17:10:34 +01001889 return 1;
1890
Ingo Molnarcc367732007-10-15 17:00:18 +02001891 if (p->sched_class != &fair_sched_class)
1892 return 0;
1893
Ingo Molnar6bc16652007-10-15 17:00:18 +02001894 if (sysctl_sched_migration_cost == -1)
1895 return 1;
1896 if (sysctl_sched_migration_cost == 0)
1897 return 0;
1898
Ingo Molnarcc367732007-10-15 17:00:18 +02001899 delta = now - p->se.exec_start;
1900
1901 return delta < (s64)sysctl_sched_migration_cost;
1902}
1903
1904
Ingo Molnardd41f592007-07-09 18:51:59 +02001905void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001906{
Ingo Molnardd41f592007-07-09 18:51:59 +02001907 int old_cpu = task_cpu(p);
1908 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001909 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1910 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001911 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001912
1913 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001914
1915#ifdef CONFIG_SCHEDSTATS
1916 if (p->se.wait_start)
1917 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001918 if (p->se.sleep_start)
1919 p->se.sleep_start -= clock_offset;
1920 if (p->se.block_start)
1921 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001922 if (old_cpu != new_cpu) {
1923 schedstat_inc(p, se.nr_migrations);
1924 if (task_hot(p, old_rq->clock, NULL))
1925 schedstat_inc(p, se.nr_forced2_migrations);
1926 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001927#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001928 p->se.vruntime -= old_cfsrq->min_vruntime -
1929 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001930
1931 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001932}
1933
Ingo Molnar70b97a72006-07-03 00:25:42 -07001934struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Ingo Molnar36c8b582006-07-03 00:25:41 -07001937 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 int dest_cpu;
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001941};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943/*
1944 * The task's runqueue lock must be held.
1945 * Returns true if you have to wait for migration thread.
1946 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001947static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001948migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001950 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952 /*
1953 * If the task is not on a runqueue (and not running), then
1954 * it is sufficient to simply update the task's cpu field.
1955 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001956 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 set_task_cpu(p, dest_cpu);
1958 return 0;
1959 }
1960
1961 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 req->task = p;
1963 req->dest_cpu = dest_cpu;
1964 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return 1;
1967}
1968
1969/*
1970 * wait_task_inactive - wait for a thread to unschedule.
1971 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07001972 * If @match_state is nonzero, it's the @p->state value just checked and
1973 * not expected to change. If it changes, i.e. @p might have woken up,
1974 * then return zero. When we succeed in waiting for @p to be off its CPU,
1975 * we return a positive number (its total switch count). If a second call
1976 * a short while later returns the same number, the caller can be sure that
1977 * @p has remained unscheduled the whole time.
1978 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 * The caller must ensure that the task *will* unschedule sometime soon,
1980 * else this function might spin for a *long* time. This function can't
1981 * be called with interrupts off, or it may introduce deadlock with
1982 * smp_call_function() if an IPI is sent by the same process we are
1983 * waiting to become inactive.
1984 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001985unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
1987 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001988 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001989 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001990 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Andi Kleen3a5c3592007-10-15 17:00:14 +02001992 for (;;) {
1993 /*
1994 * We do the initial early heuristics without holding
1995 * any task-queue locks at all. We'll only try to get
1996 * the runqueue lock when things look like they will
1997 * work out!
1998 */
1999 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002000
Andi Kleen3a5c3592007-10-15 17:00:14 +02002001 /*
2002 * If the task is actively running on another CPU
2003 * still, just relax and busy-wait without holding
2004 * any locks.
2005 *
2006 * NOTE! Since we don't hold any locks, it's not
2007 * even sure that "rq" stays as the right runqueue!
2008 * But we don't care, since "task_running()" will
2009 * return false if the runqueue has changed and p
2010 * is actually now running somewhere else!
2011 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002012 while (task_running(rq, p)) {
2013 if (match_state && unlikely(p->state != match_state))
2014 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02002015 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07002016 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002017
Andi Kleen3a5c3592007-10-15 17:00:14 +02002018 /*
2019 * Ok, time to look more closely! We need the rq
2020 * lock now, to be *sure*. If we're wrong, we'll
2021 * just go back and repeat.
2022 */
2023 rq = task_rq_lock(p, &flags);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002024 trace_sched_wait_task(rq, p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002025 running = task_running(rq, p);
2026 on_rq = p->se.on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002027 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07002028 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07002029 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Andi Kleen3a5c3592007-10-15 17:00:14 +02002030 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002031
Andi Kleen3a5c3592007-10-15 17:00:14 +02002032 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07002033 * If it changed from the expected state, bail out now.
2034 */
2035 if (unlikely(!ncsw))
2036 break;
2037
2038 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02002039 * Was it really running after all now that we
2040 * checked with the proper locks actually held?
2041 *
2042 * Oops. Go back and try again..
2043 */
2044 if (unlikely(running)) {
2045 cpu_relax();
2046 continue;
2047 }
2048
2049 /*
2050 * It's not enough that it's not actively running,
2051 * it must be off the runqueue _entirely_, and not
2052 * preempted!
2053 *
2054 * So if it wa still runnable (but just not actively
2055 * running right now), it's preempted, and we should
2056 * yield - it could be a while.
2057 */
2058 if (unlikely(on_rq)) {
2059 schedule_timeout_uninterruptible(1);
2060 continue;
2061 }
2062
2063 /*
2064 * Ahh, all good. It wasn't running, and it wasn't
2065 * runnable, which means that it will never become
2066 * running in the future either. We're all done!
2067 */
2068 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07002070
2071 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072}
2073
2074/***
2075 * kick_process - kick a running thread to enter/exit the kernel
2076 * @p: the to-be-kicked thread
2077 *
2078 * Cause a process which is running on another CPU to enter
2079 * kernel-mode, without any delay. (to get signals handled.)
2080 *
2081 * NOTE: this function doesnt have to take the runqueue lock,
2082 * because all it wants to ensure is that the remote task enters
2083 * the kernel. If the IPI races and the task has been migrated
2084 * to another CPU then no harm is done and the purpose has been
2085 * achieved as well.
2086 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002087void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088{
2089 int cpu;
2090
2091 preempt_disable();
2092 cpu = task_cpu(p);
2093 if ((cpu != smp_processor_id()) && task_curr(p))
2094 smp_send_reschedule(cpu);
2095 preempt_enable();
2096}
2097
2098/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002099 * Return a low guess at the load of a migration-source cpu weighted
2100 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 *
2102 * We want to under-estimate the load of migration sources, to
2103 * balance conservatively.
2104 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002105static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002106{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002107 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002108 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002109
Peter Zijlstra93b75212008-06-27 13:41:33 +02002110 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002111 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002112
Ingo Molnardd41f592007-07-09 18:51:59 +02002113 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
2115
2116/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002117 * Return a high guess at the load of a migration-target cpu weighted
2118 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002120static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002121{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002122 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002123 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002124
Peter Zijlstra93b75212008-06-27 13:41:33 +02002125 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002126 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002127
Ingo Molnardd41f592007-07-09 18:51:59 +02002128 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002129}
2130
2131/*
Nick Piggin147cbb42005-06-25 14:57:19 -07002132 * find_idlest_group finds and returns the least busy CPU group within the
2133 * domain.
2134 */
2135static struct sched_group *
2136find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2137{
2138 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2139 unsigned long min_load = ULONG_MAX, this_load = 0;
2140 int load_idx = sd->forkexec_idx;
2141 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2142
2143 do {
2144 unsigned long load, avg_load;
2145 int local_group;
2146 int i;
2147
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002148 /* Skip over this group if it has no CPUs allowed */
Rusty Russell758b2cd2008-11-25 02:35:04 +10302149 if (!cpumask_intersects(sched_group_cpus(group),
2150 &p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002151 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002152
Rusty Russell758b2cd2008-11-25 02:35:04 +10302153 local_group = cpumask_test_cpu(this_cpu,
2154 sched_group_cpus(group));
Nick Piggin147cbb42005-06-25 14:57:19 -07002155
2156 /* Tally up the load of all CPUs in the group */
2157 avg_load = 0;
2158
Rusty Russell758b2cd2008-11-25 02:35:04 +10302159 for_each_cpu(i, sched_group_cpus(group)) {
Nick Piggin147cbb42005-06-25 14:57:19 -07002160 /* Bias balancing toward cpus of our domain */
2161 if (local_group)
2162 load = source_load(i, load_idx);
2163 else
2164 load = target_load(i, load_idx);
2165
2166 avg_load += load;
2167 }
2168
2169 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002170 avg_load = sg_div_cpu_power(group,
2171 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002172
2173 if (local_group) {
2174 this_load = avg_load;
2175 this = group;
2176 } else if (avg_load < min_load) {
2177 min_load = avg_load;
2178 idlest = group;
2179 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002180 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002181
2182 if (!idlest || 100*this_load < imbalance*min_load)
2183 return NULL;
2184 return idlest;
2185}
2186
2187/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002188 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002189 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002190static int
Rusty Russell758b2cd2008-11-25 02:35:04 +10302191find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07002192{
2193 unsigned long load, min_load = ULONG_MAX;
2194 int idlest = -1;
2195 int i;
2196
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002197 /* Traverse only the allowed CPUs */
Rusty Russell758b2cd2008-11-25 02:35:04 +10302198 for_each_cpu_and(i, sched_group_cpus(group), &p->cpus_allowed) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002199 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002200
2201 if (load < min_load || (load == min_load && i == this_cpu)) {
2202 min_load = load;
2203 idlest = i;
2204 }
2205 }
2206
2207 return idlest;
2208}
2209
Nick Piggin476d1392005-06-25 14:57:29 -07002210/*
2211 * sched_balance_self: balance the current task (running on cpu) in domains
2212 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2213 * SD_BALANCE_EXEC.
2214 *
2215 * Balance, ie. select the least loaded group.
2216 *
2217 * Returns the target CPU number, or the same CPU if no balancing is needed.
2218 *
2219 * preempt must be disabled.
2220 */
2221static int sched_balance_self(int cpu, int flag)
2222{
2223 struct task_struct *t = current;
2224 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002225
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002226 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002227 /*
2228 * If power savings logic is enabled for a domain, stop there.
2229 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002230 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2231 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002232 if (tmp->flags & flag)
2233 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002234 }
Nick Piggin476d1392005-06-25 14:57:29 -07002235
Peter Zijlstra039a1c42008-06-27 13:41:25 +02002236 if (sd)
2237 update_shares(sd);
2238
Nick Piggin476d1392005-06-25 14:57:29 -07002239 while (sd) {
Nick Piggin476d1392005-06-25 14:57:29 -07002240 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002241 int new_cpu, weight;
2242
2243 if (!(sd->flags & flag)) {
2244 sd = sd->child;
2245 continue;
2246 }
Nick Piggin476d1392005-06-25 14:57:29 -07002247
Nick Piggin476d1392005-06-25 14:57:29 -07002248 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002249 if (!group) {
2250 sd = sd->child;
2251 continue;
2252 }
Nick Piggin476d1392005-06-25 14:57:29 -07002253
Rusty Russell758b2cd2008-11-25 02:35:04 +10302254 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002255 if (new_cpu == -1 || new_cpu == cpu) {
2256 /* Now try balancing at a lower domain level of cpu */
2257 sd = sd->child;
2258 continue;
2259 }
Nick Piggin476d1392005-06-25 14:57:29 -07002260
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002261 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002262 cpu = new_cpu;
Rusty Russell758b2cd2008-11-25 02:35:04 +10302263 weight = cpumask_weight(sched_domain_span(sd));
Nick Piggin476d1392005-06-25 14:57:29 -07002264 sd = NULL;
Nick Piggin476d1392005-06-25 14:57:29 -07002265 for_each_domain(cpu, tmp) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302266 if (weight <= cpumask_weight(sched_domain_span(tmp)))
Nick Piggin476d1392005-06-25 14:57:29 -07002267 break;
2268 if (tmp->flags & flag)
2269 sd = tmp;
2270 }
2271 /* while loop will break here if sd == NULL */
2272 }
2273
2274 return cpu;
2275}
2276
2277#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279/***
2280 * try_to_wake_up - wake up a thread
2281 * @p: the to-be-woken-up thread
2282 * @state: the mask of task states that can be woken
2283 * @sync: do a synchronous wakeup?
2284 *
2285 * Put it on the run-queue if it's not already there. The "current"
2286 * thread is always on the run-queue (except when the actual
2287 * re-schedule is in progress), and as such you're allowed to do
2288 * the simpler "current->state = TASK_RUNNING" to mark yourself
2289 * runnable without the overhead of this.
2290 *
2291 * returns failure only if the task is already active.
2292 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002293static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294{
Ingo Molnarcc367732007-10-15 17:00:18 +02002295 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 unsigned long flags;
2297 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002298 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Ingo Molnarb85d0662008-03-16 20:03:22 +01002300 if (!sched_feat(SYNC_WAKEUPS))
2301 sync = 0;
2302
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002303#ifdef CONFIG_SMP
2304 if (sched_feat(LB_WAKEUP_UPDATE)) {
2305 struct sched_domain *sd;
2306
2307 this_cpu = raw_smp_processor_id();
2308 cpu = task_cpu(p);
2309
2310 for_each_domain(this_cpu, sd) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302311 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002312 update_shares(sd);
2313 break;
2314 }
2315 }
2316 }
2317#endif
2318
Linus Torvalds04e2f172008-02-23 18:05:03 -08002319 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 rq = task_rq_lock(p, &flags);
2321 old_state = p->state;
2322 if (!(old_state & state))
2323 goto out;
2324
Ingo Molnardd41f592007-07-09 18:51:59 +02002325 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 goto out_running;
2327
2328 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002329 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 this_cpu = smp_processor_id();
2331
2332#ifdef CONFIG_SMP
2333 if (unlikely(task_running(rq, p)))
2334 goto out_activate;
2335
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002336 cpu = p->sched_class->select_task_rq(p, sync);
2337 if (cpu != orig_cpu) {
2338 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 task_rq_unlock(rq, &flags);
2340 /* might preempt at this point */
2341 rq = task_rq_lock(p, &flags);
2342 old_state = p->state;
2343 if (!(old_state & state))
2344 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002345 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 goto out_running;
2347
2348 this_cpu = smp_processor_id();
2349 cpu = task_cpu(p);
2350 }
2351
Gregory Haskinse7693a32008-01-25 21:08:09 +01002352#ifdef CONFIG_SCHEDSTATS
2353 schedstat_inc(rq, ttwu_count);
2354 if (cpu == this_cpu)
2355 schedstat_inc(rq, ttwu_local);
2356 else {
2357 struct sched_domain *sd;
2358 for_each_domain(this_cpu, sd) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302359 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Gregory Haskinse7693a32008-01-25 21:08:09 +01002360 schedstat_inc(sd, ttwu_wake_remote);
2361 break;
2362 }
2363 }
2364 }
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002365#endif /* CONFIG_SCHEDSTATS */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367out_activate:
2368#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002369 schedstat_inc(p, se.nr_wakeups);
2370 if (sync)
2371 schedstat_inc(p, se.nr_wakeups_sync);
2372 if (orig_cpu != cpu)
2373 schedstat_inc(p, se.nr_wakeups_migrate);
2374 if (cpu == this_cpu)
2375 schedstat_inc(p, se.nr_wakeups_local);
2376 else
2377 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002378 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002379 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 success = 1;
2381
2382out_running:
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002383 trace_sched_wakeup(rq, p);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002384 check_preempt_curr(rq, p, sync);
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002387#ifdef CONFIG_SMP
2388 if (p->sched_class->task_wake_up)
2389 p->sched_class->task_wake_up(rq, p);
2390#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391out:
Gregory Haskins2087a1a2008-06-27 14:30:00 -06002392 current->se.last_wakeup = current->se.sum_exec_runtime;
2393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 task_rq_unlock(rq, &flags);
2395
2396 return success;
2397}
2398
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002399int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002401 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403EXPORT_SYMBOL(wake_up_process);
2404
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002405int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406{
2407 return try_to_wake_up(p, state, 0);
2408}
2409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410/*
2411 * Perform scheduler related setup for a newly forked process p.
2412 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002413 *
2414 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002416static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
Ingo Molnardd41f592007-07-09 18:51:59 +02002418 p->se.exec_start = 0;
2419 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002420 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002421 p->se.last_wakeup = 0;
2422 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002423
2424#ifdef CONFIG_SCHEDSTATS
2425 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002426 p->se.sum_sleep_runtime = 0;
2427 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002428 p->se.block_start = 0;
2429 p->se.sleep_max = 0;
2430 p->se.block_max = 0;
2431 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002432 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002433 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002434#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002435
Peter Zijlstrafa717062008-01-25 21:08:27 +01002436 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002437 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002438 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002439
Avi Kivitye107be32007-07-26 13:40:43 +02002440#ifdef CONFIG_PREEMPT_NOTIFIERS
2441 INIT_HLIST_HEAD(&p->preempt_notifiers);
2442#endif
2443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 /*
2445 * We mark the process as running here, but have not actually
2446 * inserted it onto the runqueue yet. This guarantees that
2447 * nobody will actually run it, and a signal or other external
2448 * event cannot wake it up and insert it on the runqueue either.
2449 */
2450 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002451}
2452
2453/*
2454 * fork()/clone()-time setup:
2455 */
2456void sched_fork(struct task_struct *p, int clone_flags)
2457{
2458 int cpu = get_cpu();
2459
2460 __sched_fork(p);
2461
2462#ifdef CONFIG_SMP
2463 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2464#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002465 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002466
2467 /*
2468 * Make sure we do not leak PI boosting priority to the child:
2469 */
2470 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002471 if (!rt_prio(p->prio))
2472 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002473
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002474#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002475 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002476 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002478#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002479 p->oncpu = 0;
2480#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002482 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002483 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05002485 plist_node_init(&p->pushable_tasks, MAX_PRIO);
2486
Nick Piggin476d1392005-06-25 14:57:29 -07002487 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
2489
2490/*
2491 * wake_up_new_task - wake up a newly created task for the first time.
2492 *
2493 * This function will do some initial scheduler statistics housekeeping
2494 * that must be done for every newly created context, then puts the task
2495 * on the runqueue and wakes it.
2496 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002497void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498{
2499 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002500 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
2502 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002504 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
2506 p->prio = effective_prio(p);
2507
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002508 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002509 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002512 * Let the scheduling class do new task startup
2513 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002515 p->sched_class->task_new(rq, p);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02002516 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 }
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002518 trace_sched_wakeup_new(rq, p);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002519 check_preempt_curr(rq, p, 0);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002520#ifdef CONFIG_SMP
2521 if (p->sched_class->task_wake_up)
2522 p->sched_class->task_wake_up(rq, p);
2523#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002524 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525}
2526
Avi Kivitye107be32007-07-26 13:40:43 +02002527#ifdef CONFIG_PREEMPT_NOTIFIERS
2528
2529/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002530 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2531 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002532 */
2533void preempt_notifier_register(struct preempt_notifier *notifier)
2534{
2535 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2536}
2537EXPORT_SYMBOL_GPL(preempt_notifier_register);
2538
2539/**
2540 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002541 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002542 *
2543 * This is safe to call from within a preemption notifier.
2544 */
2545void preempt_notifier_unregister(struct preempt_notifier *notifier)
2546{
2547 hlist_del(&notifier->link);
2548}
2549EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2550
2551static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2552{
2553 struct preempt_notifier *notifier;
2554 struct hlist_node *node;
2555
2556 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2557 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2558}
2559
2560static void
2561fire_sched_out_preempt_notifiers(struct task_struct *curr,
2562 struct task_struct *next)
2563{
2564 struct preempt_notifier *notifier;
2565 struct hlist_node *node;
2566
2567 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2568 notifier->ops->sched_out(notifier, next);
2569}
2570
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002571#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002572
2573static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2574{
2575}
2576
2577static void
2578fire_sched_out_preempt_notifiers(struct task_struct *curr,
2579 struct task_struct *next)
2580{
2581}
2582
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002583#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002586 * prepare_task_switch - prepare to switch tasks
2587 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002588 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002589 * @next: the task we are going to switch to.
2590 *
2591 * This is called with the rq lock held and interrupts off. It must
2592 * be paired with a subsequent finish_task_switch after the context
2593 * switch.
2594 *
2595 * prepare_task_switch sets up locking and calls architecture specific
2596 * hooks.
2597 */
Avi Kivitye107be32007-07-26 13:40:43 +02002598static inline void
2599prepare_task_switch(struct rq *rq, struct task_struct *prev,
2600 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002601{
Avi Kivitye107be32007-07-26 13:40:43 +02002602 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002603 prepare_lock_switch(rq, next);
2604 prepare_arch_switch(next);
2605}
2606
2607/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002609 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 * @prev: the thread we just switched away from.
2611 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002612 * finish_task_switch must be called after the context switch, paired
2613 * with a prepare_task_switch call before the context switch.
2614 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2615 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 *
2617 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002618 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 * with the lock held can cause deadlocks; see schedule() for
2620 * details.)
2621 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002622static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 __releases(rq->lock)
2624{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002626 long prev_state;
Gregory Haskins967fc042008-12-29 09:39:52 -05002627#ifdef CONFIG_SMP
2628 int post_schedule = 0;
2629
2630 if (current->sched_class->needs_post_schedule)
2631 post_schedule = current->sched_class->needs_post_schedule(rq);
2632#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634 rq->prev_mm = NULL;
2635
2636 /*
2637 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002638 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002639 * schedule one last time. The schedule call will never return, and
2640 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002641 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 * still held, otherwise prev could be scheduled on another cpu, die
2643 * there before we look at prev->state, and then the reference would
2644 * be dropped twice.
2645 * Manfred Spraul <manfred@colorfullife.com>
2646 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002647 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002648 finish_arch_switch(prev);
2649 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002650#ifdef CONFIG_SMP
Gregory Haskins967fc042008-12-29 09:39:52 -05002651 if (post_schedule)
Steven Rostedt9a897c52008-01-25 21:08:22 +01002652 current->sched_class->post_schedule(rq);
2653#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002654
Avi Kivitye107be32007-07-26 13:40:43 +02002655 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 if (mm)
2657 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002658 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002659 /*
2660 * Remove function-return probe instances associated with this
2661 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002662 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002663 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666}
2667
2668/**
2669 * schedule_tail - first thing a freshly forked thread must call.
2670 * @prev: the thread we just switched away from.
2671 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002672asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 __releases(rq->lock)
2674{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002675 struct rq *rq = this_rq();
2676
Nick Piggin4866cde2005-06-25 14:57:23 -07002677 finish_task_switch(rq, prev);
2678#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2679 /* In this case, finish_task_switch does not reenable preemption */
2680 preempt_enable();
2681#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002683 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684}
2685
2686/*
2687 * context_switch - switch to the new MM and the new
2688 * thread's register state.
2689 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002690static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002691context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002692 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
Ingo Molnardd41f592007-07-09 18:51:59 +02002694 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
Avi Kivitye107be32007-07-26 13:40:43 +02002696 prepare_task_switch(rq, prev, next);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002697 trace_sched_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002698 mm = next->mm;
2699 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002700 /*
2701 * For paravirt, this is coupled with an exit in switch_to to
2702 * combine the page table reload and the switch backend into
2703 * one hypercall.
2704 */
2705 arch_enter_lazy_cpu_mode();
2706
Ingo Molnardd41f592007-07-09 18:51:59 +02002707 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 next->active_mm = oldmm;
2709 atomic_inc(&oldmm->mm_count);
2710 enter_lazy_tlb(oldmm, next);
2711 } else
2712 switch_mm(oldmm, mm, next);
2713
Ingo Molnardd41f592007-07-09 18:51:59 +02002714 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 rq->prev_mm = oldmm;
2717 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002718 /*
2719 * Since the runqueue lock will be released by the next
2720 * task (which is an invalid locking op but in the case
2721 * of the scheduler it's an obvious special-case), so we
2722 * do an early lockdep release here:
2723 */
2724#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002725 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002726#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
2728 /* Here we just switch the register state and the stack. */
2729 switch_to(prev, next, prev);
2730
Ingo Molnardd41f592007-07-09 18:51:59 +02002731 barrier();
2732 /*
2733 * this_rq must be evaluated again because prev may have moved
2734 * CPUs since it called schedule(), thus the 'rq' on its stack
2735 * frame will be invalid.
2736 */
2737 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738}
2739
2740/*
2741 * nr_running, nr_uninterruptible and nr_context_switches:
2742 *
2743 * externally visible scheduler statistics: current number of runnable
2744 * threads, current number of uninterruptible-sleeping threads, total
2745 * number of context switches performed since bootup.
2746 */
2747unsigned long nr_running(void)
2748{
2749 unsigned long i, sum = 0;
2750
2751 for_each_online_cpu(i)
2752 sum += cpu_rq(i)->nr_running;
2753
2754 return sum;
2755}
2756
2757unsigned long nr_uninterruptible(void)
2758{
2759 unsigned long i, sum = 0;
2760
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002761 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 sum += cpu_rq(i)->nr_uninterruptible;
2763
2764 /*
2765 * Since we read the counters lockless, it might be slightly
2766 * inaccurate. Do not allow it to go below zero though:
2767 */
2768 if (unlikely((long)sum < 0))
2769 sum = 0;
2770
2771 return sum;
2772}
2773
2774unsigned long long nr_context_switches(void)
2775{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002776 int i;
2777 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002779 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 sum += cpu_rq(i)->nr_switches;
2781
2782 return sum;
2783}
2784
2785unsigned long nr_iowait(void)
2786{
2787 unsigned long i, sum = 0;
2788
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002789 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2791
2792 return sum;
2793}
2794
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002795unsigned long nr_active(void)
2796{
2797 unsigned long i, running = 0, uninterruptible = 0;
2798
2799 for_each_online_cpu(i) {
2800 running += cpu_rq(i)->nr_running;
2801 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2802 }
2803
2804 if (unlikely((long)uninterruptible < 0))
2805 uninterruptible = 0;
2806
2807 return running + uninterruptible;
2808}
2809
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002811 * Update rq->cpu_load[] statistics. This function is usually called every
2812 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002813 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002814static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002815{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002816 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002817 int i, scale;
2818
2819 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002820
2821 /* Update our load: */
2822 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2823 unsigned long old_load, new_load;
2824
2825 /* scale is effectively 1 << i now, and >> i divides by scale */
2826
2827 old_load = this_rq->cpu_load[i];
2828 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002829 /*
2830 * Round up the averaging division if load is increasing. This
2831 * prevents us from getting stuck on 9 if the load is 10, for
2832 * example.
2833 */
2834 if (new_load > old_load)
2835 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002836 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2837 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002838}
2839
Ingo Molnardd41f592007-07-09 18:51:59 +02002840#ifdef CONFIG_SMP
2841
Ingo Molnar48f24c42006-07-03 00:25:40 -07002842/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 * double_rq_lock - safely lock two runqueues
2844 *
2845 * Note this does not disable interrupts like task_rq_lock,
2846 * you need to do so manually before calling.
2847 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002848static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 __acquires(rq1->lock)
2850 __acquires(rq2->lock)
2851{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002852 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 if (rq1 == rq2) {
2854 spin_lock(&rq1->lock);
2855 __acquire(rq2->lock); /* Fake it out ;) */
2856 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002857 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 spin_lock(&rq1->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002859 spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 } else {
2861 spin_lock(&rq2->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002862 spin_lock_nested(&rq1->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 }
2864 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002865 update_rq_clock(rq1);
2866 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867}
2868
2869/*
2870 * double_rq_unlock - safely unlock two runqueues
2871 *
2872 * Note this does not restore interrupts like task_rq_unlock,
2873 * you need to do so manually after calling.
2874 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002875static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 __releases(rq1->lock)
2877 __releases(rq2->lock)
2878{
2879 spin_unlock(&rq1->lock);
2880 if (rq1 != rq2)
2881 spin_unlock(&rq2->lock);
2882 else
2883 __release(rq2->lock);
2884}
2885
2886/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 * If dest_cpu is allowed for this process, migrate the task to it.
2888 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002889 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 * the cpu_allowed mask is restored.
2891 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002892static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002894 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002896 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
2898 rq = task_rq_lock(p, &flags);
Rusty Russell96f874e2008-11-25 02:35:14 +10302899 if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed)
Max Krasnyanskye761b772008-07-15 04:43:49 -07002900 || unlikely(!cpu_active(dest_cpu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 goto out;
2902
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002903 trace_sched_migrate_task(rq, p, dest_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 /* force the process onto the specified CPU */
2905 if (migrate_task(p, dest_cpu, &req)) {
2906 /* Need to wait for migration thread (might exit: take ref). */
2907 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002908
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 get_task_struct(mt);
2910 task_rq_unlock(rq, &flags);
2911 wake_up_process(mt);
2912 put_task_struct(mt);
2913 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002914
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 return;
2916 }
2917out:
2918 task_rq_unlock(rq, &flags);
2919}
2920
2921/*
Nick Piggin476d1392005-06-25 14:57:29 -07002922 * sched_exec - execve() is a valuable balancing opportunity, because at
2923 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 */
2925void sched_exec(void)
2926{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002928 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002930 if (new_cpu != this_cpu)
2931 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932}
2933
2934/*
2935 * pull_task - move a task from a remote runqueue to the local runqueue.
2936 * Both runqueues must be locked.
2937 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002938static void pull_task(struct rq *src_rq, struct task_struct *p,
2939 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002941 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002943 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 /*
2945 * Note that idle threads have a prio of MAX_PRIO, for this test
2946 * to be always true for them.
2947 */
Peter Zijlstra15afe092008-09-20 23:38:02 +02002948 check_preempt_curr(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949}
2950
2951/*
2952 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2953 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002954static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002955int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002956 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002957 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958{
2959 /*
2960 * We do not migrate tasks that are:
2961 * 1) running (obviously), or
2962 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2963 * 3) are cache-hot on their current CPU.
2964 */
Rusty Russell96f874e2008-11-25 02:35:14 +10302965 if (!cpumask_test_cpu(this_cpu, &p->cpus_allowed)) {
Ingo Molnarcc367732007-10-15 17:00:18 +02002966 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002968 }
Nick Piggin81026792005-06-25 14:57:07 -07002969 *all_pinned = 0;
2970
Ingo Molnarcc367732007-10-15 17:00:18 +02002971 if (task_running(rq, p)) {
2972 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002973 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Ingo Molnarda84d962007-10-15 17:00:18 +02002976 /*
2977 * Aggressive migration if:
2978 * 1) task is cache cold, or
2979 * 2) too many balance attempts have failed.
2980 */
2981
Ingo Molnar6bc16652007-10-15 17:00:18 +02002982 if (!task_hot(p, rq->clock, sd) ||
2983 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002984#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002985 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002986 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002987 schedstat_inc(p, se.nr_forced_migrations);
2988 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002989#endif
2990 return 1;
2991 }
2992
Ingo Molnarcc367732007-10-15 17:00:18 +02002993 if (task_hot(p, rq->clock, sd)) {
2994 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002995 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 return 1;
2998}
2999
Peter Williamse1d14842007-10-24 18:23:51 +02003000static unsigned long
3001balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3002 unsigned long max_load_move, struct sched_domain *sd,
3003 enum cpu_idle_type idle, int *all_pinned,
3004 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003005{
Peter Zijlstra051c6762008-06-27 13:41:31 +02003006 int loops = 0, pulled = 0, pinned = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02003007 struct task_struct *p;
3008 long rem_load_move = max_load_move;
3009
Peter Williamse1d14842007-10-24 18:23:51 +02003010 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003011 goto out;
3012
3013 pinned = 1;
3014
3015 /*
3016 * Start the load-balancing iterator:
3017 */
3018 p = iterator->start(iterator->arg);
3019next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003020 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003021 goto out;
Peter Zijlstra051c6762008-06-27 13:41:31 +02003022
3023 if ((p->se.load.weight >> 1) > rem_load_move ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003024 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003025 p = iterator->next(iterator->arg);
3026 goto next;
3027 }
3028
3029 pull_task(busiest, p, this_rq, this_cpu);
3030 pulled++;
3031 rem_load_move -= p->se.load.weight;
3032
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003033#ifdef CONFIG_PREEMPT
3034 /*
3035 * NEWIDLE balancing is a source of latency, so preemptible kernels
3036 * will stop after the first task is pulled to minimize the critical
3037 * section.
3038 */
3039 if (idle == CPU_NEWLY_IDLE)
3040 goto out;
3041#endif
3042
Ingo Molnardd41f592007-07-09 18:51:59 +02003043 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003044 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003045 */
Peter Williamse1d14842007-10-24 18:23:51 +02003046 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003047 if (p->prio < *this_best_prio)
3048 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003049 p = iterator->next(iterator->arg);
3050 goto next;
3051 }
3052out:
3053 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003054 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003055 * so we can safely collect pull_task() stats here rather than
3056 * inside pull_task().
3057 */
3058 schedstat_add(sd, lb_gained[idle], pulled);
3059
3060 if (all_pinned)
3061 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003062
3063 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003064}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003065
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066/*
Peter Williams43010652007-08-09 11:16:46 +02003067 * move_tasks tries to move up to max_load_move weighted load from busiest to
3068 * this_rq, as part of a balancing operation within domain "sd".
3069 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 *
3071 * Called with both runqueues locked.
3072 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003073static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003074 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003075 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003076 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003078 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003079 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003080 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081
Ingo Molnardd41f592007-07-09 18:51:59 +02003082 do {
Peter Williams43010652007-08-09 11:16:46 +02003083 total_load_moved +=
3084 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003085 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003086 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003087 class = class->next;
Gregory Haskinsc4acb2c2008-06-27 14:29:55 -06003088
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003089#ifdef CONFIG_PREEMPT
3090 /*
3091 * NEWIDLE balancing is a source of latency, so preemptible
3092 * kernels will stop after the first task is pulled to minimize
3093 * the critical section.
3094 */
Gregory Haskinsc4acb2c2008-06-27 14:29:55 -06003095 if (idle == CPU_NEWLY_IDLE && this_rq->nr_running)
3096 break;
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003097#endif
Peter Williams43010652007-08-09 11:16:46 +02003098 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
Peter Williams43010652007-08-09 11:16:46 +02003100 return total_load_moved > 0;
3101}
3102
Peter Williamse1d14842007-10-24 18:23:51 +02003103static int
3104iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3105 struct sched_domain *sd, enum cpu_idle_type idle,
3106 struct rq_iterator *iterator)
3107{
3108 struct task_struct *p = iterator->start(iterator->arg);
3109 int pinned = 0;
3110
3111 while (p) {
3112 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3113 pull_task(busiest, p, this_rq, this_cpu);
3114 /*
3115 * Right now, this is only the second place pull_task()
3116 * is called, so we can safely collect pull_task()
3117 * stats here rather than inside pull_task().
3118 */
3119 schedstat_inc(sd, lb_gained[idle]);
3120
3121 return 1;
3122 }
3123 p = iterator->next(iterator->arg);
3124 }
3125
3126 return 0;
3127}
3128
Peter Williams43010652007-08-09 11:16:46 +02003129/*
3130 * move_one_task tries to move exactly one task from busiest to this_rq, as
3131 * part of active balancing operations within "domain".
3132 * Returns 1 if successful and 0 otherwise.
3133 *
3134 * Called with both runqueues locked.
3135 */
3136static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3137 struct sched_domain *sd, enum cpu_idle_type idle)
3138{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003139 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003140
3141 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003142 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003143 return 1;
3144
3145 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146}
3147
3148/*
3149 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003150 * domain. It calculates and returns the amount of weighted load which
3151 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 */
3153static struct sched_group *
3154find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003155 unsigned long *imbalance, enum cpu_idle_type idle,
Rusty Russell96f874e2008-11-25 02:35:14 +10303156 int *sd_idle, const struct cpumask *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157{
3158 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3159 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003160 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003161 unsigned long busiest_load_per_task, busiest_nr_running;
3162 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003163 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003164#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3165 int power_savings_balance = 1;
3166 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3167 unsigned long min_nr_running = ULONG_MAX;
3168 struct sched_group *group_min = NULL, *group_leader = NULL;
3169#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170
3171 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003172 busiest_load_per_task = busiest_nr_running = 0;
3173 this_load_per_task = this_nr_running = 0;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003174
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003175 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003176 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003177 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003178 load_idx = sd->newidle_idx;
3179 else
3180 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
3182 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003183 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 int local_group;
3185 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003186 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003187 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003188 unsigned long sum_nr_running, sum_weighted_load;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003189 unsigned long sum_avg_load_per_task;
3190 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Rusty Russell758b2cd2008-11-25 02:35:04 +10303192 local_group = cpumask_test_cpu(this_cpu,
3193 sched_group_cpus(group));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003195 if (local_group)
Rusty Russell758b2cd2008-11-25 02:35:04 +10303196 balance_cpu = cpumask_first(sched_group_cpus(group));
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003197
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003199 sum_weighted_load = sum_nr_running = avg_load = 0;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003200 sum_avg_load_per_task = avg_load_per_task = 0;
3201
Ken Chen908a7c12007-10-17 16:55:11 +02003202 max_cpu_load = 0;
3203 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
Rusty Russell758b2cd2008-11-25 02:35:04 +10303205 for_each_cpu_and(i, sched_group_cpus(group), cpus) {
3206 struct rq *rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003207
Suresh Siddha9439aab2007-07-19 21:28:35 +02003208 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003209 *sd_idle = 0;
3210
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003212 if (local_group) {
3213 if (idle_cpu(i) && !first_idle_cpu) {
3214 first_idle_cpu = 1;
3215 balance_cpu = i;
3216 }
3217
Nick Piggina2000572006-02-10 01:51:02 -08003218 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003219 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003220 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003221 if (load > max_cpu_load)
3222 max_cpu_load = load;
3223 if (min_cpu_load > load)
3224 min_cpu_load = load;
3225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
3227 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003228 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003229 sum_weighted_load += weighted_cpuload(i);
Peter Zijlstra408ed062008-06-27 13:41:28 +02003230
3231 sum_avg_load_per_task += cpu_avg_load_per_task(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 }
3233
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003234 /*
3235 * First idle cpu or the first cpu(busiest) in this sched group
3236 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003237 * domains. In the newly idle case, we will allow all the cpu's
3238 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003239 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003240 if (idle != CPU_NEWLY_IDLE && local_group &&
3241 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003242 *balance = 0;
3243 goto ret;
3244 }
3245
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003247 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
3249 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003250 avg_load = sg_div_cpu_power(group,
3251 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
Peter Zijlstra408ed062008-06-27 13:41:28 +02003253
3254 /*
3255 * Consider the group unbalanced when the imbalance is larger
3256 * than the average weight of two tasks.
3257 *
3258 * APZ: with cgroup the avg task weight can vary wildly and
3259 * might not be a suitable number - should we keep a
3260 * normalized nr_running number somewhere that negates
3261 * the hierarchy?
3262 */
3263 avg_load_per_task = sg_div_cpu_power(group,
3264 sum_avg_load_per_task * SCHED_LOAD_SCALE);
3265
3266 if ((max_cpu_load - min_cpu_load) > 2*avg_load_per_task)
Ken Chen908a7c12007-10-17 16:55:11 +02003267 __group_imb = 1;
3268
Eric Dumazet5517d862007-05-08 00:32:57 -07003269 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003270
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 if (local_group) {
3272 this_load = avg_load;
3273 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003274 this_nr_running = sum_nr_running;
3275 this_load_per_task = sum_weighted_load;
3276 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003277 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 max_load = avg_load;
3279 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003280 busiest_nr_running = sum_nr_running;
3281 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003282 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003284
3285#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3286 /*
3287 * Busy processors will not participate in power savings
3288 * balance.
3289 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003290 if (idle == CPU_NOT_IDLE ||
3291 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3292 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003293
3294 /*
3295 * If the local group is idle or completely loaded
3296 * no need to do power savings balance at this domain
3297 */
3298 if (local_group && (this_nr_running >= group_capacity ||
3299 !this_nr_running))
3300 power_savings_balance = 0;
3301
Ingo Molnardd41f592007-07-09 18:51:59 +02003302 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003303 * If a group is already running at full capacity or idle,
3304 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003305 */
3306 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003307 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003308 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003309
Ingo Molnardd41f592007-07-09 18:51:59 +02003310 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003311 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003312 * This is the group from where we need to pick up the load
3313 * for saving power
3314 */
3315 if ((sum_nr_running < min_nr_running) ||
3316 (sum_nr_running == min_nr_running &&
Vaidyanathan Srinivasand5679bd2008-12-18 23:26:16 +05303317 cpumask_first(sched_group_cpus(group)) >
Rusty Russell758b2cd2008-11-25 02:35:04 +10303318 cpumask_first(sched_group_cpus(group_min)))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003319 group_min = group;
3320 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003321 min_load_per_task = sum_weighted_load /
3322 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003323 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003324
Ingo Molnardd41f592007-07-09 18:51:59 +02003325 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003326 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003327 * capacity but still has some space to pick up some load
3328 * from other group and save more power
3329 */
3330 if (sum_nr_running <= group_capacity - 1) {
3331 if (sum_nr_running > leader_nr_running ||
3332 (sum_nr_running == leader_nr_running &&
Vaidyanathan Srinivasand5679bd2008-12-18 23:26:16 +05303333 cpumask_first(sched_group_cpus(group)) <
Rusty Russell758b2cd2008-11-25 02:35:04 +10303334 cpumask_first(sched_group_cpus(group_leader)))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003335 group_leader = group;
3336 leader_nr_running = sum_nr_running;
3337 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003338 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003339group_next:
3340#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 group = group->next;
3342 } while (group != sd->groups);
3343
Peter Williams2dd73a42006-06-27 02:54:34 -07003344 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 goto out_balanced;
3346
3347 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3348
3349 if (this_load >= avg_load ||
3350 100*max_load <= sd->imbalance_pct*this_load)
3351 goto out_balanced;
3352
Peter Williams2dd73a42006-06-27 02:54:34 -07003353 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003354 if (group_imb)
3355 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3356
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 /*
3358 * We're trying to get all the cpus to the average_load, so we don't
3359 * want to push ourselves above the average load, nor do we wish to
3360 * reduce the max loaded cpu below the average load, as either of these
3361 * actions would just result in more rebalancing later, and ping-pong
3362 * tasks around. Thus we look for the minimum possible imbalance.
3363 * Negative imbalances (*we* are more loaded than anyone else) will
3364 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003365 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 * appear as very large values with unsigned longs.
3367 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003368 if (max_load <= busiest_load_per_task)
3369 goto out_balanced;
3370
3371 /*
3372 * In the presence of smp nice balancing, certain scenarios can have
3373 * max load less than avg load(as we skip the groups at or below
3374 * its cpu_power, while calculating max_load..)
3375 */
3376 if (max_load < avg_load) {
3377 *imbalance = 0;
3378 goto small_imbalance;
3379 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003380
3381 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003382 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003383
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003385 *imbalance = min(max_pull * busiest->__cpu_power,
3386 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 / SCHED_LOAD_SCALE;
3388
Peter Williams2dd73a42006-06-27 02:54:34 -07003389 /*
3390 * if *imbalance is less than the average load per runnable task
3391 * there is no gaurantee that any tasks will be moved so we'll have
3392 * a think about bumping its value to force at least one task to be
3393 * moved
3394 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003395 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003396 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003397 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
Peter Williams2dd73a42006-06-27 02:54:34 -07003399small_imbalance:
3400 pwr_move = pwr_now = 0;
3401 imbn = 2;
3402 if (this_nr_running) {
3403 this_load_per_task /= this_nr_running;
3404 if (busiest_load_per_task > this_load_per_task)
3405 imbn = 1;
3406 } else
Peter Zijlstra408ed062008-06-27 13:41:28 +02003407 this_load_per_task = cpu_avg_load_per_task(this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07003408
Peter Zijlstra01c8c572008-10-24 11:06:12 +02003409 if (max_load - this_load + busiest_load_per_task >=
Ingo Molnardd41f592007-07-09 18:51:59 +02003410 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003411 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 return busiest;
3413 }
3414
3415 /*
3416 * OK, we don't have enough imbalance to justify moving tasks,
3417 * however we may be able to increase total CPU power used by
3418 * moving them.
3419 */
3420
Eric Dumazet5517d862007-05-08 00:32:57 -07003421 pwr_now += busiest->__cpu_power *
3422 min(busiest_load_per_task, max_load);
3423 pwr_now += this->__cpu_power *
3424 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 pwr_now /= SCHED_LOAD_SCALE;
3426
3427 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003428 tmp = sg_div_cpu_power(busiest,
3429 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003431 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003432 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
3434 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003435 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003436 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003437 tmp = sg_div_cpu_power(this,
3438 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003440 tmp = sg_div_cpu_power(this,
3441 busiest_load_per_task * SCHED_LOAD_SCALE);
3442 pwr_move += this->__cpu_power *
3443 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 pwr_move /= SCHED_LOAD_SCALE;
3445
3446 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003447 if (pwr_move > pwr_now)
3448 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 }
3450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 return busiest;
3452
3453out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003454#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003455 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003456 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003458 if (this == group_leader && group_leader != group_min) {
3459 *imbalance = min_load_per_task;
Vaidyanathan Srinivasan7a09b1a2008-12-18 23:26:22 +05303460 if (sched_mc_power_savings >= POWERSAVINGS_BALANCE_WAKEUP) {
3461 cpu_rq(this_cpu)->rd->sched_mc_preferred_wakeup_cpu =
Ingo Molnar9924da42008-12-19 00:53:40 +01003462 cpumask_first(sched_group_cpus(group_leader));
Vaidyanathan Srinivasan7a09b1a2008-12-18 23:26:22 +05303463 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003464 return group_min;
3465 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003466#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003467ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 *imbalance = 0;
3469 return NULL;
3470}
3471
3472/*
3473 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3474 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003475static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003476find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Rusty Russell96f874e2008-11-25 02:35:14 +10303477 unsigned long imbalance, const struct cpumask *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003479 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003480 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 int i;
3482
Rusty Russell758b2cd2008-11-25 02:35:04 +10303483 for_each_cpu(i, sched_group_cpus(group)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003484 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003485
Rusty Russell96f874e2008-11-25 02:35:14 +10303486 if (!cpumask_test_cpu(i, cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003487 continue;
3488
Ingo Molnar48f24c42006-07-03 00:25:40 -07003489 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003490 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
Ingo Molnardd41f592007-07-09 18:51:59 +02003492 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003493 continue;
3494
Ingo Molnardd41f592007-07-09 18:51:59 +02003495 if (wl > max_load) {
3496 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003497 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 }
3499 }
3500
3501 return busiest;
3502}
3503
3504/*
Nick Piggin77391d72005-06-25 14:57:30 -07003505 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3506 * so long as it is large enough.
3507 */
3508#define MAX_PINNED_INTERVAL 512
3509
3510/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3512 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003514static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003515 struct sched_domain *sd, enum cpu_idle_type idle,
Rusty Russell96f874e2008-11-25 02:35:14 +10303516 int *balance, struct cpumask *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517{
Peter Williams43010652007-08-09 11:16:46 +02003518 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003521 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003522 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07003523
Rusty Russell96f874e2008-11-25 02:35:14 +10303524 cpumask_setall(cpus);
Mike Travis7c16ec52008-04-04 18:11:11 -07003525
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003526 /*
3527 * When power savings policy is enabled for the parent domain, idle
3528 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003529 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003530 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003531 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003532 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003533 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003534 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535
Ingo Molnar2d723762007-10-15 17:00:12 +02003536 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003538redo:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02003539 update_shares(sd);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003540 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003541 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003542
Chen, Kenneth W06066712006-12-10 02:20:35 -08003543 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003544 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003545
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 if (!group) {
3547 schedstat_inc(sd, lb_nobusyg[idle]);
3548 goto out_balanced;
3549 }
3550
Mike Travis7c16ec52008-04-04 18:11:11 -07003551 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 if (!busiest) {
3553 schedstat_inc(sd, lb_nobusyq[idle]);
3554 goto out_balanced;
3555 }
3556
Nick Piggindb935db2005-06-25 14:57:11 -07003557 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558
3559 schedstat_add(sd, lb_imbalance[idle], imbalance);
3560
Peter Williams43010652007-08-09 11:16:46 +02003561 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 if (busiest->nr_running > 1) {
3563 /*
3564 * Attempt to move tasks. If find_busiest_group has found
3565 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003566 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 * correctly treated as an imbalance.
3568 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003569 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003570 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003571 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003572 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003573 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003574 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003575
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003576 /*
3577 * some other cpu did the load balance for us.
3578 */
Peter Williams43010652007-08-09 11:16:46 +02003579 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003580 resched_cpu(this_cpu);
3581
Nick Piggin81026792005-06-25 14:57:07 -07003582 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003583 if (unlikely(all_pinned)) {
Rusty Russell96f874e2008-11-25 02:35:14 +10303584 cpumask_clear_cpu(cpu_of(busiest), cpus);
3585 if (!cpumask_empty(cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003586 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003587 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 }
Nick Piggin81026792005-06-25 14:57:07 -07003590
Peter Williams43010652007-08-09 11:16:46 +02003591 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 schedstat_inc(sd, lb_failed[idle]);
3593 sd->nr_balance_failed++;
3594
3595 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003597 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003598
3599 /* don't kick the migration_thread, if the curr
3600 * task on busiest cpu can't be moved to this_cpu
3601 */
Rusty Russell96f874e2008-11-25 02:35:14 +10303602 if (!cpumask_test_cpu(this_cpu,
3603 &busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003604 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003605 all_pinned = 1;
3606 goto out_one_pinned;
3607 }
3608
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 if (!busiest->active_balance) {
3610 busiest->active_balance = 1;
3611 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003612 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003614 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003615 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 wake_up_process(busiest->migration_thread);
3617
3618 /*
3619 * We've kicked active balancing, reset the failure
3620 * counter.
3621 */
Nick Piggin39507452005-06-25 14:57:09 -07003622 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 }
Nick Piggin81026792005-06-25 14:57:07 -07003624 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 sd->nr_balance_failed = 0;
3626
Nick Piggin81026792005-06-25 14:57:07 -07003627 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 /* We were unbalanced, so reset the balancing interval */
3629 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003630 } else {
3631 /*
3632 * If we've begun active balancing, start to back off. This
3633 * case may not be covered by the all_pinned logic if there
3634 * is only 1 task on the busy runqueue (because we don't call
3635 * move_tasks).
3636 */
3637 if (sd->balance_interval < sd->max_interval)
3638 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 }
3640
Peter Williams43010652007-08-09 11:16:46 +02003641 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003642 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003643 ld_moved = -1;
3644
3645 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
3647out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 schedstat_inc(sd, lb_balanced[idle]);
3649
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003650 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003651
3652out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003654 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3655 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 sd->balance_interval *= 2;
3657
Ingo Molnar48f24c42006-07-03 00:25:40 -07003658 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003659 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003660 ld_moved = -1;
3661 else
3662 ld_moved = 0;
3663out:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02003664 if (ld_moved)
3665 update_shares(sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003666 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667}
3668
3669/*
3670 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3671 * tasks if there is an imbalance.
3672 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003673 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 * this_rq is locked.
3675 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003676static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003677load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
Rusty Russell96f874e2008-11-25 02:35:14 +10303678 struct cpumask *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679{
3680 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003681 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003683 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003684 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003685 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003686
Rusty Russell96f874e2008-11-25 02:35:14 +10303687 cpumask_setall(cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003688
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003689 /*
3690 * When power savings policy is enabled for the parent domain, idle
3691 * sibling can pick up load irrespective of busy siblings. In this case,
3692 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003693 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003694 */
3695 if (sd->flags & SD_SHARE_CPUPOWER &&
3696 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003697 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
Ingo Molnar2d723762007-10-15 17:00:12 +02003699 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003700redo:
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02003701 update_shares_locked(this_rq, sd);
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003702 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003703 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003705 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003706 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 }
3708
Mike Travis7c16ec52008-04-04 18:11:11 -07003709 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003710 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003711 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003712 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 }
3714
Nick Piggindb935db2005-06-25 14:57:11 -07003715 BUG_ON(busiest == this_rq);
3716
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003717 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003718
Peter Williams43010652007-08-09 11:16:46 +02003719 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003720 if (busiest->nr_running > 1) {
3721 /* Attempt to move tasks */
3722 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003723 /* this_rq->clock is already updated */
3724 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003725 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003726 imbalance, sd, CPU_NEWLY_IDLE,
3727 &all_pinned);
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02003728 double_unlock_balance(this_rq, busiest);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003729
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003730 if (unlikely(all_pinned)) {
Rusty Russell96f874e2008-11-25 02:35:14 +10303731 cpumask_clear_cpu(cpu_of(busiest), cpus);
3732 if (!cpumask_empty(cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003733 goto redo;
3734 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003735 }
3736
Peter Williams43010652007-08-09 11:16:46 +02003737 if (!ld_moved) {
Vaidyanathan Srinivasan36dffab2008-12-20 10:06:38 +05303738 int active_balance = 0;
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05303739
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003740 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003741 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3742 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003743 return -1;
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05303744
3745 if (sched_mc_power_savings < POWERSAVINGS_BALANCE_WAKEUP)
3746 return -1;
3747
3748 if (sd->nr_balance_failed++ < 2)
3749 return -1;
3750
3751 /*
3752 * The only task running in a non-idle cpu can be moved to this
3753 * cpu in an attempt to completely freeup the other CPU
3754 * package. The same method used to move task in load_balance()
3755 * have been extended for load_balance_newidle() to speedup
3756 * consolidation at sched_mc=POWERSAVINGS_BALANCE_WAKEUP (2)
3757 *
3758 * The package power saving logic comes from
3759 * find_busiest_group(). If there are no imbalance, then
3760 * f_b_g() will return NULL. However when sched_mc={1,2} then
3761 * f_b_g() will select a group from which a running task may be
3762 * pulled to this cpu in order to make the other package idle.
3763 * If there is no opportunity to make a package idle and if
3764 * there are no imbalance, then f_b_g() will return NULL and no
3765 * action will be taken in load_balance_newidle().
3766 *
3767 * Under normal task pull operation due to imbalance, there
3768 * will be more than one task in the source run queue and
3769 * move_tasks() will succeed. ld_moved will be true and this
3770 * active balance code will not be triggered.
3771 */
3772
3773 /* Lock busiest in correct order while this_rq is held */
3774 double_lock_balance(this_rq, busiest);
3775
3776 /*
3777 * don't kick the migration_thread, if the curr
3778 * task on busiest cpu can't be moved to this_cpu
3779 */
3780 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
3781 double_unlock_balance(this_rq, busiest);
3782 all_pinned = 1;
3783 return ld_moved;
3784 }
3785
3786 if (!busiest->active_balance) {
3787 busiest->active_balance = 1;
3788 busiest->push_cpu = this_cpu;
3789 active_balance = 1;
3790 }
3791
3792 double_unlock_balance(this_rq, busiest);
3793 if (active_balance)
3794 wake_up_process(busiest->migration_thread);
3795
Nick Piggin5969fe02005-09-10 00:26:19 -07003796 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003797 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02003799 update_shares_locked(this_rq, sd);
Peter Williams43010652007-08-09 11:16:46 +02003800 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003801
3802out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003803 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003804 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003805 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003806 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003807 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003808
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003809 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810}
3811
3812/*
3813 * idle_balance is called by schedule() if this_cpu is about to become
3814 * idle. Attempts to pull tasks from other CPUs.
3815 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003816static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817{
3818 struct sched_domain *sd;
Vaidyanathan Srinivasanefbe0272008-12-08 20:52:49 +05303819 int pulled_task = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02003820 unsigned long next_balance = jiffies + HZ;
Rusty Russell4d2732c2008-11-25 02:35:10 +10303821 cpumask_var_t tmpmask;
3822
3823 if (!alloc_cpumask_var(&tmpmask, GFP_ATOMIC))
3824 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
3826 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003827 unsigned long interval;
3828
3829 if (!(sd->flags & SD_LOAD_BALANCE))
3830 continue;
3831
3832 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003833 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003834 pulled_task = load_balance_newidle(this_cpu, this_rq,
Rusty Russell4d2732c2008-11-25 02:35:10 +10303835 sd, tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003836
3837 interval = msecs_to_jiffies(sd->balance_interval);
3838 if (time_after(next_balance, sd->last_balance + interval))
3839 next_balance = sd->last_balance + interval;
3840 if (pulled_task)
3841 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003843 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003844 /*
3845 * We are going idle. next_balance may be set based on
3846 * a busy processor. So reset next_balance.
3847 */
3848 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003849 }
Rusty Russell4d2732c2008-11-25 02:35:10 +10303850 free_cpumask_var(tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851}
3852
3853/*
3854 * active_load_balance is run by migration threads. It pushes running tasks
3855 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3856 * running on each physical CPU where possible, and avoids physical /
3857 * logical imbalances.
3858 *
3859 * Called with busiest_rq locked.
3860 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003861static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862{
Nick Piggin39507452005-06-25 14:57:09 -07003863 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003864 struct sched_domain *sd;
3865 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003866
Ingo Molnar48f24c42006-07-03 00:25:40 -07003867 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003868 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003869 return;
3870
3871 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
3873 /*
Nick Piggin39507452005-06-25 14:57:09 -07003874 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003875 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003876 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 */
Nick Piggin39507452005-06-25 14:57:09 -07003878 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
Nick Piggin39507452005-06-25 14:57:09 -07003880 /* move a task from busiest_rq to target_rq */
3881 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003882 update_rq_clock(busiest_rq);
3883 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
Nick Piggin39507452005-06-25 14:57:09 -07003885 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003886 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003887 if ((sd->flags & SD_LOAD_BALANCE) &&
Rusty Russell758b2cd2008-11-25 02:35:04 +10303888 cpumask_test_cpu(busiest_cpu, sched_domain_span(sd)))
Nick Piggin39507452005-06-25 14:57:09 -07003889 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
Ingo Molnar48f24c42006-07-03 00:25:40 -07003892 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003893 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894
Peter Williams43010652007-08-09 11:16:46 +02003895 if (move_one_task(target_rq, target_cpu, busiest_rq,
3896 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003897 schedstat_inc(sd, alb_pushed);
3898 else
3899 schedstat_inc(sd, alb_failed);
3900 }
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02003901 double_unlock_balance(busiest_rq, target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902}
3903
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003904#ifdef CONFIG_NO_HZ
3905static struct {
3906 atomic_t load_balancer;
Rusty Russell7d1e6a92008-11-25 02:35:09 +10303907 cpumask_var_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003908} nohz ____cacheline_aligned = {
3909 .load_balancer = ATOMIC_INIT(-1),
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003910};
3911
Christoph Lameter7835b982006-12-10 02:20:22 -08003912/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003913 * This routine will try to nominate the ilb (idle load balancing)
3914 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3915 * load balancing on behalf of all those cpus. If all the cpus in the system
3916 * go into this tickless mode, then there will be no ilb owner (as there is
3917 * no need for one) and all the cpus will sleep till the next wakeup event
3918 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003919 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003920 * For the ilb owner, tick is not stopped. And this tick will be used
3921 * for idle load balancing. ilb owner will still be part of
3922 * nohz.cpu_mask..
3923 *
3924 * While stopping the tick, this cpu will become the ilb owner if there
3925 * is no other owner. And will be the owner till that cpu becomes busy
3926 * or if all cpus in the system stop their ticks at which point
3927 * there is no need for ilb owner.
3928 *
3929 * When the ilb owner becomes busy, it nominates another owner, during the
3930 * next busy scheduler_tick()
3931 */
3932int select_nohz_load_balancer(int stop_tick)
3933{
3934 int cpu = smp_processor_id();
3935
3936 if (stop_tick) {
Rusty Russell7d1e6a92008-11-25 02:35:09 +10303937 cpumask_set_cpu(cpu, nohz.cpu_mask);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003938 cpu_rq(cpu)->in_nohz_recently = 1;
3939
3940 /*
3941 * If we are going offline and still the leader, give up!
3942 */
Max Krasnyanskye761b772008-07-15 04:43:49 -07003943 if (!cpu_active(cpu) &&
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003944 atomic_read(&nohz.load_balancer) == cpu) {
3945 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3946 BUG();
3947 return 0;
3948 }
3949
3950 /* time for ilb owner also to sleep */
Rusty Russell7d1e6a92008-11-25 02:35:09 +10303951 if (cpumask_weight(nohz.cpu_mask) == num_online_cpus()) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003952 if (atomic_read(&nohz.load_balancer) == cpu)
3953 atomic_set(&nohz.load_balancer, -1);
3954 return 0;
3955 }
3956
3957 if (atomic_read(&nohz.load_balancer) == -1) {
3958 /* make me the ilb owner */
3959 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3960 return 1;
3961 } else if (atomic_read(&nohz.load_balancer) == cpu)
3962 return 1;
3963 } else {
Rusty Russell7d1e6a92008-11-25 02:35:09 +10303964 if (!cpumask_test_cpu(cpu, nohz.cpu_mask))
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003965 return 0;
3966
Rusty Russell7d1e6a92008-11-25 02:35:09 +10303967 cpumask_clear_cpu(cpu, nohz.cpu_mask);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003968
3969 if (atomic_read(&nohz.load_balancer) == cpu)
3970 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3971 BUG();
3972 }
3973 return 0;
3974}
3975#endif
3976
3977static DEFINE_SPINLOCK(balancing);
3978
3979/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003980 * It checks each scheduling domain to see if it is due to be balanced,
3981 * and initiates a balancing operation if so.
3982 *
3983 * Balancing parameters are set up in arch_init_sched_domains.
3984 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003985static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003986{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003987 int balance = 1;
3988 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003989 unsigned long interval;
3990 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003991 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003992 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003993 int update_next_balance = 0;
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003994 int need_serialize;
Rusty Russella0e90242008-11-25 02:35:11 +10303995 cpumask_var_t tmp;
3996
3997 /* Fails alloc? Rebalancing probably not a priority right now. */
3998 if (!alloc_cpumask_var(&tmp, GFP_ATOMIC))
3999 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004001 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 if (!(sd->flags & SD_LOAD_BALANCE))
4003 continue;
4004
4005 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004006 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 interval *= sd->busy_factor;
4008
4009 /* scale ms to jiffies */
4010 interval = msecs_to_jiffies(interval);
4011 if (unlikely(!interval))
4012 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02004013 if (interval > HZ*NR_CPUS/10)
4014 interval = HZ*NR_CPUS/10;
4015
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004016 need_serialize = sd->flags & SD_SERIALIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004018 if (need_serialize) {
Christoph Lameter08c183f2006-12-10 02:20:29 -08004019 if (!spin_trylock(&balancing))
4020 goto out;
4021 }
4022
Christoph Lameterc9819f42006-12-10 02:20:25 -08004023 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Rusty Russella0e90242008-11-25 02:35:11 +10304024 if (load_balance(cpu, rq, sd, idle, &balance, tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004025 /*
4026 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07004027 * longer idle, or one of our SMT siblings is
4028 * not idle.
4029 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004030 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004032 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 }
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004034 if (need_serialize)
Christoph Lameter08c183f2006-12-10 02:20:29 -08004035 spin_unlock(&balancing);
4036out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02004037 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08004038 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004039 update_next_balance = 1;
4040 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004041
4042 /*
4043 * Stop the load balance at this level. There is another
4044 * CPU in our sched group which is doing load balancing more
4045 * actively.
4046 */
4047 if (!balance)
4048 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004050
4051 /*
4052 * next_balance will be updated only when there is a need.
4053 * When the cpu is attached to null domain for ex, it will not be
4054 * updated.
4055 */
4056 if (likely(update_next_balance))
4057 rq->next_balance = next_balance;
Rusty Russella0e90242008-11-25 02:35:11 +10304058
4059 free_cpumask_var(tmp);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004060}
4061
4062/*
4063 * run_rebalance_domains is triggered when needed from the scheduler tick.
4064 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4065 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4066 */
4067static void run_rebalance_domains(struct softirq_action *h)
4068{
Ingo Molnardd41f592007-07-09 18:51:59 +02004069 int this_cpu = smp_processor_id();
4070 struct rq *this_rq = cpu_rq(this_cpu);
4071 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4072 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004073
Ingo Molnardd41f592007-07-09 18:51:59 +02004074 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004075
4076#ifdef CONFIG_NO_HZ
4077 /*
4078 * If this cpu is the owner for idle load balancing, then do the
4079 * balancing on behalf of the other idle cpus whose ticks are
4080 * stopped.
4081 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004082 if (this_rq->idle_at_tick &&
4083 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004084 struct rq *rq;
4085 int balance_cpu;
4086
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304087 for_each_cpu(balance_cpu, nohz.cpu_mask) {
4088 if (balance_cpu == this_cpu)
4089 continue;
4090
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004091 /*
4092 * If this cpu gets work to do, stop the load balancing
4093 * work being done for other cpus. Next load
4094 * balancing owner will pick it up.
4095 */
4096 if (need_resched())
4097 break;
4098
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004099 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004100
4101 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004102 if (time_after(this_rq->next_balance, rq->next_balance))
4103 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004104 }
4105 }
4106#endif
4107}
4108
4109/*
4110 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4111 *
4112 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4113 * idle load balancing owner or decide to stop the periodic load balancing,
4114 * if the whole system is idle.
4115 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004116static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004117{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004118#ifdef CONFIG_NO_HZ
4119 /*
4120 * If we were in the nohz mode recently and busy at the current
4121 * scheduler tick, then check if we need to nominate new idle
4122 * load balancer.
4123 */
4124 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4125 rq->in_nohz_recently = 0;
4126
4127 if (atomic_read(&nohz.load_balancer) == cpu) {
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304128 cpumask_clear_cpu(cpu, nohz.cpu_mask);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004129 atomic_set(&nohz.load_balancer, -1);
4130 }
4131
4132 if (atomic_read(&nohz.load_balancer) == -1) {
4133 /*
4134 * simple selection for now: Nominate the
4135 * first cpu in the nohz list to be the next
4136 * ilb owner.
4137 *
4138 * TBD: Traverse the sched domains and nominate
4139 * the nearest cpu in the nohz.cpu_mask.
4140 */
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304141 int ilb = cpumask_first(nohz.cpu_mask);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004142
Mike Travis434d53b2008-04-04 18:11:04 -07004143 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004144 resched_cpu(ilb);
4145 }
4146 }
4147
4148 /*
4149 * If this cpu is idle and doing idle load balancing for all the
4150 * cpus with ticks stopped, is it time for that to stop?
4151 */
4152 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304153 cpumask_weight(nohz.cpu_mask) == num_online_cpus()) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004154 resched_cpu(cpu);
4155 return;
4156 }
4157
4158 /*
4159 * If this cpu is idle and the idle load balancing is done by
4160 * someone else, then no need raise the SCHED_SOFTIRQ
4161 */
4162 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304163 cpumask_test_cpu(cpu, nohz.cpu_mask))
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004164 return;
4165#endif
4166 if (time_after_eq(jiffies, rq->next_balance))
4167 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168}
Ingo Molnardd41f592007-07-09 18:51:59 +02004169
4170#else /* CONFIG_SMP */
4171
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172/*
4173 * on UP we do not need to balance between CPUs:
4174 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004175static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176{
4177}
Ingo Molnardd41f592007-07-09 18:51:59 +02004178
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179#endif
4180
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181DEFINE_PER_CPU(struct kernel_stat, kstat);
4182
4183EXPORT_PER_CPU_SYMBOL(kstat);
4184
4185/*
Frank Mayharf06febc2008-09-12 09:54:39 -07004186 * Return any ns on the sched_clock that have not yet been banked in
4187 * @p in case that task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 */
Frank Mayharbb34d922008-09-12 09:54:39 -07004189unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004192 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07004193 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004194
Ingo Molnar41b86e92007-07-09 18:51:58 +02004195 rq = task_rq_lock(p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02004196
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004197 if (task_current(rq, p)) {
Frank Mayharf06febc2008-09-12 09:54:39 -07004198 u64 delta_exec;
4199
Ingo Molnara8e504d2007-08-09 11:16:47 +02004200 update_rq_clock(rq);
4201 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004202 if ((s64)delta_exec > 0)
Frank Mayharbb34d922008-09-12 09:54:39 -07004203 ns = delta_exec;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004204 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07004205
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 task_rq_unlock(rq, &flags);
4207
4208 return ns;
4209}
4210
4211/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 * Account user cpu time to a process.
4213 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 * @cputime: the cpu time spent in user space since the last update
4215 */
4216void account_user_time(struct task_struct *p, cputime_t cputime)
4217{
4218 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4219 cputime64_t tmp;
4220
4221 p->utime = cputime_add(p->utime, cputime);
Frank Mayharf06febc2008-09-12 09:54:39 -07004222 account_group_user_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
4224 /* Add user time to cpustat. */
4225 tmp = cputime_to_cputime64(cputime);
4226 if (TASK_NICE(p) > 0)
4227 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4228 else
4229 cpustat->user = cputime64_add(cpustat->user, tmp);
Jonathan Lim49b5cf32008-07-25 01:48:40 -07004230 /* Account for user time used */
4231 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232}
4233
4234/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004235 * Account guest cpu time to a process.
4236 * @p: the process that the cpu time gets accounted to
4237 * @cputime: the cpu time spent in virtual machine since the last update
4238 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004239static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004240{
4241 cputime64_t tmp;
4242 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4243
4244 tmp = cputime_to_cputime64(cputime);
4245
4246 p->utime = cputime_add(p->utime, cputime);
Frank Mayharf06febc2008-09-12 09:54:39 -07004247 account_group_user_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02004248 p->gtime = cputime_add(p->gtime, cputime);
4249
4250 cpustat->user = cputime64_add(cpustat->user, tmp);
4251 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4252}
4253
4254/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004255 * Account scaled user cpu time to a process.
4256 * @p: the process that the cpu time gets accounted to
4257 * @cputime: the cpu time spent in user space since the last update
4258 */
4259void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4260{
4261 p->utimescaled = cputime_add(p->utimescaled, cputime);
4262}
4263
4264/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 * Account system cpu time to a process.
4266 * @p: the process that the cpu time gets accounted to
4267 * @hardirq_offset: the offset to subtract from hardirq_count()
4268 * @cputime: the cpu time spent in kernel space since the last update
4269 */
4270void account_system_time(struct task_struct *p, int hardirq_offset,
4271 cputime_t cputime)
4272{
4273 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004274 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 cputime64_t tmp;
4276
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004277 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
4278 account_guest_time(p, cputime);
4279 return;
4280 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004281
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 p->stime = cputime_add(p->stime, cputime);
Frank Mayharf06febc2008-09-12 09:54:39 -07004283 account_group_system_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
4285 /* Add system time to cpustat. */
4286 tmp = cputime_to_cputime64(cputime);
4287 if (hardirq_count() - hardirq_offset)
4288 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4289 else if (softirq_count())
4290 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004291 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004293 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4295 else
4296 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4297 /* Account for system time used */
4298 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299}
4300
4301/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004302 * Account scaled system cpu time to a process.
4303 * @p: the process that the cpu time gets accounted to
4304 * @hardirq_offset: the offset to subtract from hardirq_count()
4305 * @cputime: the cpu time spent in kernel space since the last update
4306 */
4307void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4308{
4309 p->stimescaled = cputime_add(p->stimescaled, cputime);
4310}
4311
4312/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 * Account for involuntary wait time.
4314 * @p: the process from which the cpu time has been stolen
4315 * @steal: the cpu time spent in involuntary wait
4316 */
4317void account_steal_time(struct task_struct *p, cputime_t steal)
4318{
4319 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4320 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004321 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322
4323 if (p == rq->idle) {
4324 p->stime = cputime_add(p->stime, steal);
4325 if (atomic_read(&rq->nr_iowait) > 0)
4326 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4327 else
4328 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004329 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4331}
4332
Christoph Lameter7835b982006-12-10 02:20:22 -08004333/*
Balbir Singh49048622008-09-05 18:12:23 +02004334 * Use precise platform statistics if available:
4335 */
4336#ifdef CONFIG_VIRT_CPU_ACCOUNTING
4337cputime_t task_utime(struct task_struct *p)
4338{
4339 return p->utime;
4340}
4341
4342cputime_t task_stime(struct task_struct *p)
4343{
4344 return p->stime;
4345}
4346#else
4347cputime_t task_utime(struct task_struct *p)
4348{
4349 clock_t utime = cputime_to_clock_t(p->utime),
4350 total = utime + cputime_to_clock_t(p->stime);
4351 u64 temp;
4352
4353 /*
4354 * Use CFS's precise accounting:
4355 */
4356 temp = (u64)nsec_to_clock_t(p->se.sum_exec_runtime);
4357
4358 if (total) {
4359 temp *= utime;
4360 do_div(temp, total);
4361 }
4362 utime = (clock_t)temp;
4363
4364 p->prev_utime = max(p->prev_utime, clock_t_to_cputime(utime));
4365 return p->prev_utime;
4366}
4367
4368cputime_t task_stime(struct task_struct *p)
4369{
4370 clock_t stime;
4371
4372 /*
4373 * Use CFS's precise accounting. (we subtract utime from
4374 * the total, to make sure the total observed by userspace
4375 * grows monotonically - apps rely on that):
4376 */
4377 stime = nsec_to_clock_t(p->se.sum_exec_runtime) -
4378 cputime_to_clock_t(task_utime(p));
4379
4380 if (stime >= 0)
4381 p->prev_stime = max(p->prev_stime, clock_t_to_cputime(stime));
4382
4383 return p->prev_stime;
4384}
4385#endif
4386
4387inline cputime_t task_gtime(struct task_struct *p)
4388{
4389 return p->gtime;
4390}
4391
4392/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004393 * This function gets called by the timer code, with HZ frequency.
4394 * We call it with interrupts disabled.
4395 *
4396 * It also gets called by the fork code, when changing the parent's
4397 * timeslices.
4398 */
4399void scheduler_tick(void)
4400{
Christoph Lameter7835b982006-12-10 02:20:22 -08004401 int cpu = smp_processor_id();
4402 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004403 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004404
4405 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004406
Ingo Molnardd41f592007-07-09 18:51:59 +02004407 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004408 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004409 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004410 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004411 spin_unlock(&rq->lock);
4412
Christoph Lametere418e1c2006-12-10 02:20:23 -08004413#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004414 rq->idle_at_tick = idle_cpu(cpu);
4415 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004416#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417}
4418
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004419#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
4420 defined(CONFIG_PREEMPT_TRACER))
4421
4422static inline unsigned long get_parent_ip(unsigned long addr)
4423{
4424 if (in_lock_functions(addr)) {
4425 addr = CALLER_ADDR2;
4426 if (in_lock_functions(addr))
4427 addr = CALLER_ADDR3;
4428 }
4429 return addr;
4430}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431
Srinivasa Ds43627582008-02-23 15:24:04 -08004432void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004434#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 /*
4436 * Underflow?
4437 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004438 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4439 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004440#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004442#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 /*
4444 * Spinlock count overflowing soon?
4445 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004446 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4447 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004448#endif
4449 if (preempt_count() == val)
4450 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451}
4452EXPORT_SYMBOL(add_preempt_count);
4453
Srinivasa Ds43627582008-02-23 15:24:04 -08004454void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004456#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 /*
4458 * Underflow?
4459 */
Nick Piggin7317d7b2008-09-30 20:50:27 +10004460 if (DEBUG_LOCKS_WARN_ON(val > preempt_count() - (!!kernel_locked())))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004461 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 /*
4463 * Is the spinlock portion underflowing?
4464 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004465 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4466 !(preempt_count() & PREEMPT_MASK)))
4467 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004468#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004469
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004470 if (preempt_count() == val)
4471 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472 preempt_count() -= val;
4473}
4474EXPORT_SYMBOL(sub_preempt_count);
4475
4476#endif
4477
4478/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004479 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004481static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482{
Satyam Sharma838225b2007-10-24 18:23:50 +02004483 struct pt_regs *regs = get_irq_regs();
4484
4485 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4486 prev->comm, prev->pid, preempt_count());
4487
Ingo Molnardd41f592007-07-09 18:51:59 +02004488 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07004489 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02004490 if (irqs_disabled())
4491 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004492
4493 if (regs)
4494 show_regs(regs);
4495 else
4496 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004497}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498
Ingo Molnardd41f592007-07-09 18:51:59 +02004499/*
4500 * Various schedule()-time debugging checks and statistics:
4501 */
4502static inline void schedule_debug(struct task_struct *prev)
4503{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004505 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 * schedule() atomically, we ignore that path for now.
4507 * Otherwise, whine if we are scheduling when we should not be.
4508 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02004509 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02004510 __schedule_bug(prev);
4511
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4513
Ingo Molnar2d723762007-10-15 17:00:12 +02004514 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004515#ifdef CONFIG_SCHEDSTATS
4516 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004517 schedstat_inc(this_rq(), bkl_count);
4518 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004519 }
4520#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004521}
4522
4523/*
4524 * Pick up the highest-prio task:
4525 */
4526static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004527pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004528{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004529 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004530 struct task_struct *p;
4531
4532 /*
4533 * Optimization: we know that if all tasks are in
4534 * the fair class we can call that function directly:
4535 */
4536 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004537 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004538 if (likely(p))
4539 return p;
4540 }
4541
4542 class = sched_class_highest;
4543 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004544 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004545 if (p)
4546 return p;
4547 /*
4548 * Will never be NULL as the idle class always
4549 * returns a non-NULL p:
4550 */
4551 class = class->next;
4552 }
4553}
4554
4555/*
4556 * schedule() is the main scheduler function.
4557 */
4558asmlinkage void __sched schedule(void)
4559{
4560 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004561 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004562 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02004563 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02004564
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565need_resched:
4566 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004567 cpu = smp_processor_id();
4568 rq = cpu_rq(cpu);
4569 rcu_qsctr_inc(cpu);
4570 prev = rq->curr;
4571 switch_count = &prev->nivcsw;
4572
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 release_kernel_lock(prev);
4574need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
Ingo Molnardd41f592007-07-09 18:51:59 +02004576 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577
Peter Zijlstra31656512008-07-18 18:01:23 +02004578 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004579 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004580
Peter Zijlstra8cd162c2008-10-15 20:37:23 +02004581 spin_lock_irq(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004582 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004583 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584
Ingo Molnardd41f592007-07-09 18:51:59 +02004585 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Oleg Nesterov16882c12008-06-08 21:20:41 +04004586 if (unlikely(signal_pending_state(prev->state, prev)))
Ingo Molnardd41f592007-07-09 18:51:59 +02004587 prev->state = TASK_RUNNING;
Oleg Nesterov16882c12008-06-08 21:20:41 +04004588 else
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004589 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004590 switch_count = &prev->nvcsw;
4591 }
4592
Steven Rostedt9a897c52008-01-25 21:08:22 +01004593#ifdef CONFIG_SMP
4594 if (prev->sched_class->pre_schedule)
4595 prev->sched_class->pre_schedule(rq, prev);
4596#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004597
Ingo Molnardd41f592007-07-09 18:51:59 +02004598 if (unlikely(!rq->nr_running))
4599 idle_balance(cpu, rq);
4600
Ingo Molnar31ee5292007-08-09 11:16:49 +02004601 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004602 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004605 sched_info_switch(prev, next);
4606
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 rq->nr_switches++;
4608 rq->curr = next;
4609 ++*switch_count;
4610
Ingo Molnardd41f592007-07-09 18:51:59 +02004611 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004612 /*
4613 * the context switch might have flipped the stack from under
4614 * us, hence refresh the local variables.
4615 */
4616 cpu = smp_processor_id();
4617 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 } else
4619 spin_unlock_irq(&rq->lock);
4620
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004621 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004623
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 preempt_enable_no_resched();
4625 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4626 goto need_resched;
4627}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628EXPORT_SYMBOL(schedule);
4629
4630#ifdef CONFIG_PREEMPT
4631/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004632 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004633 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 * occur there and call schedule directly.
4635 */
4636asmlinkage void __sched preempt_schedule(void)
4637{
4638 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004639
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 /*
4641 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004642 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004644 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 return;
4646
Andi Kleen3a5c3592007-10-15 17:00:14 +02004647 do {
4648 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004649 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004650 sub_preempt_count(PREEMPT_ACTIVE);
4651
4652 /*
4653 * Check again in case we missed a preemption opportunity
4654 * between schedule and now.
4655 */
4656 barrier();
4657 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659EXPORT_SYMBOL(preempt_schedule);
4660
4661/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004662 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 * off of irq context.
4664 * Note, that this is called and return with irqs disabled. This will
4665 * protect us against recursive calling from irq.
4666 */
4667asmlinkage void __sched preempt_schedule_irq(void)
4668{
4669 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004670
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004671 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 BUG_ON(ti->preempt_count || !irqs_disabled());
4673
Andi Kleen3a5c3592007-10-15 17:00:14 +02004674 do {
4675 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004676 local_irq_enable();
4677 schedule();
4678 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004679 sub_preempt_count(PREEMPT_ACTIVE);
4680
4681 /*
4682 * Check again in case we missed a preemption opportunity
4683 * between schedule and now.
4684 */
4685 barrier();
4686 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687}
4688
4689#endif /* CONFIG_PREEMPT */
4690
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004691int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4692 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004694 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696EXPORT_SYMBOL(default_wake_function);
4697
4698/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004699 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4700 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 * number) then we wake all the non-exclusive tasks and one exclusive task.
4702 *
4703 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004704 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4706 */
4707static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4708 int nr_exclusive, int sync, void *key)
4709{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004710 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004712 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004713 unsigned flags = curr->flags;
4714
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004716 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 break;
4718 }
4719}
4720
4721/**
4722 * __wake_up - wake up threads blocked on a waitqueue.
4723 * @q: the waitqueue
4724 * @mode: which threads
4725 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004726 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004728void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004729 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730{
4731 unsigned long flags;
4732
4733 spin_lock_irqsave(&q->lock, flags);
4734 __wake_up_common(q, mode, nr_exclusive, 0, key);
4735 spin_unlock_irqrestore(&q->lock, flags);
4736}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737EXPORT_SYMBOL(__wake_up);
4738
4739/*
4740 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4741 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004742void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743{
4744 __wake_up_common(q, mode, 1, 0, NULL);
4745}
4746
4747/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004748 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 * @q: the waitqueue
4750 * @mode: which threads
4751 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4752 *
4753 * The sync wakeup differs that the waker knows that it will schedule
4754 * away soon, so while the target thread will be woken up, it will not
4755 * be migrated to another CPU - ie. the two threads are 'synchronized'
4756 * with each other. This can prevent needless bouncing between CPUs.
4757 *
4758 * On UP it can prevent extra preemption.
4759 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004760void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004761__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762{
4763 unsigned long flags;
4764 int sync = 1;
4765
4766 if (unlikely(!q))
4767 return;
4768
4769 if (unlikely(!nr_exclusive))
4770 sync = 0;
4771
4772 spin_lock_irqsave(&q->lock, flags);
4773 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4774 spin_unlock_irqrestore(&q->lock, flags);
4775}
4776EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4777
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004778/**
4779 * complete: - signals a single thread waiting on this completion
4780 * @x: holds the state of this particular completion
4781 *
4782 * This will wake up a single thread waiting on this completion. Threads will be
4783 * awakened in the same order in which they were queued.
4784 *
4785 * See also complete_all(), wait_for_completion() and related routines.
4786 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004787void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788{
4789 unsigned long flags;
4790
4791 spin_lock_irqsave(&x->wait.lock, flags);
4792 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004793 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 spin_unlock_irqrestore(&x->wait.lock, flags);
4795}
4796EXPORT_SYMBOL(complete);
4797
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004798/**
4799 * complete_all: - signals all threads waiting on this completion
4800 * @x: holds the state of this particular completion
4801 *
4802 * This will wake up all threads waiting on this particular completion event.
4803 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004804void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805{
4806 unsigned long flags;
4807
4808 spin_lock_irqsave(&x->wait.lock, flags);
4809 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004810 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 spin_unlock_irqrestore(&x->wait.lock, flags);
4812}
4813EXPORT_SYMBOL(complete_all);
4814
Andi Kleen8cbbe862007-10-15 17:00:14 +02004815static inline long __sched
4816do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 if (!x->done) {
4819 DECLARE_WAITQUEUE(wait, current);
4820
4821 wait.flags |= WQ_FLAG_EXCLUSIVE;
4822 __add_wait_queue_tail(&x->wait, &wait);
4823 do {
Oleg Nesterov94d3d822008-08-20 16:54:41 -07004824 if (signal_pending_state(state, current)) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04004825 timeout = -ERESTARTSYS;
4826 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004827 }
4828 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004830 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004832 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004834 if (!x->done)
4835 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 }
4837 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04004838 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004839}
4840
4841static long __sched
4842wait_for_common(struct completion *x, long timeout, int state)
4843{
4844 might_sleep();
4845
4846 spin_lock_irq(&x->wait.lock);
4847 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004849 return timeout;
4850}
4851
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004852/**
4853 * wait_for_completion: - waits for completion of a task
4854 * @x: holds the state of this particular completion
4855 *
4856 * This waits to be signaled for completion of a specific task. It is NOT
4857 * interruptible and there is no timeout.
4858 *
4859 * See also similar routines (i.e. wait_for_completion_timeout()) with timeout
4860 * and interrupt capability. Also see complete().
4861 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004862void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004863{
4864 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865}
4866EXPORT_SYMBOL(wait_for_completion);
4867
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004868/**
4869 * wait_for_completion_timeout: - waits for completion of a task (w/timeout)
4870 * @x: holds the state of this particular completion
4871 * @timeout: timeout value in jiffies
4872 *
4873 * This waits for either a completion of a specific task to be signaled or for a
4874 * specified timeout to expire. The timeout is in jiffies. It is not
4875 * interruptible.
4876 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004877unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4879{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004880 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881}
4882EXPORT_SYMBOL(wait_for_completion_timeout);
4883
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004884/**
4885 * wait_for_completion_interruptible: - waits for completion of a task (w/intr)
4886 * @x: holds the state of this particular completion
4887 *
4888 * This waits for completion of a specific task to be signaled. It is
4889 * interruptible.
4890 */
Andi Kleen8cbbe862007-10-15 17:00:14 +02004891int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892{
Andi Kleen51e97992007-10-18 21:32:55 +02004893 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4894 if (t == -ERESTARTSYS)
4895 return t;
4896 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897}
4898EXPORT_SYMBOL(wait_for_completion_interruptible);
4899
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004900/**
4901 * wait_for_completion_interruptible_timeout: - waits for completion (w/(to,intr))
4902 * @x: holds the state of this particular completion
4903 * @timeout: timeout value in jiffies
4904 *
4905 * This waits for either a completion of a specific task to be signaled or for a
4906 * specified timeout to expire. It is interruptible. The timeout is in jiffies.
4907 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004908unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909wait_for_completion_interruptible_timeout(struct completion *x,
4910 unsigned long timeout)
4911{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004912 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913}
4914EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4915
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004916/**
4917 * wait_for_completion_killable: - waits for completion of a task (killable)
4918 * @x: holds the state of this particular completion
4919 *
4920 * This waits to be signaled for completion of a specific task. It can be
4921 * interrupted by a kill signal.
4922 */
Matthew Wilcox009e5772007-12-06 12:29:54 -05004923int __sched wait_for_completion_killable(struct completion *x)
4924{
4925 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4926 if (t == -ERESTARTSYS)
4927 return t;
4928 return 0;
4929}
4930EXPORT_SYMBOL(wait_for_completion_killable);
4931
Dave Chinnerbe4de352008-08-15 00:40:44 -07004932/**
4933 * try_wait_for_completion - try to decrement a completion without blocking
4934 * @x: completion structure
4935 *
4936 * Returns: 0 if a decrement cannot be done without blocking
4937 * 1 if a decrement succeeded.
4938 *
4939 * If a completion is being used as a counting completion,
4940 * attempt to decrement the counter without blocking. This
4941 * enables us to avoid waiting if the resource the completion
4942 * is protecting is not available.
4943 */
4944bool try_wait_for_completion(struct completion *x)
4945{
4946 int ret = 1;
4947
4948 spin_lock_irq(&x->wait.lock);
4949 if (!x->done)
4950 ret = 0;
4951 else
4952 x->done--;
4953 spin_unlock_irq(&x->wait.lock);
4954 return ret;
4955}
4956EXPORT_SYMBOL(try_wait_for_completion);
4957
4958/**
4959 * completion_done - Test to see if a completion has any waiters
4960 * @x: completion structure
4961 *
4962 * Returns: 0 if there are waiters (wait_for_completion() in progress)
4963 * 1 if there are no waiters.
4964 *
4965 */
4966bool completion_done(struct completion *x)
4967{
4968 int ret = 1;
4969
4970 spin_lock_irq(&x->wait.lock);
4971 if (!x->done)
4972 ret = 0;
4973 spin_unlock_irq(&x->wait.lock);
4974 return ret;
4975}
4976EXPORT_SYMBOL(completion_done);
4977
Andi Kleen8cbbe862007-10-15 17:00:14 +02004978static long __sched
4979sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004980{
4981 unsigned long flags;
4982 wait_queue_t wait;
4983
4984 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985
Andi Kleen8cbbe862007-10-15 17:00:14 +02004986 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987
Andi Kleen8cbbe862007-10-15 17:00:14 +02004988 spin_lock_irqsave(&q->lock, flags);
4989 __add_wait_queue(q, &wait);
4990 spin_unlock(&q->lock);
4991 timeout = schedule_timeout(timeout);
4992 spin_lock_irq(&q->lock);
4993 __remove_wait_queue(q, &wait);
4994 spin_unlock_irqrestore(&q->lock, flags);
4995
4996 return timeout;
4997}
4998
4999void __sched interruptible_sleep_on(wait_queue_head_t *q)
5000{
5001 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003EXPORT_SYMBOL(interruptible_sleep_on);
5004
Ingo Molnar0fec1712007-07-09 18:52:01 +02005005long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005006interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005008 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010EXPORT_SYMBOL(interruptible_sleep_on_timeout);
5011
Ingo Molnar0fec1712007-07-09 18:52:01 +02005012void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005014 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016EXPORT_SYMBOL(sleep_on);
5017
Ingo Molnar0fec1712007-07-09 18:52:01 +02005018long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005020 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022EXPORT_SYMBOL(sleep_on_timeout);
5023
Ingo Molnarb29739f2006-06-27 02:54:51 -07005024#ifdef CONFIG_RT_MUTEXES
5025
5026/*
5027 * rt_mutex_setprio - set the current priority of a task
5028 * @p: task
5029 * @prio: prio value (kernel-internal form)
5030 *
5031 * This function changes the 'effective' priority of a task. It does
5032 * not touch ->normal_prio like __setscheduler().
5033 *
5034 * Used by the rt_mutex code to implement priority inheritance logic.
5035 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005036void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07005037{
5038 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005039 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005040 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01005041 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005042
5043 BUG_ON(prio < 0 || prio > MAX_PRIO);
5044
5045 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005046 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005047
Andrew Mortond5f9f942007-05-08 20:27:06 -07005048 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005049 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005050 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005051 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02005052 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005053 if (running)
5054 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02005055
5056 if (rt_prio(prio))
5057 p->sched_class = &rt_sched_class;
5058 else
5059 p->sched_class = &fair_sched_class;
5060
Ingo Molnarb29739f2006-06-27 02:54:51 -07005061 p->prio = prio;
5062
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005063 if (running)
5064 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005065 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02005066 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005067
5068 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005069 }
5070 task_rq_unlock(rq, &flags);
5071}
5072
5073#endif
5074
Ingo Molnar36c8b582006-07-03 00:25:41 -07005075void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076{
Ingo Molnardd41f592007-07-09 18:51:59 +02005077 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005079 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080
5081 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
5082 return;
5083 /*
5084 * We have to be careful, if called from sys_setpriority(),
5085 * the task might be in the middle of scheduling on another CPU.
5086 */
5087 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005088 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089 /*
5090 * The RT priorities are set via sched_setscheduler(), but we still
5091 * allow the 'normal' nice value to be set - but as expected
5092 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02005093 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094 */
Ingo Molnare05606d2007-07-09 18:51:59 +02005095 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096 p->static_prio = NICE_TO_PRIO(nice);
5097 goto out_unlock;
5098 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005099 on_rq = p->se.on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02005100 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02005101 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07005104 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005105 old_prio = p->prio;
5106 p->prio = effective_prio(p);
5107 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108
Ingo Molnardd41f592007-07-09 18:51:59 +02005109 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02005110 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07005112 * If the task increased its priority or is running and
5113 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07005115 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116 resched_task(rq->curr);
5117 }
5118out_unlock:
5119 task_rq_unlock(rq, &flags);
5120}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121EXPORT_SYMBOL(set_user_nice);
5122
Matt Mackalle43379f2005-05-01 08:59:00 -07005123/*
5124 * can_nice - check if a task can reduce its nice value
5125 * @p: task
5126 * @nice: nice value
5127 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005128int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07005129{
Matt Mackall024f4742005-08-18 11:24:19 -07005130 /* convert nice value [19,-20] to rlimit style value [1,40] */
5131 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005132
Matt Mackalle43379f2005-05-01 08:59:00 -07005133 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
5134 capable(CAP_SYS_NICE));
5135}
5136
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137#ifdef __ARCH_WANT_SYS_NICE
5138
5139/*
5140 * sys_nice - change the priority of the current process.
5141 * @increment: priority increment
5142 *
5143 * sys_setpriority is a more generic, but much slower function that
5144 * does similar things.
5145 */
5146asmlinkage long sys_nice(int increment)
5147{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005148 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149
5150 /*
5151 * Setpriority might change our priority at the same moment.
5152 * We don't have to worry. Conceptually one call occurs first
5153 * and we have a single winner.
5154 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005155 if (increment < -40)
5156 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157 if (increment > 40)
5158 increment = 40;
5159
5160 nice = PRIO_TO_NICE(current->static_prio) + increment;
5161 if (nice < -20)
5162 nice = -20;
5163 if (nice > 19)
5164 nice = 19;
5165
Matt Mackalle43379f2005-05-01 08:59:00 -07005166 if (increment < 0 && !can_nice(current, nice))
5167 return -EPERM;
5168
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 retval = security_task_setnice(current, nice);
5170 if (retval)
5171 return retval;
5172
5173 set_user_nice(current, nice);
5174 return 0;
5175}
5176
5177#endif
5178
5179/**
5180 * task_prio - return the priority value of a given task.
5181 * @p: the task in question.
5182 *
5183 * This is the priority value as seen by users in /proc.
5184 * RT tasks are offset by -200. Normal tasks are centered
5185 * around 0, value goes from -16 to +15.
5186 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005187int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188{
5189 return p->prio - MAX_RT_PRIO;
5190}
5191
5192/**
5193 * task_nice - return the nice value of a given task.
5194 * @p: the task in question.
5195 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005196int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197{
5198 return TASK_NICE(p);
5199}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005200EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201
5202/**
5203 * idle_cpu - is a given cpu idle currently?
5204 * @cpu: the processor in question.
5205 */
5206int idle_cpu(int cpu)
5207{
5208 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5209}
5210
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211/**
5212 * idle_task - return the idle task for a given cpu.
5213 * @cpu: the processor in question.
5214 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005215struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216{
5217 return cpu_rq(cpu)->idle;
5218}
5219
5220/**
5221 * find_process_by_pid - find a process with a matching PID value.
5222 * @pid: the pid in question.
5223 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005224static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005226 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227}
5228
5229/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005230static void
5231__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232{
Ingo Molnardd41f592007-07-09 18:51:59 +02005233 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005234
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005236 switch (p->policy) {
5237 case SCHED_NORMAL:
5238 case SCHED_BATCH:
5239 case SCHED_IDLE:
5240 p->sched_class = &fair_sched_class;
5241 break;
5242 case SCHED_FIFO:
5243 case SCHED_RR:
5244 p->sched_class = &rt_sched_class;
5245 break;
5246 }
5247
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005249 p->normal_prio = normal_prio(p);
5250 /* we are holding p->pi_lock already */
5251 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005252 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253}
5254
Rusty Russell961ccdd2008-06-23 13:55:38 +10005255static int __sched_setscheduler(struct task_struct *p, int policy,
5256 struct sched_param *param, bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005258 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005260 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005261 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262
Steven Rostedt66e53932006-06-27 02:54:44 -07005263 /* may grab non-irq protected spin_locks */
5264 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265recheck:
5266 /* double check policy once rq lock held */
5267 if (policy < 0)
5268 policy = oldpolicy = p->policy;
5269 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005270 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5271 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005272 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 /*
5274 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005275 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5276 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277 */
5278 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005279 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005280 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005282 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283 return -EINVAL;
5284
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005285 /*
5286 * Allow unprivileged RT tasks to decrease priority:
5287 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10005288 if (user && !capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005289 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005290 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005291
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005292 if (!lock_task_sighand(p, &flags))
5293 return -ESRCH;
5294 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5295 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005296
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005297 /* can't set/change the rt policy */
5298 if (policy != p->policy && !rlim_rtprio)
5299 return -EPERM;
5300
5301 /* can't increase priority */
5302 if (param->sched_priority > p->rt_priority &&
5303 param->sched_priority > rlim_rtprio)
5304 return -EPERM;
5305 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005306 /*
5307 * Like positive nice levels, dont allow tasks to
5308 * move out of SCHED_IDLE either:
5309 */
5310 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5311 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005312
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005313 /* can't change other user's priorities */
5314 if ((current->euid != p->euid) &&
5315 (current->euid != p->uid))
5316 return -EPERM;
5317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005319 if (user) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005320#ifdef CONFIG_RT_GROUP_SCHED
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005321 /*
5322 * Do not allow realtime tasks into groups that have no runtime
5323 * assigned.
5324 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02005325 if (rt_bandwidth_enabled() && rt_policy(policy) &&
5326 task_group(p)->rt_bandwidth.rt_runtime == 0)
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005327 return -EPERM;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005328#endif
5329
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005330 retval = security_task_setscheduler(p, policy, param);
5331 if (retval)
5332 return retval;
5333 }
5334
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005336 * make sure no PI-waiters arrive (or leave) while we are
5337 * changing the priority of the task:
5338 */
5339 spin_lock_irqsave(&p->pi_lock, flags);
5340 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 * To be able to change p->policy safely, the apropriate
5342 * runqueue lock must be held.
5343 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005344 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 /* recheck policy now with rq lock held */
5346 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5347 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005348 __task_rq_unlock(rq);
5349 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350 goto recheck;
5351 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005352 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005353 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005354 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005355 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005356 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005357 if (running)
5358 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005359
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005361 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005362
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005363 if (running)
5364 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005365 if (on_rq) {
5366 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005367
5368 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005370 __task_rq_unlock(rq);
5371 spin_unlock_irqrestore(&p->pi_lock, flags);
5372
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005373 rt_mutex_adjust_pi(p);
5374
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 return 0;
5376}
Rusty Russell961ccdd2008-06-23 13:55:38 +10005377
5378/**
5379 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
5380 * @p: the task in question.
5381 * @policy: new policy.
5382 * @param: structure containing the new RT priority.
5383 *
5384 * NOTE that the task may be already dead.
5385 */
5386int sched_setscheduler(struct task_struct *p, int policy,
5387 struct sched_param *param)
5388{
5389 return __sched_setscheduler(p, policy, param, true);
5390}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391EXPORT_SYMBOL_GPL(sched_setscheduler);
5392
Rusty Russell961ccdd2008-06-23 13:55:38 +10005393/**
5394 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
5395 * @p: the task in question.
5396 * @policy: new policy.
5397 * @param: structure containing the new RT priority.
5398 *
5399 * Just like sched_setscheduler, only don't bother checking if the
5400 * current context has permission. For example, this is needed in
5401 * stop_machine(): we create temporary high priority worker threads,
5402 * but our caller might not have that capability.
5403 */
5404int sched_setscheduler_nocheck(struct task_struct *p, int policy,
5405 struct sched_param *param)
5406{
5407 return __sched_setscheduler(p, policy, param, false);
5408}
5409
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005410static int
5411do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 struct sched_param lparam;
5414 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005415 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416
5417 if (!param || pid < 0)
5418 return -EINVAL;
5419 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5420 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005421
5422 rcu_read_lock();
5423 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005425 if (p != NULL)
5426 retval = sched_setscheduler(p, policy, &lparam);
5427 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005428
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 return retval;
5430}
5431
5432/**
5433 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5434 * @pid: the pid in question.
5435 * @policy: new policy.
5436 * @param: structure containing the new RT priority.
5437 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005438asmlinkage long
5439sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440{
Jason Baronc21761f2006-01-18 17:43:03 -08005441 /* negative values for policy are not valid */
5442 if (policy < 0)
5443 return -EINVAL;
5444
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445 return do_sched_setscheduler(pid, policy, param);
5446}
5447
5448/**
5449 * sys_sched_setparam - set/change the RT priority of a thread
5450 * @pid: the pid in question.
5451 * @param: structure containing the new RT priority.
5452 */
5453asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5454{
5455 return do_sched_setscheduler(pid, -1, param);
5456}
5457
5458/**
5459 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5460 * @pid: the pid in question.
5461 */
5462asmlinkage long sys_sched_getscheduler(pid_t pid)
5463{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005464 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005465 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466
5467 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005468 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469
5470 retval = -ESRCH;
5471 read_lock(&tasklist_lock);
5472 p = find_process_by_pid(pid);
5473 if (p) {
5474 retval = security_task_getscheduler(p);
5475 if (!retval)
5476 retval = p->policy;
5477 }
5478 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479 return retval;
5480}
5481
5482/**
5483 * sys_sched_getscheduler - get the RT priority of a thread
5484 * @pid: the pid in question.
5485 * @param: structure containing the RT priority.
5486 */
5487asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5488{
5489 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005490 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005491 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492
5493 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005494 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495
5496 read_lock(&tasklist_lock);
5497 p = find_process_by_pid(pid);
5498 retval = -ESRCH;
5499 if (!p)
5500 goto out_unlock;
5501
5502 retval = security_task_getscheduler(p);
5503 if (retval)
5504 goto out_unlock;
5505
5506 lp.sched_priority = p->rt_priority;
5507 read_unlock(&tasklist_lock);
5508
5509 /*
5510 * This one might sleep, we cannot do it with a spinlock held ...
5511 */
5512 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5513
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514 return retval;
5515
5516out_unlock:
5517 read_unlock(&tasklist_lock);
5518 return retval;
5519}
5520
Rusty Russell96f874e2008-11-25 02:35:14 +10305521long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305523 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005524 struct task_struct *p;
5525 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005527 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528 read_lock(&tasklist_lock);
5529
5530 p = find_process_by_pid(pid);
5531 if (!p) {
5532 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005533 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534 return -ESRCH;
5535 }
5536
5537 /*
5538 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005539 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540 * usage count and then drop tasklist_lock.
5541 */
5542 get_task_struct(p);
5543 read_unlock(&tasklist_lock);
5544
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305545 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
5546 retval = -ENOMEM;
5547 goto out_put_task;
5548 }
5549 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
5550 retval = -ENOMEM;
5551 goto out_free_cpus_allowed;
5552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553 retval = -EPERM;
5554 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5555 !capable(CAP_SYS_NICE))
5556 goto out_unlock;
5557
David Quigleye7834f82006-06-23 02:03:59 -07005558 retval = security_task_setscheduler(p, 0, NULL);
5559 if (retval)
5560 goto out_unlock;
5561
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305562 cpuset_cpus_allowed(p, cpus_allowed);
5563 cpumask_and(new_mask, in_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005564 again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305565 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566
Paul Menage8707d8b2007-10-18 23:40:22 -07005567 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305568 cpuset_cpus_allowed(p, cpus_allowed);
5569 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07005570 /*
5571 * We must have raced with a concurrent cpuset
5572 * update. Just reset the cpus_allowed to the
5573 * cpuset's cpus_allowed
5574 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305575 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005576 goto again;
5577 }
5578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305580 free_cpumask_var(new_mask);
5581out_free_cpus_allowed:
5582 free_cpumask_var(cpus_allowed);
5583out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005585 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586 return retval;
5587}
5588
5589static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e2008-11-25 02:35:14 +10305590 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591{
Rusty Russell96f874e2008-11-25 02:35:14 +10305592 if (len < cpumask_size())
5593 cpumask_clear(new_mask);
5594 else if (len > cpumask_size())
5595 len = cpumask_size();
5596
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5598}
5599
5600/**
5601 * sys_sched_setaffinity - set the cpu affinity of a process
5602 * @pid: pid of the process
5603 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5604 * @user_mask_ptr: user-space pointer to the new cpu mask
5605 */
5606asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5607 unsigned long __user *user_mask_ptr)
5608{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305609 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610 int retval;
5611
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305612 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
5613 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305615 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
5616 if (retval == 0)
5617 retval = sched_setaffinity(pid, new_mask);
5618 free_cpumask_var(new_mask);
5619 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620}
5621
Rusty Russell96f874e2008-11-25 02:35:14 +10305622long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005624 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005627 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628 read_lock(&tasklist_lock);
5629
5630 retval = -ESRCH;
5631 p = find_process_by_pid(pid);
5632 if (!p)
5633 goto out_unlock;
5634
David Quigleye7834f82006-06-23 02:03:59 -07005635 retval = security_task_getscheduler(p);
5636 if (retval)
5637 goto out_unlock;
5638
Rusty Russell96f874e2008-11-25 02:35:14 +10305639 cpumask_and(mask, &p->cpus_allowed, cpu_online_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640
5641out_unlock:
5642 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005643 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644
Ulrich Drepper9531b622007-08-09 11:16:46 +02005645 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646}
5647
5648/**
5649 * sys_sched_getaffinity - get the cpu affinity of a process
5650 * @pid: pid of the process
5651 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5652 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5653 */
5654asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5655 unsigned long __user *user_mask_ptr)
5656{
5657 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10305658 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659
Rusty Russellf17c8602008-11-25 02:35:11 +10305660 if (len < cpumask_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 return -EINVAL;
5662
Rusty Russellf17c8602008-11-25 02:35:11 +10305663 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
5664 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665
Rusty Russellf17c8602008-11-25 02:35:11 +10305666 ret = sched_getaffinity(pid, mask);
5667 if (ret == 0) {
5668 if (copy_to_user(user_mask_ptr, mask, cpumask_size()))
5669 ret = -EFAULT;
5670 else
5671 ret = cpumask_size();
5672 }
5673 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
Rusty Russellf17c8602008-11-25 02:35:11 +10305675 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676}
5677
5678/**
5679 * sys_sched_yield - yield the current processor to other threads.
5680 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005681 * This function yields the current CPU to other tasks. If there are no
5682 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683 */
5684asmlinkage long sys_sched_yield(void)
5685{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005686 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687
Ingo Molnar2d723762007-10-15 17:00:12 +02005688 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005689 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
5691 /*
5692 * Since we are going to call schedule() anyway, there's
5693 * no need to preempt or enable interrupts:
5694 */
5695 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005696 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697 _raw_spin_unlock(&rq->lock);
5698 preempt_enable_no_resched();
5699
5700 schedule();
5701
5702 return 0;
5703}
5704
Andrew Mortone7b38402006-06-30 01:56:00 -07005705static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005707#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5708 __might_sleep(__FILE__, __LINE__);
5709#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005710 /*
5711 * The BKS might be reacquired before we have dropped
5712 * PREEMPT_ACTIVE, which could trigger a second
5713 * cond_resched() call.
5714 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715 do {
5716 add_preempt_count(PREEMPT_ACTIVE);
5717 schedule();
5718 sub_preempt_count(PREEMPT_ACTIVE);
5719 } while (need_resched());
5720}
5721
Herbert Xu02b67cc2008-01-25 21:08:28 +01005722int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723{
Ingo Molnar94142322006-12-29 16:48:13 -08005724 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5725 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726 __cond_resched();
5727 return 1;
5728 }
5729 return 0;
5730}
Herbert Xu02b67cc2008-01-25 21:08:28 +01005731EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732
5733/*
5734 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5735 * call schedule, and on return reacquire the lock.
5736 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005737 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738 * operations here to prevent schedule() from being called twice (once via
5739 * spin_unlock(), once by hand).
5740 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005741int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742{
Nick Piggin95c354f2008-01-30 13:31:20 +01005743 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005744 int ret = 0;
5745
Nick Piggin95c354f2008-01-30 13:31:20 +01005746 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005748 if (resched && need_resched())
5749 __cond_resched();
5750 else
5751 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005752 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005755 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757EXPORT_SYMBOL(cond_resched_lock);
5758
5759int __sched cond_resched_softirq(void)
5760{
5761 BUG_ON(!in_softirq());
5762
Ingo Molnar94142322006-12-29 16:48:13 -08005763 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d82562007-05-23 13:58:18 -07005764 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765 __cond_resched();
5766 local_bh_disable();
5767 return 1;
5768 }
5769 return 0;
5770}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771EXPORT_SYMBOL(cond_resched_softirq);
5772
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773/**
5774 * yield - yield the current processor to other threads.
5775 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005776 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777 * thread runnable and calls sys_sched_yield().
5778 */
5779void __sched yield(void)
5780{
5781 set_current_state(TASK_RUNNING);
5782 sys_sched_yield();
5783}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784EXPORT_SYMBOL(yield);
5785
5786/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005787 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788 * that process accounting knows that this is a task in IO wait state.
5789 *
5790 * But don't do that if it is a deliberate, throttling IO wait (this task
5791 * has set its backing_dev_info: the queue against which it should throttle)
5792 */
5793void __sched io_schedule(void)
5794{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005795 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005797 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798 atomic_inc(&rq->nr_iowait);
5799 schedule();
5800 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005801 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803EXPORT_SYMBOL(io_schedule);
5804
5805long __sched io_schedule_timeout(long timeout)
5806{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005807 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808 long ret;
5809
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005810 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811 atomic_inc(&rq->nr_iowait);
5812 ret = schedule_timeout(timeout);
5813 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005814 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 return ret;
5816}
5817
5818/**
5819 * sys_sched_get_priority_max - return maximum RT priority.
5820 * @policy: scheduling class.
5821 *
5822 * this syscall returns the maximum rt_priority that can be used
5823 * by a given scheduling class.
5824 */
5825asmlinkage long sys_sched_get_priority_max(int policy)
5826{
5827 int ret = -EINVAL;
5828
5829 switch (policy) {
5830 case SCHED_FIFO:
5831 case SCHED_RR:
5832 ret = MAX_USER_RT_PRIO-1;
5833 break;
5834 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005835 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005836 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837 ret = 0;
5838 break;
5839 }
5840 return ret;
5841}
5842
5843/**
5844 * sys_sched_get_priority_min - return minimum RT priority.
5845 * @policy: scheduling class.
5846 *
5847 * this syscall returns the minimum rt_priority that can be used
5848 * by a given scheduling class.
5849 */
5850asmlinkage long sys_sched_get_priority_min(int policy)
5851{
5852 int ret = -EINVAL;
5853
5854 switch (policy) {
5855 case SCHED_FIFO:
5856 case SCHED_RR:
5857 ret = 1;
5858 break;
5859 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005860 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005861 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 ret = 0;
5863 }
5864 return ret;
5865}
5866
5867/**
5868 * sys_sched_rr_get_interval - return the default timeslice of a process.
5869 * @pid: pid of the process.
5870 * @interval: userspace pointer to the timeslice value.
5871 *
5872 * this syscall writes the default timeslice value of a given process
5873 * into the user-space timespec buffer. A value of '0' means infinity.
5874 */
5875asmlinkage
5876long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5877{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005878 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005879 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005880 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882
5883 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005884 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885
5886 retval = -ESRCH;
5887 read_lock(&tasklist_lock);
5888 p = find_process_by_pid(pid);
5889 if (!p)
5890 goto out_unlock;
5891
5892 retval = security_task_getscheduler(p);
5893 if (retval)
5894 goto out_unlock;
5895
Ingo Molnar77034932007-12-04 17:04:39 +01005896 /*
5897 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5898 * tasks that are on an otherwise idle runqueue:
5899 */
5900 time_slice = 0;
5901 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005902 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005903 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005904 struct sched_entity *se = &p->se;
5905 unsigned long flags;
5906 struct rq *rq;
5907
5908 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005909 if (rq->cfs.load.weight)
5910 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005911 task_rq_unlock(rq, &flags);
5912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005914 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005917
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918out_unlock:
5919 read_unlock(&tasklist_lock);
5920 return retval;
5921}
5922
Steven Rostedt7c731e02008-05-12 21:20:41 +02005923static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005924
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005925void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005928 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005931 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005932 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005933#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005935 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005937 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938#else
5939 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005940 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005942 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943#endif
5944#ifdef CONFIG_DEBUG_STACK_USAGE
5945 {
Al Viro10ebffd2005-11-13 16:06:56 -08005946 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947 while (!*n)
5948 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005949 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950 }
5951#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005952 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005953 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005955 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956}
5957
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005958void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005960 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961
Ingo Molnar4bd77322007-07-11 21:21:47 +02005962#if BITS_PER_LONG == 32
5963 printk(KERN_INFO
5964 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005966 printk(KERN_INFO
5967 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968#endif
5969 read_lock(&tasklist_lock);
5970 do_each_thread(g, p) {
5971 /*
5972 * reset the NMI-timeout, listing all files on a slow
5973 * console might take alot of time:
5974 */
5975 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005976 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005977 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978 } while_each_thread(g, p);
5979
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005980 touch_all_softlockup_watchdogs();
5981
Ingo Molnardd41f592007-07-09 18:51:59 +02005982#ifdef CONFIG_SCHED_DEBUG
5983 sysrq_sched_debug_show();
5984#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005986 /*
5987 * Only show locks if all tasks are dumped:
5988 */
5989 if (state_filter == -1)
5990 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991}
5992
Ingo Molnar1df21052007-07-09 18:51:58 +02005993void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5994{
Ingo Molnardd41f592007-07-09 18:51:59 +02005995 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005996}
5997
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005998/**
5999 * init_idle - set up an idle thread for a given CPU
6000 * @idle: task in question
6001 * @cpu: cpu the idle task belongs to
6002 *
6003 * NOTE: this function does not set the idle thread's NEED_RESCHED
6004 * flag, to make booting more robust.
6005 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07006006void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006008 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009 unsigned long flags;
6010
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01006011 spin_lock_irqsave(&rq->lock, flags);
6012
Ingo Molnardd41f592007-07-09 18:51:59 +02006013 __sched_fork(idle);
6014 idle->se.exec_start = sched_clock();
6015
Ingo Molnarb29739f2006-06-27 02:54:51 -07006016 idle->prio = idle->normal_prio = MAX_PRIO;
Rusty Russell96f874e2008-11-25 02:35:14 +10306017 cpumask_copy(&idle->cpus_allowed, cpumask_of(cpu));
Ingo Molnardd41f592007-07-09 18:51:59 +02006018 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07006021#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
6022 idle->oncpu = 1;
6023#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024 spin_unlock_irqrestore(&rq->lock, flags);
6025
6026 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07006027#if defined(CONFIG_PREEMPT)
6028 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
6029#else
Al Viroa1261f52005-11-13 16:06:55 -08006030 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07006031#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02006032 /*
6033 * The idle tasks have their own, simple scheduling class:
6034 */
6035 idle->sched_class = &idle_sched_class;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006036 ftrace_graph_init_task(idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037}
6038
6039/*
6040 * In a system that switches off the HZ timer nohz_cpu_mask
6041 * indicates which cpus entered this state. This is used
6042 * in the rcu update to wait only for active cpus. For system
6043 * which do not switch off the HZ timer nohz_cpu_mask should
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306044 * always be CPU_BITS_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045 */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306046cpumask_var_t nohz_cpu_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047
Ingo Molnar19978ca2007-11-09 22:39:38 +01006048/*
6049 * Increase the granularity value when there are more CPUs,
6050 * because with more CPUs the 'effective latency' as visible
6051 * to users decreases. But the relationship is not linear,
6052 * so pick a second-best guess by going with the log2 of the
6053 * number of CPUs.
6054 *
6055 * This idea comes from the SD scheduler of Con Kolivas:
6056 */
6057static inline void sched_init_granularity(void)
6058{
6059 unsigned int factor = 1 + ilog2(num_online_cpus());
6060 const unsigned long limit = 200000000;
6061
6062 sysctl_sched_min_granularity *= factor;
6063 if (sysctl_sched_min_granularity > limit)
6064 sysctl_sched_min_granularity = limit;
6065
6066 sysctl_sched_latency *= factor;
6067 if (sysctl_sched_latency > limit)
6068 sysctl_sched_latency = limit;
6069
6070 sysctl_sched_wakeup_granularity *= factor;
Peter Zijlstra55cd5342008-08-04 08:54:26 +02006071
6072 sysctl_sched_shares_ratelimit *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01006073}
6074
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075#ifdef CONFIG_SMP
6076/*
6077 * This is how migration works:
6078 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07006079 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080 * runqueue and wake up that CPU's migration thread.
6081 * 2) we down() the locked semaphore => thread blocks.
6082 * 3) migration thread wakes up (implicitly it forces the migrated
6083 * thread off the CPU)
6084 * 4) it gets the migration request and checks whether the migrated
6085 * task is still in the wrong runqueue.
6086 * 5) if it's in the wrong runqueue then the migration thread removes
6087 * it and puts it into the right queue.
6088 * 6) migration thread up()s the semaphore.
6089 * 7) we wake up and the migration is done.
6090 */
6091
6092/*
6093 * Change a given task's CPU affinity. Migrate the thread to a
6094 * proper CPU and schedule it away if the CPU it's executing on
6095 * is removed from the allowed bitmask.
6096 *
6097 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006098 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099 * call is not atomic; no spinlocks may be held.
6100 */
Rusty Russell96f874e2008-11-25 02:35:14 +10306101int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006103 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006105 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006106 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107
6108 rq = task_rq_lock(p, &flags);
Rusty Russell96f874e2008-11-25 02:35:14 +10306109 if (!cpumask_intersects(new_mask, cpu_online_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110 ret = -EINVAL;
6111 goto out;
6112 }
6113
David Rientjes9985b0b2008-06-05 12:57:11 -07006114 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current &&
Rusty Russell96f874e2008-11-25 02:35:14 +10306115 !cpumask_equal(&p->cpus_allowed, new_mask))) {
David Rientjes9985b0b2008-06-05 12:57:11 -07006116 ret = -EINVAL;
6117 goto out;
6118 }
6119
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006120 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006121 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006122 else {
Rusty Russell96f874e2008-11-25 02:35:14 +10306123 cpumask_copy(&p->cpus_allowed, new_mask);
6124 p->rt.nr_cpus_allowed = cpumask_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006125 }
6126
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e2008-11-25 02:35:14 +10306128 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129 goto out;
6130
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10306131 if (migrate_task(p, cpumask_any_and(cpu_online_mask, new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132 /* Need help from migration thread: drop lock and wait. */
6133 task_rq_unlock(rq, &flags);
6134 wake_up_process(rq->migration_thread);
6135 wait_for_completion(&req.done);
6136 tlb_migrate_finish(p->mm);
6137 return 0;
6138 }
6139out:
6140 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006141
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142 return ret;
6143}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006144EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145
6146/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006147 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148 * this because either it can't run here any more (set_cpus_allowed()
6149 * away from this CPU, or CPU going down), or because we're
6150 * attempting to rebalance this task on exec (sched_exec).
6151 *
6152 * So we race with normal scheduler movements, but that's OK, as long
6153 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07006154 *
6155 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07006157static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006159 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02006160 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161
Max Krasnyanskye761b772008-07-15 04:43:49 -07006162 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07006163 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006164
6165 rq_src = cpu_rq(src_cpu);
6166 rq_dest = cpu_rq(dest_cpu);
6167
6168 double_rq_lock(rq_src, rq_dest);
6169 /* Already moved. */
6170 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006171 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172 /* Affinity changed (again). */
Rusty Russell96f874e2008-11-25 02:35:14 +10306173 if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006174 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175
Ingo Molnardd41f592007-07-09 18:51:59 +02006176 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006177 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006178 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006179
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006181 if (on_rq) {
6182 activate_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02006183 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006185done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07006186 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006187fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07006189 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190}
6191
6192/*
6193 * migration_thread - this is a highprio system thread that performs
6194 * thread migration by bumping thread off CPU then 'pushing' onto
6195 * another runqueue.
6196 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006197static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006200 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201
6202 rq = cpu_rq(cpu);
6203 BUG_ON(rq->migration_thread != current);
6204
6205 set_current_state(TASK_INTERRUPTIBLE);
6206 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006207 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210 spin_lock_irq(&rq->lock);
6211
6212 if (cpu_is_offline(cpu)) {
6213 spin_unlock_irq(&rq->lock);
6214 goto wait_to_die;
6215 }
6216
6217 if (rq->active_balance) {
6218 active_load_balance(rq, cpu);
6219 rq->active_balance = 0;
6220 }
6221
6222 head = &rq->migration_queue;
6223
6224 if (list_empty(head)) {
6225 spin_unlock_irq(&rq->lock);
6226 schedule();
6227 set_current_state(TASK_INTERRUPTIBLE);
6228 continue;
6229 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07006230 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231 list_del_init(head->next);
6232
Nick Piggin674311d2005-06-25 14:57:27 -07006233 spin_unlock(&rq->lock);
6234 __migrate_task(req->task, cpu, req->dest_cpu);
6235 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236
6237 complete(&req->done);
6238 }
6239 __set_current_state(TASK_RUNNING);
6240 return 0;
6241
6242wait_to_die:
6243 /* Wait for kthread_stop */
6244 set_current_state(TASK_INTERRUPTIBLE);
6245 while (!kthread_should_stop()) {
6246 schedule();
6247 set_current_state(TASK_INTERRUPTIBLE);
6248 }
6249 __set_current_state(TASK_RUNNING);
6250 return 0;
6251}
6252
6253#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006254
6255static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
6256{
6257 int ret;
6258
6259 local_irq_disable();
6260 ret = __migrate_task(p, src_cpu, dest_cpu);
6261 local_irq_enable();
6262 return ret;
6263}
6264
Kirill Korotaev054b9102006-12-10 02:20:11 -08006265/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006266 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08006267 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006268static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006270 int dest_cpu;
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306271 /* FIXME: Use cpumask_of_node here. */
6272 cpumask_t _nodemask = node_to_cpumask(cpu_to_node(dead_cpu));
6273 const struct cpumask *nodemask = &_nodemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306275again:
6276 /* Look for allowed, online CPU in same node. */
6277 for_each_cpu_and(dest_cpu, nodemask, cpu_online_mask)
6278 if (cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
6279 goto move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306281 /* Any allowed, online CPU? */
6282 dest_cpu = cpumask_any_and(&p->cpus_allowed, cpu_online_mask);
6283 if (dest_cpu < nr_cpu_ids)
6284 goto move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306286 /* No more Mr. Nice Guy. */
6287 if (dest_cpu >= nr_cpu_ids) {
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306288 cpuset_cpus_allowed_locked(p, &p->cpus_allowed);
6289 dest_cpu = cpumask_any_and(cpu_online_mask, &p->cpus_allowed);
Mike Travisf9a86fc2008-04-04 18:11:07 -07006290
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306291 /*
6292 * Don't tell them about moving exiting tasks or
6293 * kernel threads (both mm NULL), since they never
6294 * leave kernel.
6295 */
6296 if (p->mm && printk_ratelimit()) {
6297 printk(KERN_INFO "process %d (%s) no "
6298 "longer affine to cpu%d\n",
6299 task_pid_nr(p), p->comm, dead_cpu);
Andi Kleen3a5c3592007-10-15 17:00:14 +02006300 }
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306301 }
6302
6303move:
6304 /* It can have affinity changed while we were choosing. */
6305 if (unlikely(!__migrate_task_irq(p, dead_cpu, dest_cpu)))
6306 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307}
6308
6309/*
6310 * While a dead CPU has no uninterruptible tasks queued at this point,
6311 * it might still have a nonzero ->nr_uninterruptible counter, because
6312 * for performance reasons the counter is not stricly tracking tasks to
6313 * their home CPUs. So we just add the counter to another CPU's counter,
6314 * to keep the global sum constant after CPU-down:
6315 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006316static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317{
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10306318 struct rq *rq_dest = cpu_rq(cpumask_any(cpu_online_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319 unsigned long flags;
6320
6321 local_irq_save(flags);
6322 double_rq_lock(rq_src, rq_dest);
6323 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6324 rq_src->nr_uninterruptible = 0;
6325 double_rq_unlock(rq_src, rq_dest);
6326 local_irq_restore(flags);
6327}
6328
6329/* Run through task list and migrate tasks from the dead cpu. */
6330static void migrate_live_tasks(int src_cpu)
6331{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006332 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006334 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335
Ingo Molnar48f24c42006-07-03 00:25:40 -07006336 do_each_thread(t, p) {
6337 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338 continue;
6339
Ingo Molnar48f24c42006-07-03 00:25:40 -07006340 if (task_cpu(p) == src_cpu)
6341 move_task_off_dead_cpu(src_cpu, p);
6342 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006344 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345}
6346
Ingo Molnardd41f592007-07-09 18:51:59 +02006347/*
6348 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006349 * It does so by boosting its priority to highest possible.
6350 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351 */
6352void sched_idle_next(void)
6353{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006354 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006355 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006356 struct task_struct *p = rq->idle;
6357 unsigned long flags;
6358
6359 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006360 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361
Ingo Molnar48f24c42006-07-03 00:25:40 -07006362 /*
6363 * Strictly not necessary since rest of the CPUs are stopped by now
6364 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365 */
6366 spin_lock_irqsave(&rq->lock, flags);
6367
Ingo Molnardd41f592007-07-09 18:51:59 +02006368 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006369
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006370 update_rq_clock(rq);
6371 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372
6373 spin_unlock_irqrestore(&rq->lock, flags);
6374}
6375
Ingo Molnar48f24c42006-07-03 00:25:40 -07006376/*
6377 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378 * offline.
6379 */
6380void idle_task_exit(void)
6381{
6382 struct mm_struct *mm = current->active_mm;
6383
6384 BUG_ON(cpu_online(smp_processor_id()));
6385
6386 if (mm != &init_mm)
6387 switch_mm(mm, &init_mm, current);
6388 mmdrop(mm);
6389}
6390
Kirill Korotaev054b9102006-12-10 02:20:11 -08006391/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006392static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006393{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006394 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395
6396 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006397 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398
6399 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006400 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401
Ingo Molnar48f24c42006-07-03 00:25:40 -07006402 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403
6404 /*
6405 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006406 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407 * fine.
6408 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006409 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006410 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006411 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412
Ingo Molnar48f24c42006-07-03 00:25:40 -07006413 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414}
6415
6416/* release_task() removes task from tasklist, so we won't find dead tasks. */
6417static void migrate_dead_tasks(unsigned int dead_cpu)
6418{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006419 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006420 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421
Ingo Molnardd41f592007-07-09 18:51:59 +02006422 for ( ; ; ) {
6423 if (!rq->nr_running)
6424 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006425 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006426 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006427 if (!next)
6428 break;
Dmitry Adamushko79c53792008-06-29 00:16:56 +02006429 next->sched_class->put_prev_task(rq, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02006430 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006431
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432 }
6433}
6434#endif /* CONFIG_HOTPLUG_CPU */
6435
Nick Piggine692ab52007-07-26 13:40:43 +02006436#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6437
6438static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006439 {
6440 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006441 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006442 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006443 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006444};
6445
6446static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006447 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006448 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006449 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006450 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006451 .child = sd_ctl_dir,
6452 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006453 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006454};
6455
6456static struct ctl_table *sd_alloc_ctl_entry(int n)
6457{
6458 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006459 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006460
Nick Piggine692ab52007-07-26 13:40:43 +02006461 return entry;
6462}
6463
Milton Miller6382bc92007-10-15 17:00:19 +02006464static void sd_free_ctl_entry(struct ctl_table **tablep)
6465{
Milton Millercd790072007-10-17 16:55:11 +02006466 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006467
Milton Millercd790072007-10-17 16:55:11 +02006468 /*
6469 * In the intermediate directories, both the child directory and
6470 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006471 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02006472 * static strings and all have proc handlers.
6473 */
6474 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006475 if (entry->child)
6476 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02006477 if (entry->proc_handler == NULL)
6478 kfree(entry->procname);
6479 }
Milton Miller6382bc92007-10-15 17:00:19 +02006480
6481 kfree(*tablep);
6482 *tablep = NULL;
6483}
6484
Nick Piggine692ab52007-07-26 13:40:43 +02006485static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006486set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006487 const char *procname, void *data, int maxlen,
6488 mode_t mode, proc_handler *proc_handler)
6489{
Nick Piggine692ab52007-07-26 13:40:43 +02006490 entry->procname = procname;
6491 entry->data = data;
6492 entry->maxlen = maxlen;
6493 entry->mode = mode;
6494 entry->proc_handler = proc_handler;
6495}
6496
6497static struct ctl_table *
6498sd_alloc_ctl_domain_table(struct sched_domain *sd)
6499{
Ingo Molnara5d8c342008-10-09 11:35:51 +02006500 struct ctl_table *table = sd_alloc_ctl_entry(13);
Nick Piggine692ab52007-07-26 13:40:43 +02006501
Milton Millerad1cdc12007-10-15 17:00:19 +02006502 if (table == NULL)
6503 return NULL;
6504
Alexey Dobriyane0361852007-08-09 11:16:46 +02006505 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006506 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006507 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006508 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006509 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006510 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006511 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006512 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006513 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006514 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006515 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006516 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006517 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006518 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006519 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006520 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006521 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006522 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006523 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006524 &sd->cache_nice_tries,
6525 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006526 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006527 sizeof(int), 0644, proc_dointvec_minmax);
Ingo Molnara5d8c342008-10-09 11:35:51 +02006528 set_table_entry(&table[11], "name", sd->name,
6529 CORENAME_MAX_SIZE, 0444, proc_dostring);
6530 /* &table[12] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006531
6532 return table;
6533}
6534
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006535static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006536{
6537 struct ctl_table *entry, *table;
6538 struct sched_domain *sd;
6539 int domain_num = 0, i;
6540 char buf[32];
6541
6542 for_each_domain(cpu, sd)
6543 domain_num++;
6544 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006545 if (table == NULL)
6546 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006547
6548 i = 0;
6549 for_each_domain(cpu, sd) {
6550 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006551 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006552 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006553 entry->child = sd_alloc_ctl_domain_table(sd);
6554 entry++;
6555 i++;
6556 }
6557 return table;
6558}
6559
6560static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006561static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006562{
6563 int i, cpu_num = num_online_cpus();
6564 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6565 char buf[32];
6566
Milton Miller73785472007-10-24 18:23:48 +02006567 WARN_ON(sd_ctl_dir[0].child);
6568 sd_ctl_dir[0].child = entry;
6569
Milton Millerad1cdc12007-10-15 17:00:19 +02006570 if (entry == NULL)
6571 return;
6572
Milton Miller97b6ea72007-10-15 17:00:19 +02006573 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006574 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006575 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006576 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006577 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006578 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006579 }
Milton Miller73785472007-10-24 18:23:48 +02006580
6581 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006582 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6583}
Milton Miller6382bc92007-10-15 17:00:19 +02006584
Milton Miller73785472007-10-24 18:23:48 +02006585/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006586static void unregister_sched_domain_sysctl(void)
6587{
Milton Miller73785472007-10-24 18:23:48 +02006588 if (sd_sysctl_header)
6589 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006590 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006591 if (sd_ctl_dir[0].child)
6592 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006593}
Nick Piggine692ab52007-07-26 13:40:43 +02006594#else
Milton Miller6382bc92007-10-15 17:00:19 +02006595static void register_sched_domain_sysctl(void)
6596{
6597}
6598static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006599{
6600}
6601#endif
6602
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006603static void set_rq_online(struct rq *rq)
6604{
6605 if (!rq->online) {
6606 const struct sched_class *class;
6607
Rusty Russellc6c49272008-11-25 02:35:05 +10306608 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006609 rq->online = 1;
6610
6611 for_each_class(class) {
6612 if (class->rq_online)
6613 class->rq_online(rq);
6614 }
6615 }
6616}
6617
6618static void set_rq_offline(struct rq *rq)
6619{
6620 if (rq->online) {
6621 const struct sched_class *class;
6622
6623 for_each_class(class) {
6624 if (class->rq_offline)
6625 class->rq_offline(rq);
6626 }
6627
Rusty Russellc6c49272008-11-25 02:35:05 +10306628 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006629 rq->online = 0;
6630 }
6631}
6632
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633/*
6634 * migration_call - callback that gets triggered when a CPU is added.
6635 * Here we can start up the necessary migration thread for the new CPU.
6636 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006637static int __cpuinit
6638migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006640 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006641 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006643 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644
6645 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006646
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006648 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006649 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650 if (IS_ERR(p))
6651 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652 kthread_bind(p, cpu);
6653 /* Must be high prio: stop_machine expects to yield to it. */
6654 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006655 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656 task_rq_unlock(rq, &flags);
6657 cpu_rq(cpu)->migration_thread = p;
6658 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006659
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006661 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006662 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006664
6665 /* Update our root-domain */
6666 rq = cpu_rq(cpu);
6667 spin_lock_irqsave(&rq->lock, flags);
6668 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306669 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006670
6671 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006672 }
6673 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006675
Linus Torvalds1da177e2005-04-16 15:20:36 -07006676#ifdef CONFIG_HOTPLUG_CPU
6677 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006678 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006679 if (!cpu_rq(cpu)->migration_thread)
6680 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006681 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006682 kthread_bind(cpu_rq(cpu)->migration_thread,
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10306683 cpumask_any(cpu_online_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006684 kthread_stop(cpu_rq(cpu)->migration_thread);
6685 cpu_rq(cpu)->migration_thread = NULL;
6686 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006687
Linus Torvalds1da177e2005-04-16 15:20:36 -07006688 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006689 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006690 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691 migrate_live_tasks(cpu);
6692 rq = cpu_rq(cpu);
6693 kthread_stop(rq->migration_thread);
6694 rq->migration_thread = NULL;
6695 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006696 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006697 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006698 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006699 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006700 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6701 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006702 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006703 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006704 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705 migrate_nr_uninterruptible(rq);
6706 BUG_ON(rq->nr_running != 0);
6707
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006708 /*
6709 * No need to migrate the tasks: it was best-effort if
6710 * they didn't take sched_hotcpu_mutex. Just wake up
6711 * the requestors.
6712 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713 spin_lock_irq(&rq->lock);
6714 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006715 struct migration_req *req;
6716
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006718 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006719 list_del_init(&req->list);
Brian King9a2bd242008-12-09 08:47:00 -06006720 spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721 complete(&req->done);
Brian King9a2bd242008-12-09 08:47:00 -06006722 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723 }
6724 spin_unlock_irq(&rq->lock);
6725 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006726
Gregory Haskins08f503b2008-03-10 17:59:11 -04006727 case CPU_DYING:
6728 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006729 /* Update our root-domain */
6730 rq = cpu_rq(cpu);
6731 spin_lock_irqsave(&rq->lock, flags);
6732 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306733 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006734 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006735 }
6736 spin_unlock_irqrestore(&rq->lock, flags);
6737 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738#endif
6739 }
6740 return NOTIFY_OK;
6741}
6742
6743/* Register at highest priority so that task migration (migrate_all_tasks)
6744 * happens before everything else.
6745 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006746static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747 .notifier_call = migration_call,
6748 .priority = 10
6749};
6750
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006751static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752{
6753 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006754 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006755
6756 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006757 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6758 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6760 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006761
6762 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006764early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765#endif
6766
6767#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006768
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006769#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006770
Mike Travis7c16ec52008-04-04 18:11:11 -07006771static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e2008-11-25 02:35:14 +10306772 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006773{
6774 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006775 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006776
Rusty Russell968ea6d2008-12-13 21:55:51 +10306777 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e2008-11-25 02:35:14 +10306778 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006779
6780 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6781
6782 if (!(sd->flags & SD_LOAD_BALANCE)) {
6783 printk("does not load-balance\n");
6784 if (sd->parent)
6785 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6786 " has parent");
6787 return -1;
6788 }
6789
Li Zefaneefd7962008-11-04 16:15:37 +08006790 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006791
Rusty Russell758b2cd2008-11-25 02:35:04 +10306792 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006793 printk(KERN_ERR "ERROR: domain->span does not contain "
6794 "CPU%d\n", cpu);
6795 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10306796 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006797 printk(KERN_ERR "ERROR: domain->groups does not contain"
6798 " CPU%d\n", cpu);
6799 }
6800
6801 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6802 do {
6803 if (!group) {
6804 printk("\n");
6805 printk(KERN_ERR "ERROR: group is NULL\n");
6806 break;
6807 }
6808
6809 if (!group->__cpu_power) {
6810 printk(KERN_CONT "\n");
6811 printk(KERN_ERR "ERROR: domain->cpu_power not "
6812 "set\n");
6813 break;
6814 }
6815
Rusty Russell758b2cd2008-11-25 02:35:04 +10306816 if (!cpumask_weight(sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006817 printk(KERN_CONT "\n");
6818 printk(KERN_ERR "ERROR: empty group\n");
6819 break;
6820 }
6821
Rusty Russell758b2cd2008-11-25 02:35:04 +10306822 if (cpumask_intersects(groupmask, sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006823 printk(KERN_CONT "\n");
6824 printk(KERN_ERR "ERROR: repeated CPUs\n");
6825 break;
6826 }
6827
Rusty Russell758b2cd2008-11-25 02:35:04 +10306828 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006829
Rusty Russell968ea6d2008-12-13 21:55:51 +10306830 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006831 printk(KERN_CONT " %s", str);
6832
6833 group = group->next;
6834 } while (group != sd->groups);
6835 printk(KERN_CONT "\n");
6836
Rusty Russell758b2cd2008-11-25 02:35:04 +10306837 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006838 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6839
Rusty Russell758b2cd2008-11-25 02:35:04 +10306840 if (sd->parent &&
6841 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006842 printk(KERN_ERR "ERROR: parent span is not a superset "
6843 "of domain->span\n");
6844 return 0;
6845}
6846
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847static void sched_domain_debug(struct sched_domain *sd, int cpu)
6848{
Rusty Russelld5dd3db2008-11-25 02:35:12 +10306849 cpumask_var_t groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006850 int level = 0;
6851
Nick Piggin41c7ce92005-06-25 14:57:24 -07006852 if (!sd) {
6853 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6854 return;
6855 }
6856
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6858
Rusty Russelld5dd3db2008-11-25 02:35:12 +10306859 if (!alloc_cpumask_var(&groupmask, GFP_KERNEL)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006860 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6861 return;
6862 }
6863
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006864 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006865 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867 level++;
6868 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006869 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006870 break;
6871 }
Rusty Russelld5dd3db2008-11-25 02:35:12 +10306872 free_cpumask_var(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006874#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006875# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006876#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006878static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006879{
Rusty Russell758b2cd2008-11-25 02:35:04 +10306880 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006881 return 1;
6882
6883 /* Following flags need at least 2 groups */
6884 if (sd->flags & (SD_LOAD_BALANCE |
6885 SD_BALANCE_NEWIDLE |
6886 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006887 SD_BALANCE_EXEC |
6888 SD_SHARE_CPUPOWER |
6889 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006890 if (sd->groups != sd->groups->next)
6891 return 0;
6892 }
6893
6894 /* Following flags don't use groups */
6895 if (sd->flags & (SD_WAKE_IDLE |
6896 SD_WAKE_AFFINE |
6897 SD_WAKE_BALANCE))
6898 return 0;
6899
6900 return 1;
6901}
6902
Ingo Molnar48f24c42006-07-03 00:25:40 -07006903static int
6904sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006905{
6906 unsigned long cflags = sd->flags, pflags = parent->flags;
6907
6908 if (sd_degenerate(parent))
6909 return 1;
6910
Rusty Russell758b2cd2008-11-25 02:35:04 +10306911 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07006912 return 0;
6913
6914 /* Does parent contain flags not in child? */
6915 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6916 if (cflags & SD_WAKE_AFFINE)
6917 pflags &= ~SD_WAKE_BALANCE;
6918 /* Flags needing groups don't count if only 1 group in parent */
6919 if (parent->groups == parent->groups->next) {
6920 pflags &= ~(SD_LOAD_BALANCE |
6921 SD_BALANCE_NEWIDLE |
6922 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006923 SD_BALANCE_EXEC |
6924 SD_SHARE_CPUPOWER |
6925 SD_SHARE_PKG_RESOURCES);
Ken Chen54364992008-12-07 18:47:37 -08006926 if (nr_node_ids == 1)
6927 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07006928 }
6929 if (~cflags & pflags)
6930 return 0;
6931
6932 return 1;
6933}
6934
Rusty Russellc6c49272008-11-25 02:35:05 +10306935static void free_rootdomain(struct root_domain *rd)
6936{
Rusty Russell68e74562008-11-25 02:35:13 +10306937 cpupri_cleanup(&rd->cpupri);
6938
Rusty Russellc6c49272008-11-25 02:35:05 +10306939 free_cpumask_var(rd->rto_mask);
6940 free_cpumask_var(rd->online);
6941 free_cpumask_var(rd->span);
6942 kfree(rd);
6943}
6944
Gregory Haskins57d885f2008-01-25 21:08:18 +01006945static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6946{
6947 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006948
6949 spin_lock_irqsave(&rq->lock, flags);
6950
6951 if (rq->rd) {
6952 struct root_domain *old_rd = rq->rd;
6953
Rusty Russellc6c49272008-11-25 02:35:05 +10306954 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006955 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006956
Rusty Russellc6c49272008-11-25 02:35:05 +10306957 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006958
Gregory Haskins57d885f2008-01-25 21:08:18 +01006959 if (atomic_dec_and_test(&old_rd->refcount))
Rusty Russellc6c49272008-11-25 02:35:05 +10306960 free_rootdomain(old_rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006961 }
6962
6963 atomic_inc(&rd->refcount);
6964 rq->rd = rd;
6965
Rusty Russellc6c49272008-11-25 02:35:05 +10306966 cpumask_set_cpu(rq->cpu, rd->span);
6967 if (cpumask_test_cpu(rq->cpu, cpu_online_mask))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006968 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006969
6970 spin_unlock_irqrestore(&rq->lock, flags);
6971}
6972
Rusty Russellc6c49272008-11-25 02:35:05 +10306973static int init_rootdomain(struct root_domain *rd, bool bootmem)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006974{
6975 memset(rd, 0, sizeof(*rd));
6976
Rusty Russellc6c49272008-11-25 02:35:05 +10306977 if (bootmem) {
6978 alloc_bootmem_cpumask_var(&def_root_domain.span);
6979 alloc_bootmem_cpumask_var(&def_root_domain.online);
6980 alloc_bootmem_cpumask_var(&def_root_domain.rto_mask);
Rusty Russell68e74562008-11-25 02:35:13 +10306981 cpupri_init(&rd->cpupri, true);
Rusty Russellc6c49272008-11-25 02:35:05 +10306982 return 0;
6983 }
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006984
Rusty Russellc6c49272008-11-25 02:35:05 +10306985 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
6986 goto free_rd;
6987 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
6988 goto free_span;
6989 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
6990 goto free_online;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006991
Rusty Russell68e74562008-11-25 02:35:13 +10306992 if (cpupri_init(&rd->cpupri, false) != 0)
6993 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10306994 return 0;
6995
Rusty Russell68e74562008-11-25 02:35:13 +10306996free_rto_mask:
6997 free_cpumask_var(rd->rto_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10306998free_online:
6999 free_cpumask_var(rd->online);
7000free_span:
7001 free_cpumask_var(rd->span);
7002free_rd:
7003 kfree(rd);
7004 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007005}
7006
7007static void init_defrootdomain(void)
7008{
Rusty Russellc6c49272008-11-25 02:35:05 +10307009 init_rootdomain(&def_root_domain, true);
7010
Gregory Haskins57d885f2008-01-25 21:08:18 +01007011 atomic_set(&def_root_domain.refcount, 1);
7012}
7013
Gregory Haskinsdc938522008-01-25 21:08:26 +01007014static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007015{
7016 struct root_domain *rd;
7017
7018 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
7019 if (!rd)
7020 return NULL;
7021
Rusty Russellc6c49272008-11-25 02:35:05 +10307022 if (init_rootdomain(rd, false) != 0) {
7023 kfree(rd);
7024 return NULL;
7025 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01007026
7027 return rd;
7028}
7029
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01007031 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032 * hold the hotplug lock.
7033 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01007034static void
7035cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007037 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07007038 struct sched_domain *tmp;
7039
7040 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08007041 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007042 struct sched_domain *parent = tmp->parent;
7043 if (!parent)
7044 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08007045
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007046 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007047 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007048 if (parent->parent)
7049 parent->parent->child = tmp;
Li Zefanf29c9b12008-11-06 09:45:16 +08007050 } else
7051 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07007052 }
7053
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007054 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007055 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007056 if (sd)
7057 sd->child = NULL;
7058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059
7060 sched_domain_debug(sd, cpu);
7061
Gregory Haskins57d885f2008-01-25 21:08:18 +01007062 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07007063 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064}
7065
7066/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10307067static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068
7069/* Setup the mask of cpus configured for isolated domains */
7070static int __init isolated_cpu_setup(char *str)
7071{
Rusty Russell968ea6d2008-12-13 21:55:51 +10307072 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073 return 1;
7074}
7075
Ingo Molnar8927f492007-10-15 17:00:13 +02007076__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077
7078/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007079 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
7080 * to a function which identifies what group(along with sched group) a CPU
Rusty Russell96f874e2008-11-25 02:35:14 +10307081 * belongs to. The return value of group_fn must be a >= 0 and < nr_cpu_ids
7082 * (due to the fact that we keep track of groups covered with a struct cpumask).
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083 *
7084 * init_sched_build_groups will build a circular linked list of the groups
7085 * covered by the given span, and will set each group's ->cpumask correctly,
7086 * and ->cpu_power to 0.
7087 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007088static void
Rusty Russell96f874e2008-11-25 02:35:14 +10307089init_sched_build_groups(const struct cpumask *span,
7090 const struct cpumask *cpu_map,
7091 int (*group_fn)(int cpu, const struct cpumask *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007092 struct sched_group **sg,
Rusty Russell96f874e2008-11-25 02:35:14 +10307093 struct cpumask *tmpmask),
7094 struct cpumask *covered, struct cpumask *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007095{
7096 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007097 int i;
7098
Rusty Russell96f874e2008-11-25 02:35:14 +10307099 cpumask_clear(covered);
Mike Travis7c16ec52008-04-04 18:11:11 -07007100
Rusty Russellabcd0832008-11-25 02:35:02 +10307101 for_each_cpu(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007102 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007103 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007104 int j;
7105
Rusty Russell758b2cd2008-11-25 02:35:04 +10307106 if (cpumask_test_cpu(i, covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107 continue;
7108
Rusty Russell758b2cd2008-11-25 02:35:04 +10307109 cpumask_clear(sched_group_cpus(sg));
Eric Dumazet5517d862007-05-08 00:32:57 -07007110 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007111
Rusty Russellabcd0832008-11-25 02:35:02 +10307112 for_each_cpu(j, span) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007113 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007114 continue;
7115
Rusty Russell96f874e2008-11-25 02:35:14 +10307116 cpumask_set_cpu(j, covered);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307117 cpumask_set_cpu(j, sched_group_cpus(sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007118 }
7119 if (!first)
7120 first = sg;
7121 if (last)
7122 last->next = sg;
7123 last = sg;
7124 }
7125 last->next = first;
7126}
7127
John Hawkes9c1cfda2005-09-06 15:18:14 -07007128#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07007129
John Hawkes9c1cfda2005-09-06 15:18:14 -07007130#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08007131
John Hawkes9c1cfda2005-09-06 15:18:14 -07007132/**
7133 * find_next_best_node - find the next node to include in a sched_domain
7134 * @node: node whose sched_domain we're building
7135 * @used_nodes: nodes already in the sched_domain
7136 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007137 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07007138 * finds the closest node not already in the @used_nodes map.
7139 *
7140 * Should use nodemask_t.
7141 */
Mike Travisc5f59f02008-04-04 18:11:10 -07007142static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007143{
7144 int i, n, val, min_val, best_node = 0;
7145
7146 min_val = INT_MAX;
7147
Mike Travis076ac2a2008-05-12 21:21:12 +02007148 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007149 /* Start at @node */
Mike Travis076ac2a2008-05-12 21:21:12 +02007150 n = (node + i) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007151
7152 if (!nr_cpus_node(n))
7153 continue;
7154
7155 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07007156 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007157 continue;
7158
7159 /* Simple min distance search */
7160 val = node_distance(node, n);
7161
7162 if (val < min_val) {
7163 min_val = val;
7164 best_node = n;
7165 }
7166 }
7167
Mike Travisc5f59f02008-04-04 18:11:10 -07007168 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007169 return best_node;
7170}
7171
7172/**
7173 * sched_domain_node_span - get a cpumask for a node's sched_domain
7174 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07007175 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07007176 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007177 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07007178 * should be one that prevents unnecessary balancing, but also spreads tasks
7179 * out optimally.
7180 */
Rusty Russell96f874e2008-11-25 02:35:14 +10307181static void sched_domain_node_span(int node, struct cpumask *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007182{
Mike Travisc5f59f02008-04-04 18:11:10 -07007183 nodemask_t used_nodes;
Rusty Russell96f874e2008-11-25 02:35:14 +10307184 /* FIXME: use cpumask_of_node() */
Mike Travisc5f59f02008-04-04 18:11:10 -07007185 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007186 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007187
Mike Travis4bdbaad2008-04-15 16:35:52 -07007188 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07007189 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007190
Mike Travis4bdbaad2008-04-15 16:35:52 -07007191 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07007192 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007193
7194 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07007195 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007196
Mike Travisc5f59f02008-04-04 18:11:10 -07007197 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad2008-04-15 16:35:52 -07007198 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007199 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007200}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007201#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007202
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007203int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007204
John Hawkes9c1cfda2005-09-06 15:18:14 -07007205/*
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307206 * The cpus mask in sched_group and sched_domain hangs off the end.
7207 * FIXME: use cpumask_var_t or dynamic percpu alloc to avoid wasting space
7208 * for nr_cpu_ids < CONFIG_NR_CPUS.
7209 */
7210struct static_sched_group {
7211 struct sched_group sg;
7212 DECLARE_BITMAP(cpus, CONFIG_NR_CPUS);
7213};
7214
7215struct static_sched_domain {
7216 struct sched_domain sd;
7217 DECLARE_BITMAP(span, CONFIG_NR_CPUS);
7218};
7219
7220/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07007221 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07007222 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007223#ifdef CONFIG_SCHED_SMT
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307224static DEFINE_PER_CPU(struct static_sched_domain, cpu_domains);
7225static DEFINE_PER_CPU(struct static_sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007226
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007227static int
Rusty Russell96f874e2008-11-25 02:35:14 +10307228cpu_to_cpu_group(int cpu, const struct cpumask *cpu_map,
7229 struct sched_group **sg, struct cpumask *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007230{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007231 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307232 *sg = &per_cpu(sched_group_cpus, cpu).sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007233 return cpu;
7234}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007235#endif /* CONFIG_SCHED_SMT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007236
Ingo Molnar48f24c42006-07-03 00:25:40 -07007237/*
7238 * multi-core sched-domains:
7239 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007240#ifdef CONFIG_SCHED_MC
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307241static DEFINE_PER_CPU(struct static_sched_domain, core_domains);
7242static DEFINE_PER_CPU(struct static_sched_group, sched_group_core);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007243#endif /* CONFIG_SCHED_MC */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007244
7245#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007246static int
Rusty Russell96f874e2008-11-25 02:35:14 +10307247cpu_to_core_group(int cpu, const struct cpumask *cpu_map,
7248 struct sched_group **sg, struct cpumask *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007249{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007250 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07007251
Rusty Russell96f874e2008-11-25 02:35:14 +10307252 cpumask_and(mask, &per_cpu(cpu_sibling_map, cpu), cpu_map);
7253 group = cpumask_first(mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007254 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307255 *sg = &per_cpu(sched_group_core, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007256 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007257}
7258#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007259static int
Rusty Russell96f874e2008-11-25 02:35:14 +10307260cpu_to_core_group(int cpu, const struct cpumask *cpu_map,
7261 struct sched_group **sg, struct cpumask *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007262{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007263 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307264 *sg = &per_cpu(sched_group_core, cpu).sg;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007265 return cpu;
7266}
7267#endif
7268
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307269static DEFINE_PER_CPU(struct static_sched_domain, phys_domains);
7270static DEFINE_PER_CPU(struct static_sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007271
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007272static int
Rusty Russell96f874e2008-11-25 02:35:14 +10307273cpu_to_phys_group(int cpu, const struct cpumask *cpu_map,
7274 struct sched_group **sg, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007276 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007277#ifdef CONFIG_SCHED_MC
Rusty Russell96f874e2008-11-25 02:35:14 +10307278 /* FIXME: Use cpu_coregroup_mask. */
Mike Travis7c16ec52008-04-04 18:11:11 -07007279 *mask = cpu_coregroup_map(cpu);
7280 cpus_and(*mask, *mask, *cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10307281 group = cpumask_first(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007282#elif defined(CONFIG_SCHED_SMT)
Rusty Russell96f874e2008-11-25 02:35:14 +10307283 cpumask_and(mask, &per_cpu(cpu_sibling_map, cpu), cpu_map);
7284 group = cpumask_first(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007285#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007286 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007288 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307289 *sg = &per_cpu(sched_group_phys, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007290 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007291}
7292
7293#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07007294/*
7295 * The init_sched_build_groups can't handle what we want to do with node
7296 * groups, so roll our own. Now each node has its own list of groups which
7297 * gets dynamically allocated.
7298 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007299static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07007300static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007301
7302static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307303static DEFINE_PER_CPU(struct static_sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007304
Rusty Russell96f874e2008-11-25 02:35:14 +10307305static int cpu_to_allnodes_group(int cpu, const struct cpumask *cpu_map,
7306 struct sched_group **sg,
7307 struct cpumask *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007309 int group;
Rusty Russell96f874e2008-11-25 02:35:14 +10307310 /* FIXME: use cpumask_of_node */
Mike Travisea6f18e2008-11-25 02:35:02 +10307311 node_to_cpumask_ptr(pnodemask, cpu_to_node(cpu));
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007312
Rusty Russell96f874e2008-11-25 02:35:14 +10307313 cpumask_and(nodemask, pnodemask, cpu_map);
7314 group = cpumask_first(nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007315
7316 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307317 *sg = &per_cpu(sched_group_allnodes, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007318 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007320
Siddha, Suresh B08069032006-03-27 01:15:23 -08007321static void init_numa_sched_groups_power(struct sched_group *group_head)
7322{
7323 struct sched_group *sg = group_head;
7324 int j;
7325
7326 if (!sg)
7327 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007328 do {
Rusty Russell758b2cd2008-11-25 02:35:04 +10307329 for_each_cpu(j, sched_group_cpus(sg)) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02007330 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007331
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307332 sd = &per_cpu(phys_domains, j).sd;
Rusty Russell758b2cd2008-11-25 02:35:04 +10307333 if (j != cpumask_first(sched_group_cpus(sd->groups))) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02007334 /*
7335 * Only add "power" once for each
7336 * physical package.
7337 */
7338 continue;
7339 }
7340
7341 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007342 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007343 sg = sg->next;
7344 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007345}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007346#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007347
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007348#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007349/* Free memory allocated for various sched_group structures */
Rusty Russell96f874e2008-11-25 02:35:14 +10307350static void free_sched_groups(const struct cpumask *cpu_map,
7351 struct cpumask *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007352{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007353 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007354
Rusty Russellabcd0832008-11-25 02:35:02 +10307355 for_each_cpu(cpu, cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007356 struct sched_group **sched_group_nodes
7357 = sched_group_nodes_bycpu[cpu];
7358
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007359 if (!sched_group_nodes)
7360 continue;
7361
Mike Travis076ac2a2008-05-12 21:21:12 +02007362 for (i = 0; i < nr_node_ids; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007363 struct sched_group *oldsg, *sg = sched_group_nodes[i];
Rusty Russell96f874e2008-11-25 02:35:14 +10307364 /* FIXME: Use cpumask_of_node */
Mike Travisea6f18e2008-11-25 02:35:02 +10307365 node_to_cpumask_ptr(pnodemask, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007366
Mike Travisea6f18e2008-11-25 02:35:02 +10307367 cpus_and(*nodemask, *pnodemask, *cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10307368 if (cpumask_empty(nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007369 continue;
7370
7371 if (sg == NULL)
7372 continue;
7373 sg = sg->next;
7374next_sg:
7375 oldsg = sg;
7376 sg = sg->next;
7377 kfree(oldsg);
7378 if (oldsg != sched_group_nodes[i])
7379 goto next_sg;
7380 }
7381 kfree(sched_group_nodes);
7382 sched_group_nodes_bycpu[cpu] = NULL;
7383 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007384}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007385#else /* !CONFIG_NUMA */
Rusty Russell96f874e2008-11-25 02:35:14 +10307386static void free_sched_groups(const struct cpumask *cpu_map,
7387 struct cpumask *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007388{
7389}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007390#endif /* CONFIG_NUMA */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007391
Linus Torvalds1da177e2005-04-16 15:20:36 -07007392/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007393 * Initialize sched groups cpu_power.
7394 *
7395 * cpu_power indicates the capacity of sched group, which is used while
7396 * distributing the load between different sched groups in a sched domain.
7397 * Typically cpu_power for all the groups in a sched domain will be same unless
7398 * there are asymmetries in the topology. If there are asymmetries, group
7399 * having more cpu_power will pickup more load compared to the group having
7400 * less cpu_power.
7401 *
7402 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7403 * the maximum number of tasks a group can handle in the presence of other idle
7404 * or lightly loaded groups in the same sched domain.
7405 */
7406static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7407{
7408 struct sched_domain *child;
7409 struct sched_group *group;
7410
7411 WARN_ON(!sd || !sd->groups);
7412
Rusty Russell758b2cd2008-11-25 02:35:04 +10307413 if (cpu != cpumask_first(sched_group_cpus(sd->groups)))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007414 return;
7415
7416 child = sd->child;
7417
Eric Dumazet5517d862007-05-08 00:32:57 -07007418 sd->groups->__cpu_power = 0;
7419
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007420 /*
7421 * For perf policy, if the groups in child domain share resources
7422 * (for example cores sharing some portions of the cache hierarchy
7423 * or SMT), then set this domain groups cpu_power such that each group
7424 * can handle only one task, when there are other idle groups in the
7425 * same sched domain.
7426 */
7427 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7428 (child->flags &
7429 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007430 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007431 return;
7432 }
7433
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007434 /*
7435 * add cpu_power of each child group to this groups cpu_power
7436 */
7437 group = child->groups;
7438 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007439 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007440 group = group->next;
7441 } while (group != child->groups);
7442}
7443
7444/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007445 * Initializers for schedule domains
7446 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7447 */
7448
Ingo Molnara5d8c342008-10-09 11:35:51 +02007449#ifdef CONFIG_SCHED_DEBUG
7450# define SD_INIT_NAME(sd, type) sd->name = #type
7451#else
7452# define SD_INIT_NAME(sd, type) do { } while (0)
7453#endif
7454
Mike Travis7c16ec52008-04-04 18:11:11 -07007455#define SD_INIT(sd, type) sd_init_##type(sd)
Ingo Molnara5d8c342008-10-09 11:35:51 +02007456
Mike Travis7c16ec52008-04-04 18:11:11 -07007457#define SD_INIT_FUNC(type) \
7458static noinline void sd_init_##type(struct sched_domain *sd) \
7459{ \
7460 memset(sd, 0, sizeof(*sd)); \
7461 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007462 sd->level = SD_LV_##type; \
Ingo Molnara5d8c342008-10-09 11:35:51 +02007463 SD_INIT_NAME(sd, type); \
Mike Travis7c16ec52008-04-04 18:11:11 -07007464}
7465
7466SD_INIT_FUNC(CPU)
7467#ifdef CONFIG_NUMA
7468 SD_INIT_FUNC(ALLNODES)
7469 SD_INIT_FUNC(NODE)
7470#endif
7471#ifdef CONFIG_SCHED_SMT
7472 SD_INIT_FUNC(SIBLING)
7473#endif
7474#ifdef CONFIG_SCHED_MC
7475 SD_INIT_FUNC(MC)
7476#endif
7477
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007478static int default_relax_domain_level = -1;
7479
7480static int __init setup_relax_domain_level(char *str)
7481{
Li Zefan30e0e172008-05-13 10:27:17 +08007482 unsigned long val;
7483
7484 val = simple_strtoul(str, NULL, 0);
7485 if (val < SD_LV_MAX)
7486 default_relax_domain_level = val;
7487
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007488 return 1;
7489}
7490__setup("relax_domain_level=", setup_relax_domain_level);
7491
7492static void set_domain_attribute(struct sched_domain *sd,
7493 struct sched_domain_attr *attr)
7494{
7495 int request;
7496
7497 if (!attr || attr->relax_domain_level < 0) {
7498 if (default_relax_domain_level < 0)
7499 return;
7500 else
7501 request = default_relax_domain_level;
7502 } else
7503 request = attr->relax_domain_level;
7504 if (request < sd->level) {
7505 /* turn off idle balance on this domain */
7506 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7507 } else {
7508 /* turn on idle balance on this domain */
7509 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7510 }
7511}
7512
Mike Travis7c16ec52008-04-04 18:11:11 -07007513/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007514 * Build sched domains for a given set of cpus and attach the sched domains
7515 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516 */
Rusty Russell96f874e2008-11-25 02:35:14 +10307517static int __build_sched_domains(const struct cpumask *cpu_map,
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007518 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519{
Rusty Russell3404c8d2008-11-25 02:35:03 +10307520 int i, err = -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007521 struct root_domain *rd;
Rusty Russell3404c8d2008-11-25 02:35:03 +10307522 cpumask_var_t nodemask, this_sibling_map, this_core_map, send_covered,
7523 tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007524#ifdef CONFIG_NUMA
Rusty Russell3404c8d2008-11-25 02:35:03 +10307525 cpumask_var_t domainspan, covered, notcovered;
John Hawkesd1b55132005-09-06 15:18:14 -07007526 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007527 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007528
Rusty Russell3404c8d2008-11-25 02:35:03 +10307529 if (!alloc_cpumask_var(&domainspan, GFP_KERNEL))
7530 goto out;
7531 if (!alloc_cpumask_var(&covered, GFP_KERNEL))
7532 goto free_domainspan;
7533 if (!alloc_cpumask_var(&notcovered, GFP_KERNEL))
7534 goto free_covered;
7535#endif
7536
7537 if (!alloc_cpumask_var(&nodemask, GFP_KERNEL))
7538 goto free_notcovered;
7539 if (!alloc_cpumask_var(&this_sibling_map, GFP_KERNEL))
7540 goto free_nodemask;
7541 if (!alloc_cpumask_var(&this_core_map, GFP_KERNEL))
7542 goto free_this_sibling_map;
7543 if (!alloc_cpumask_var(&send_covered, GFP_KERNEL))
7544 goto free_this_core_map;
7545 if (!alloc_cpumask_var(&tmpmask, GFP_KERNEL))
7546 goto free_send_covered;
7547
7548#ifdef CONFIG_NUMA
John Hawkesd1b55132005-09-06 15:18:14 -07007549 /*
7550 * Allocate the per-node list of sched groups
7551 */
Mike Travis076ac2a2008-05-12 21:21:12 +02007552 sched_group_nodes = kcalloc(nr_node_ids, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007553 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007554 if (!sched_group_nodes) {
7555 printk(KERN_WARNING "Can not alloc sched group node list\n");
Rusty Russell3404c8d2008-11-25 02:35:03 +10307556 goto free_tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007557 }
John Hawkesd1b55132005-09-06 15:18:14 -07007558#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559
Gregory Haskinsdc938522008-01-25 21:08:26 +01007560 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007561 if (!rd) {
7562 printk(KERN_WARNING "Cannot alloc root domain\n");
Rusty Russell3404c8d2008-11-25 02:35:03 +10307563 goto free_sched_groups;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007564 }
7565
Mike Travis7c16ec52008-04-04 18:11:11 -07007566#ifdef CONFIG_NUMA
Rusty Russell96f874e2008-11-25 02:35:14 +10307567 sched_group_nodes_bycpu[cpumask_first(cpu_map)] = sched_group_nodes;
Mike Travis7c16ec52008-04-04 18:11:11 -07007568#endif
7569
Linus Torvalds1da177e2005-04-16 15:20:36 -07007570 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007571 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572 */
Rusty Russellabcd0832008-11-25 02:35:02 +10307573 for_each_cpu(i, cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007574 struct sched_domain *sd = NULL, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007575
Rusty Russell96f874e2008-11-25 02:35:14 +10307576 /* FIXME: use cpumask_of_node */
Mike Travis7c16ec52008-04-04 18:11:11 -07007577 *nodemask = node_to_cpumask(cpu_to_node(i));
7578 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007579
7580#ifdef CONFIG_NUMA
Rusty Russell96f874e2008-11-25 02:35:14 +10307581 if (cpumask_weight(cpu_map) >
7582 SD_NODES_PER_DOMAIN*cpumask_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007583 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007584 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007585 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307586 cpumask_copy(sched_domain_span(sd), cpu_map);
Mike Travis7c16ec52008-04-04 18:11:11 -07007587 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007588 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007589 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007590 } else
7591 p = NULL;
7592
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007594 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007595 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307596 sched_domain_node_span(cpu_to_node(i), sched_domain_span(sd));
John Hawkes9c1cfda2005-09-06 15:18:14 -07007597 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007598 if (p)
7599 p->child = sd;
Rusty Russell758b2cd2008-11-25 02:35:04 +10307600 cpumask_and(sched_domain_span(sd),
7601 sched_domain_span(sd), cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602#endif
7603
7604 p = sd;
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307605 sd = &per_cpu(phys_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007606 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007607 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307608 cpumask_copy(sched_domain_span(sd), nodemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007609 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007610 if (p)
7611 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007612 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007614#ifdef CONFIG_SCHED_MC
7615 p = sd;
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307616 sd = &per_cpu(core_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007617 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007618 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307619 *sched_domain_span(sd) = cpu_coregroup_map(i);
7620 cpumask_and(sched_domain_span(sd),
7621 sched_domain_span(sd), cpu_map);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007622 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007623 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007624 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007625#endif
7626
Linus Torvalds1da177e2005-04-16 15:20:36 -07007627#ifdef CONFIG_SCHED_SMT
7628 p = sd;
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307629 sd = &per_cpu(cpu_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007630 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007631 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307632 cpumask_and(sched_domain_span(sd),
7633 &per_cpu(cpu_sibling_map, i), cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007634 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007635 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007636 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637#endif
7638 }
7639
7640#ifdef CONFIG_SCHED_SMT
7641 /* Set up CPU (sibling) groups */
Rusty Russellabcd0832008-11-25 02:35:02 +10307642 for_each_cpu(i, cpu_map) {
Rusty Russell96f874e2008-11-25 02:35:14 +10307643 cpumask_and(this_sibling_map,
7644 &per_cpu(cpu_sibling_map, i), cpu_map);
7645 if (i != cpumask_first(this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646 continue;
7647
Ingo Molnardd41f592007-07-09 18:51:59 +02007648 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007649 &cpu_to_cpu_group,
7650 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651 }
7652#endif
7653
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007654#ifdef CONFIG_SCHED_MC
7655 /* Set up multi-core groups */
Rusty Russellabcd0832008-11-25 02:35:02 +10307656 for_each_cpu(i, cpu_map) {
Rusty Russell96f874e2008-11-25 02:35:14 +10307657 /* FIXME: Use cpu_coregroup_mask */
Mike Travis7c16ec52008-04-04 18:11:11 -07007658 *this_core_map = cpu_coregroup_map(i);
7659 cpus_and(*this_core_map, *this_core_map, *cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10307660 if (i != cpumask_first(this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007661 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007662
Ingo Molnardd41f592007-07-09 18:51:59 +02007663 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007664 &cpu_to_core_group,
7665 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007666 }
7667#endif
7668
Linus Torvalds1da177e2005-04-16 15:20:36 -07007669 /* Set up physical groups */
Mike Travis076ac2a2008-05-12 21:21:12 +02007670 for (i = 0; i < nr_node_ids; i++) {
Rusty Russell96f874e2008-11-25 02:35:14 +10307671 /* FIXME: Use cpumask_of_node */
Mike Travis7c16ec52008-04-04 18:11:11 -07007672 *nodemask = node_to_cpumask(i);
7673 cpus_and(*nodemask, *nodemask, *cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10307674 if (cpumask_empty(nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675 continue;
7676
Mike Travis7c16ec52008-04-04 18:11:11 -07007677 init_sched_build_groups(nodemask, cpu_map,
7678 &cpu_to_phys_group,
7679 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680 }
7681
7682#ifdef CONFIG_NUMA
7683 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007684 if (sd_allnodes) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007685 init_sched_build_groups(cpu_map, cpu_map,
7686 &cpu_to_allnodes_group,
7687 send_covered, tmpmask);
7688 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007689
Mike Travis076ac2a2008-05-12 21:21:12 +02007690 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007691 /* Set up node groups */
7692 struct sched_group *sg, *prev;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007693 int j;
7694
Rusty Russell96f874e2008-11-25 02:35:14 +10307695 /* FIXME: Use cpumask_of_node */
Mike Travis7c16ec52008-04-04 18:11:11 -07007696 *nodemask = node_to_cpumask(i);
Rusty Russell96f874e2008-11-25 02:35:14 +10307697 cpumask_clear(covered);
Mike Travis7c16ec52008-04-04 18:11:11 -07007698
7699 cpus_and(*nodemask, *nodemask, *cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10307700 if (cpumask_empty(nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007701 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007702 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007703 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007704
Mike Travis4bdbaad2008-04-15 16:35:52 -07007705 sched_domain_node_span(i, domainspan);
Rusty Russell96f874e2008-11-25 02:35:14 +10307706 cpumask_and(domainspan, domainspan, cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007707
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307708 sg = kmalloc_node(sizeof(struct sched_group) + cpumask_size(),
7709 GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007710 if (!sg) {
7711 printk(KERN_WARNING "Can not alloc domain group for "
7712 "node %d\n", i);
7713 goto error;
7714 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007715 sched_group_nodes[i] = sg;
Rusty Russellabcd0832008-11-25 02:35:02 +10307716 for_each_cpu(j, nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007717 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007718
John Hawkes9c1cfda2005-09-06 15:18:14 -07007719 sd = &per_cpu(node_domains, j);
7720 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007721 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007722 sg->__cpu_power = 0;
Rusty Russell758b2cd2008-11-25 02:35:04 +10307723 cpumask_copy(sched_group_cpus(sg), nodemask);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007724 sg->next = sg;
Rusty Russell96f874e2008-11-25 02:35:14 +10307725 cpumask_or(covered, covered, nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007726 prev = sg;
7727
Mike Travis076ac2a2008-05-12 21:21:12 +02007728 for (j = 0; j < nr_node_ids; j++) {
Mike Travis076ac2a2008-05-12 21:21:12 +02007729 int n = (i + j) % nr_node_ids;
Rusty Russell96f874e2008-11-25 02:35:14 +10307730 /* FIXME: Use cpumask_of_node */
Mike Travisc5f59f02008-04-04 18:11:10 -07007731 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007732
Rusty Russell96f874e2008-11-25 02:35:14 +10307733 cpumask_complement(notcovered, covered);
7734 cpumask_and(tmpmask, notcovered, cpu_map);
7735 cpumask_and(tmpmask, tmpmask, domainspan);
7736 if (cpumask_empty(tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007737 break;
7738
Rusty Russell96f874e2008-11-25 02:35:14 +10307739 cpumask_and(tmpmask, tmpmask, pnodemask);
7740 if (cpumask_empty(tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007741 continue;
7742
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307743 sg = kmalloc_node(sizeof(struct sched_group) +
7744 cpumask_size(),
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007745 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007746 if (!sg) {
7747 printk(KERN_WARNING
7748 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007749 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007750 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007751 sg->__cpu_power = 0;
Rusty Russell758b2cd2008-11-25 02:35:04 +10307752 cpumask_copy(sched_group_cpus(sg), tmpmask);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007753 sg->next = prev->next;
Rusty Russell96f874e2008-11-25 02:35:14 +10307754 cpumask_or(covered, covered, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007755 prev->next = sg;
7756 prev = sg;
7757 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007759#endif
7760
7761 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007762#ifdef CONFIG_SCHED_SMT
Rusty Russellabcd0832008-11-25 02:35:02 +10307763 for_each_cpu(i, cpu_map) {
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307764 struct sched_domain *sd = &per_cpu(cpu_domains, i).sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02007765
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007766 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007767 }
7768#endif
7769#ifdef CONFIG_SCHED_MC
Rusty Russellabcd0832008-11-25 02:35:02 +10307770 for_each_cpu(i, cpu_map) {
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307771 struct sched_domain *sd = &per_cpu(core_domains, i).sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02007772
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007773 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007774 }
7775#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007776
Rusty Russellabcd0832008-11-25 02:35:02 +10307777 for_each_cpu(i, cpu_map) {
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307778 struct sched_domain *sd = &per_cpu(phys_domains, i).sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02007779
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007780 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007781 }
7782
John Hawkes9c1cfda2005-09-06 15:18:14 -07007783#ifdef CONFIG_NUMA
Mike Travis076ac2a2008-05-12 21:21:12 +02007784 for (i = 0; i < nr_node_ids; i++)
Siddha, Suresh B08069032006-03-27 01:15:23 -08007785 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007786
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007787 if (sd_allnodes) {
7788 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007789
Rusty Russell96f874e2008-11-25 02:35:14 +10307790 cpu_to_allnodes_group(cpumask_first(cpu_map), cpu_map, &sg,
Mike Travis7c16ec52008-04-04 18:11:11 -07007791 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007792 init_numa_sched_groups_power(sg);
7793 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007794#endif
7795
Linus Torvalds1da177e2005-04-16 15:20:36 -07007796 /* Attach the domains */
Rusty Russellabcd0832008-11-25 02:35:02 +10307797 for_each_cpu(i, cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007798 struct sched_domain *sd;
7799#ifdef CONFIG_SCHED_SMT
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307800 sd = &per_cpu(cpu_domains, i).sd;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007801#elif defined(CONFIG_SCHED_MC)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307802 sd = &per_cpu(core_domains, i).sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803#else
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307804 sd = &per_cpu(phys_domains, i).sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007806 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007808
Rusty Russell3404c8d2008-11-25 02:35:03 +10307809 err = 0;
7810
7811free_tmpmask:
7812 free_cpumask_var(tmpmask);
7813free_send_covered:
7814 free_cpumask_var(send_covered);
7815free_this_core_map:
7816 free_cpumask_var(this_core_map);
7817free_this_sibling_map:
7818 free_cpumask_var(this_sibling_map);
7819free_nodemask:
7820 free_cpumask_var(nodemask);
7821free_notcovered:
7822#ifdef CONFIG_NUMA
7823 free_cpumask_var(notcovered);
7824free_covered:
7825 free_cpumask_var(covered);
7826free_domainspan:
7827 free_cpumask_var(domainspan);
7828out:
7829#endif
7830 return err;
7831
7832free_sched_groups:
7833#ifdef CONFIG_NUMA
7834 kfree(sched_group_nodes);
7835#endif
7836 goto free_tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007837
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007838#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007839error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007840 free_sched_groups(cpu_map, tmpmask);
Rusty Russellc6c49272008-11-25 02:35:05 +10307841 free_rootdomain(rd);
Rusty Russell3404c8d2008-11-25 02:35:03 +10307842 goto free_tmpmask;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007843#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007844}
Paul Jackson029190c2007-10-18 23:40:20 -07007845
Rusty Russell96f874e2008-11-25 02:35:14 +10307846static int build_sched_domains(const struct cpumask *cpu_map)
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007847{
7848 return __build_sched_domains(cpu_map, NULL);
7849}
7850
Rusty Russell96f874e2008-11-25 02:35:14 +10307851static struct cpumask *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07007852static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007853static struct sched_domain_attr *dattr_cur;
7854 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007855
7856/*
7857 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10307858 * cpumask) fails, then fallback to a single sched domain,
7859 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07007860 */
Rusty Russell42128232008-11-25 02:35:12 +10307861static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07007862
Heiko Carstensee79d1b2008-12-09 18:49:50 +01007863/*
7864 * arch_update_cpu_topology lets virtualized architectures update the
7865 * cpu core maps. It is supposed to return 1 if the topology changed
7866 * or 0 if it stayed the same.
7867 */
7868int __attribute__((weak)) arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01007869{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01007870 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01007871}
7872
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007873/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007874 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007875 * For now this just excludes isolated cpus, but could be used to
7876 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007877 */
Rusty Russell96f874e2008-11-25 02:35:14 +10307878static int arch_init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007879{
Milton Miller73785472007-10-24 18:23:48 +02007880 int err;
7881
Heiko Carstens22e52b02008-03-12 18:31:59 +01007882 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007883 ndoms_cur = 1;
Rusty Russell96f874e2008-11-25 02:35:14 +10307884 doms_cur = kmalloc(cpumask_size(), GFP_KERNEL);
Paul Jackson029190c2007-10-18 23:40:20 -07007885 if (!doms_cur)
Rusty Russell42128232008-11-25 02:35:12 +10307886 doms_cur = fallback_doms;
Rusty Russelldcc30a32008-11-25 02:35:12 +10307887 cpumask_andnot(doms_cur, cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007888 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007889 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007890 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007891
7892 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007893}
7894
Rusty Russell96f874e2008-11-25 02:35:14 +10307895static void arch_destroy_sched_domains(const struct cpumask *cpu_map,
7896 struct cpumask *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897{
Mike Travis7c16ec52008-04-04 18:11:11 -07007898 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007899}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007900
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007901/*
7902 * Detach sched domains from a group of cpus specified in cpu_map
7903 * These cpus will now be attached to the NULL domain
7904 */
Rusty Russell96f874e2008-11-25 02:35:14 +10307905static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007906{
Rusty Russell96f874e2008-11-25 02:35:14 +10307907 /* Save because hotplug lock held. */
7908 static DECLARE_BITMAP(tmpmask, CONFIG_NR_CPUS);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007909 int i;
7910
Rusty Russellabcd0832008-11-25 02:35:02 +10307911 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007912 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007913 synchronize_sched();
Rusty Russell96f874e2008-11-25 02:35:14 +10307914 arch_destroy_sched_domains(cpu_map, to_cpumask(tmpmask));
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007915}
7916
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007917/* handle null as "default" */
7918static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7919 struct sched_domain_attr *new, int idx_new)
7920{
7921 struct sched_domain_attr tmp;
7922
7923 /* fast path */
7924 if (!new && !cur)
7925 return 1;
7926
7927 tmp = SD_ATTR_INIT;
7928 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7929 new ? (new + idx_new) : &tmp,
7930 sizeof(struct sched_domain_attr));
7931}
7932
Paul Jackson029190c2007-10-18 23:40:20 -07007933/*
7934 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007935 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007936 * doms_new[] to the current sched domain partitioning, doms_cur[].
7937 * It destroys each deleted domain and builds each new domain.
7938 *
Rusty Russell96f874e2008-11-25 02:35:14 +10307939 * 'doms_new' is an array of cpumask's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007940 * The masks don't intersect (don't overlap.) We should setup one
7941 * sched domain for each mask. CPUs not in any of the cpumasks will
7942 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007943 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7944 * it as it is.
7945 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007946 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7947 * ownership of it and will kfree it when done with it. If the caller
Li Zefan700018e2008-11-18 14:02:03 +08007948 * failed the kmalloc call, then it can pass in doms_new == NULL &&
7949 * ndoms_new == 1, and partition_sched_domains() will fallback to
7950 * the single partition 'fallback_doms', it also forces the domains
7951 * to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07007952 *
Rusty Russell96f874e2008-11-25 02:35:14 +10307953 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08007954 * ndoms_new == 0 is a special case for destroying existing domains,
7955 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007956 *
Paul Jackson029190c2007-10-18 23:40:20 -07007957 * Call with hotplug lock held
7958 */
Rusty Russell96f874e2008-11-25 02:35:14 +10307959/* FIXME: Change to struct cpumask *doms_new[] */
7960void partition_sched_domains(int ndoms_new, struct cpumask *doms_new,
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007961 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007962{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007963 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007964 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07007965
Heiko Carstens712555e2008-04-28 11:33:07 +02007966 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007967
Milton Miller73785472007-10-24 18:23:48 +02007968 /* always unregister in case we don't destroy any domains */
7969 unregister_sched_domain_sysctl();
7970
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007971 /* Let architecture update cpu core mappings. */
7972 new_topology = arch_update_cpu_topology();
7973
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007974 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07007975
7976 /* Destroy deleted domains */
7977 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007978 for (j = 0; j < n && !new_topology; j++) {
Rusty Russell96f874e2008-11-25 02:35:14 +10307979 if (cpumask_equal(&doms_cur[i], &doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007980 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007981 goto match1;
7982 }
7983 /* no match - a current sched domain not in new doms_new[] */
7984 detach_destroy_domains(doms_cur + i);
7985match1:
7986 ;
7987 }
7988
Max Krasnyanskye761b772008-07-15 04:43:49 -07007989 if (doms_new == NULL) {
7990 ndoms_cur = 0;
Rusty Russell42128232008-11-25 02:35:12 +10307991 doms_new = fallback_doms;
Rusty Russelldcc30a32008-11-25 02:35:12 +10307992 cpumask_andnot(&doms_new[0], cpu_online_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08007993 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07007994 }
7995
Paul Jackson029190c2007-10-18 23:40:20 -07007996 /* Build new domains */
7997 for (i = 0; i < ndoms_new; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007998 for (j = 0; j < ndoms_cur && !new_topology; j++) {
Rusty Russell96f874e2008-11-25 02:35:14 +10307999 if (cpumask_equal(&doms_new[i], &doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008000 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07008001 goto match2;
8002 }
8003 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008004 __build_sched_domains(doms_new + i,
8005 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07008006match2:
8007 ;
8008 }
8009
8010 /* Remember the new sched domains */
Rusty Russell42128232008-11-25 02:35:12 +10308011 if (doms_cur != fallback_doms)
Paul Jackson029190c2007-10-18 23:40:20 -07008012 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008013 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07008014 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008015 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07008016 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02008017
8018 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01008019
Heiko Carstens712555e2008-04-28 11:33:07 +02008020 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07008021}
8022
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008023#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01008024int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008025{
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008026 get_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008027
8028 /* Destroy domains first to force the rebuild */
8029 partition_sched_domains(0, NULL, NULL);
8030
Max Krasnyanskye761b772008-07-15 04:43:49 -07008031 rebuild_sched_domains();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008032 put_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008033
Max Krasnyanskye761b772008-07-15 04:43:49 -07008034 return 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008035}
8036
8037static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
8038{
8039 int ret;
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308040 unsigned int level = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008041
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308042 if (sscanf(buf, "%u", &level) != 1)
8043 return -EINVAL;
8044
8045 /*
8046 * level is always be positive so don't check for
8047 * level < POWERSAVINGS_BALANCE_NONE which is 0
8048 * What happens on 0 or 1 byte write,
8049 * need to check for count as well?
8050 */
8051
8052 if (level >= MAX_POWERSAVINGS_BALANCE_LEVELS)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008053 return -EINVAL;
8054
8055 if (smt)
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308056 sched_smt_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008057 else
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308058 sched_mc_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008059
8060 ret = arch_reinit_sched_domains();
8061
8062 return ret ? ret : count;
8063}
8064
Adrian Bunk6707de002007-08-12 18:08:19 +02008065#ifdef CONFIG_SCHED_MC
Andi Kleenf718cd42008-07-29 22:33:52 -07008066static ssize_t sched_mc_power_savings_show(struct sysdev_class *class,
8067 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02008068{
8069 return sprintf(page, "%u\n", sched_mc_power_savings);
8070}
Andi Kleenf718cd42008-07-29 22:33:52 -07008071static ssize_t sched_mc_power_savings_store(struct sysdev_class *class,
Adrian Bunk6707de002007-08-12 18:08:19 +02008072 const char *buf, size_t count)
8073{
8074 return sched_power_savings_store(buf, count, 0);
8075}
Andi Kleenf718cd42008-07-29 22:33:52 -07008076static SYSDEV_CLASS_ATTR(sched_mc_power_savings, 0644,
8077 sched_mc_power_savings_show,
8078 sched_mc_power_savings_store);
Adrian Bunk6707de002007-08-12 18:08:19 +02008079#endif
8080
8081#ifdef CONFIG_SCHED_SMT
Andi Kleenf718cd42008-07-29 22:33:52 -07008082static ssize_t sched_smt_power_savings_show(struct sysdev_class *dev,
8083 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02008084{
8085 return sprintf(page, "%u\n", sched_smt_power_savings);
8086}
Andi Kleenf718cd42008-07-29 22:33:52 -07008087static ssize_t sched_smt_power_savings_store(struct sysdev_class *dev,
Adrian Bunk6707de002007-08-12 18:08:19 +02008088 const char *buf, size_t count)
8089{
8090 return sched_power_savings_store(buf, count, 1);
8091}
Andi Kleenf718cd42008-07-29 22:33:52 -07008092static SYSDEV_CLASS_ATTR(sched_smt_power_savings, 0644,
8093 sched_smt_power_savings_show,
Adrian Bunk6707de002007-08-12 18:08:19 +02008094 sched_smt_power_savings_store);
8095#endif
8096
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008097int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
8098{
8099 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07008100
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008101#ifdef CONFIG_SCHED_SMT
8102 if (smt_capable())
8103 err = sysfs_create_file(&cls->kset.kobj,
8104 &attr_sched_smt_power_savings.attr);
8105#endif
8106#ifdef CONFIG_SCHED_MC
8107 if (!err && mc_capable())
8108 err = sysfs_create_file(&cls->kset.kobj,
8109 &attr_sched_mc_power_savings.attr);
8110#endif
8111 return err;
8112}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008113#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008114
Max Krasnyanskye761b772008-07-15 04:43:49 -07008115#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07008116/*
Max Krasnyanskye761b772008-07-15 04:43:49 -07008117 * Add online and remove offline CPUs from the scheduler domains.
8118 * When cpusets are enabled they take over this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008119 */
8120static int update_sched_domains(struct notifier_block *nfb,
8121 unsigned long action, void *hcpu)
8122{
Max Krasnyanskye761b772008-07-15 04:43:49 -07008123 switch (action) {
8124 case CPU_ONLINE:
8125 case CPU_ONLINE_FROZEN:
8126 case CPU_DEAD:
8127 case CPU_DEAD_FROZEN:
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008128 partition_sched_domains(1, NULL, NULL);
Max Krasnyanskye761b772008-07-15 04:43:49 -07008129 return NOTIFY_OK;
8130
8131 default:
8132 return NOTIFY_DONE;
8133 }
8134}
8135#endif
8136
8137static int update_runtime(struct notifier_block *nfb,
8138 unsigned long action, void *hcpu)
8139{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02008140 int cpu = (int)(long)hcpu;
8141
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008143 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008144 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02008145 disable_runtime(cpu_rq(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008146 return NOTIFY_OK;
8147
Linus Torvalds1da177e2005-04-16 15:20:36 -07008148 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008149 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008151 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02008152 enable_runtime(cpu_rq(cpu));
Max Krasnyanskye761b772008-07-15 04:43:49 -07008153 return NOTIFY_OK;
8154
Linus Torvalds1da177e2005-04-16 15:20:36 -07008155 default:
8156 return NOTIFY_DONE;
8157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008158}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008159
8160void __init sched_init_smp(void)
8161{
Rusty Russelldcc30a32008-11-25 02:35:12 +10308162 cpumask_var_t non_isolated_cpus;
8163
8164 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07008165
Mike Travis434d53b2008-04-04 18:11:04 -07008166#if defined(CONFIG_NUMA)
8167 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
8168 GFP_KERNEL);
8169 BUG_ON(sched_group_nodes_bycpu == NULL);
8170#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008171 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02008172 mutex_lock(&sched_domains_mutex);
Rusty Russelldcc30a32008-11-25 02:35:12 +10308173 arch_init_sched_domains(cpu_online_mask);
8174 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
8175 if (cpumask_empty(non_isolated_cpus))
8176 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02008177 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008178 put_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07008179
8180#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07008181 /* XXX: Theoretical race here - CPU may be hotplugged now */
8182 hotcpu_notifier(update_sched_domains, 0);
Max Krasnyanskye761b772008-07-15 04:43:49 -07008183#endif
8184
8185 /* RT runtime code needs to handle some hotplug events */
8186 hotcpu_notifier(update_runtime, 0);
8187
Peter Zijlstrab328ca12008-04-29 10:02:46 +02008188 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07008189
8190 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10308191 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07008192 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01008193 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10308194 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10308195
8196 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Rusty Russell0e3900e2008-11-25 02:35:13 +10308197 init_sched_rt_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008198}
8199#else
8200void __init sched_init_smp(void)
8201{
Ingo Molnar19978ca2007-11-09 22:39:38 +01008202 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008203}
8204#endif /* CONFIG_SMP */
8205
8206int in_sched_functions(unsigned long addr)
8207{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008208 return in_lock_functions(addr) ||
8209 (addr >= (unsigned long)__sched_text_start
8210 && addr < (unsigned long)__sched_text_end);
8211}
8212
Alexey Dobriyana9957442007-10-15 17:00:13 +02008213static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02008214{
8215 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02008216 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02008217#ifdef CONFIG_FAIR_GROUP_SCHED
8218 cfs_rq->rq = rq;
8219#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02008220 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02008221}
8222
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008223static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
8224{
8225 struct rt_prio_array *array;
8226 int i;
8227
8228 array = &rt_rq->active;
8229 for (i = 0; i < MAX_RT_PRIO; i++) {
8230 INIT_LIST_HEAD(array->queue + i);
8231 __clear_bit(i, array->bitmap);
8232 }
8233 /* delimiter for bitsearch: */
8234 __set_bit(MAX_RT_PRIO, array->bitmap);
8235
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008236#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -05008237 rt_rq->highest_prio.curr = MAX_RT_PRIO;
8238 rt_rq->highest_prio.next = MAX_RT_PRIO;
Peter Zijlstra48d5e252008-01-25 21:08:31 +01008239#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008240#ifdef CONFIG_SMP
8241 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008242 rt_rq->overloaded = 0;
Gregory Haskins917b6272008-12-29 09:39:53 -05008243 plist_head_init(&rq->rt.pushable_tasks, &rq->lock);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008244#endif
8245
8246 rt_rq->rt_time = 0;
8247 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008248 rt_rq->rt_runtime = 0;
8249 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008250
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008251#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01008252 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008253 rt_rq->rq = rq;
8254#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008255}
8256
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008257#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008258static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
8259 struct sched_entity *se, int cpu, int add,
8260 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008261{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008262 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008263 tg->cfs_rq[cpu] = cfs_rq;
8264 init_cfs_rq(cfs_rq, rq);
8265 cfs_rq->tg = tg;
8266 if (add)
8267 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
8268
8269 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008270 /* se could be NULL for init_task_group */
8271 if (!se)
8272 return;
8273
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008274 if (!parent)
8275 se->cfs_rq = &rq->cfs;
8276 else
8277 se->cfs_rq = parent->my_q;
8278
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008279 se->my_q = cfs_rq;
8280 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008281 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008282 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008283}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008284#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008285
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008286#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008287static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
8288 struct sched_rt_entity *rt_se, int cpu, int add,
8289 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008290{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008291 struct rq *rq = cpu_rq(cpu);
8292
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008293 tg->rt_rq[cpu] = rt_rq;
8294 init_rt_rq(rt_rq, rq);
8295 rt_rq->tg = tg;
8296 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008297 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008298 if (add)
8299 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
8300
8301 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008302 if (!rt_se)
8303 return;
8304
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008305 if (!parent)
8306 rt_se->rt_rq = &rq->rt;
8307 else
8308 rt_se->rt_rq = parent->my_q;
8309
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008310 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008311 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008312 INIT_LIST_HEAD(&rt_se->run_list);
8313}
8314#endif
8315
Linus Torvalds1da177e2005-04-16 15:20:36 -07008316void __init sched_init(void)
8317{
Ingo Molnardd41f592007-07-09 18:51:59 +02008318 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008319 unsigned long alloc_size = 0, ptr;
8320
8321#ifdef CONFIG_FAIR_GROUP_SCHED
8322 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8323#endif
8324#ifdef CONFIG_RT_GROUP_SCHED
8325 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8326#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008327#ifdef CONFIG_USER_SCHED
8328 alloc_size *= 2;
8329#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008330 /*
8331 * As sched_init() is called before page_alloc is setup,
8332 * we use alloc_bootmem().
8333 */
8334 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07008335 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07008336
8337#ifdef CONFIG_FAIR_GROUP_SCHED
8338 init_task_group.se = (struct sched_entity **)ptr;
8339 ptr += nr_cpu_ids * sizeof(void **);
8340
8341 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8342 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008343
8344#ifdef CONFIG_USER_SCHED
8345 root_task_group.se = (struct sched_entity **)ptr;
8346 ptr += nr_cpu_ids * sizeof(void **);
8347
8348 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8349 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008350#endif /* CONFIG_USER_SCHED */
8351#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008352#ifdef CONFIG_RT_GROUP_SCHED
8353 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8354 ptr += nr_cpu_ids * sizeof(void **);
8355
8356 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008357 ptr += nr_cpu_ids * sizeof(void **);
8358
8359#ifdef CONFIG_USER_SCHED
8360 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8361 ptr += nr_cpu_ids * sizeof(void **);
8362
8363 root_task_group.rt_rq = (struct rt_rq **)ptr;
8364 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008365#endif /* CONFIG_USER_SCHED */
8366#endif /* CONFIG_RT_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008367 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008368
Gregory Haskins57d885f2008-01-25 21:08:18 +01008369#ifdef CONFIG_SMP
8370 init_defrootdomain();
8371#endif
8372
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008373 init_rt_bandwidth(&def_rt_bandwidth,
8374 global_rt_period(), global_rt_runtime());
8375
8376#ifdef CONFIG_RT_GROUP_SCHED
8377 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8378 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008379#ifdef CONFIG_USER_SCHED
8380 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8381 global_rt_period(), RUNTIME_INF);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008382#endif /* CONFIG_USER_SCHED */
8383#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008384
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008385#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008386 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008387 INIT_LIST_HEAD(&init_task_group.children);
8388
8389#ifdef CONFIG_USER_SCHED
8390 INIT_LIST_HEAD(&root_task_group.children);
8391 init_task_group.parent = &root_task_group;
8392 list_add(&init_task_group.siblings, &root_task_group.children);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008393#endif /* CONFIG_USER_SCHED */
8394#endif /* CONFIG_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008395
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008396 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008397 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008398
8399 rq = cpu_rq(i);
8400 spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07008401 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008402 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008403 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008404#ifdef CONFIG_FAIR_GROUP_SCHED
8405 init_task_group.shares = init_task_group_load;
8406 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008407#ifdef CONFIG_CGROUP_SCHED
8408 /*
8409 * How much cpu bandwidth does init_task_group get?
8410 *
8411 * In case of task-groups formed thr' the cgroup filesystem, it
8412 * gets 100% of the cpu resources in the system. This overall
8413 * system cpu resource is divided among the tasks of
8414 * init_task_group and its child task-groups in a fair manner,
8415 * based on each entity's (task or task-group's) weight
8416 * (se->load.weight).
8417 *
8418 * In other words, if init_task_group has 10 tasks of weight
8419 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8420 * then A0's share of the cpu resource is:
8421 *
8422 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
8423 *
8424 * We achieve this by letting init_task_group's tasks sit
8425 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8426 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008427 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008428#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008429 root_task_group.shares = NICE_0_LOAD;
8430 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008431 /*
8432 * In case of task-groups formed thr' the user id of tasks,
8433 * init_task_group represents tasks belonging to root user.
8434 * Hence it forms a sibling of all subsequent groups formed.
8435 * In this case, init_task_group gets only a fraction of overall
8436 * system cpu resource, based on the weight assigned to root
8437 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8438 * by letting tasks of init_task_group sit in a separate cfs_rq
8439 * (init_cfs_rq) and having one entity represent this group of
8440 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
8441 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008442 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008443 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008444 &per_cpu(init_sched_entity, i), i, 1,
8445 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008446
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008447#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008448#endif /* CONFIG_FAIR_GROUP_SCHED */
8449
8450 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008451#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008452 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008453#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008454 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008455#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008456 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008457 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008458 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008459 &per_cpu(init_sched_rt_entity, i), i, 1,
8460 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008461#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008462#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008463
Ingo Molnardd41f592007-07-09 18:51:59 +02008464 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8465 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008467 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008468 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008469 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008470 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008471 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008472 rq->cpu = i;
Gregory Haskins1f11eb62008-06-04 15:04:05 -04008473 rq->online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008474 rq->migration_thread = NULL;
8475 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008476 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008477#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008478 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008479 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008480 }
8481
Peter Williams2dd73a42006-06-27 02:54:34 -07008482 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008483
Avi Kivitye107be32007-07-26 13:40:43 +02008484#ifdef CONFIG_PREEMPT_NOTIFIERS
8485 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8486#endif
8487
Christoph Lameterc9819f42006-12-10 02:20:25 -08008488#ifdef CONFIG_SMP
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008489 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
Christoph Lameterc9819f42006-12-10 02:20:25 -08008490#endif
8491
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008492#ifdef CONFIG_RT_MUTEXES
8493 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8494#endif
8495
Linus Torvalds1da177e2005-04-16 15:20:36 -07008496 /*
8497 * The boot idle thread does lazy MMU switching as well:
8498 */
8499 atomic_inc(&init_mm.mm_count);
8500 enter_lazy_tlb(&init_mm, current);
8501
8502 /*
8503 * Make us the idle thread. Technically, schedule() should not be
8504 * called from this thread, however somewhere below it might be,
8505 * but because we are the idle thread, we just pick up running again
8506 * when this runqueue becomes "idle".
8507 */
8508 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008509 /*
8510 * During early bootup we pretend to be a normal task:
8511 */
8512 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008513
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10308514 /* Allocate the nohz_cpu_mask if CONFIG_CPUMASK_OFFSTACK */
8515 alloc_bootmem_cpumask_var(&nohz_cpu_mask);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10308516#ifdef CONFIG_SMP
Rusty Russell7d1e6a92008-11-25 02:35:09 +10308517#ifdef CONFIG_NO_HZ
8518 alloc_bootmem_cpumask_var(&nohz.cpu_mask);
8519#endif
Rusty Russelldcc30a32008-11-25 02:35:12 +10308520 alloc_bootmem_cpumask_var(&cpu_isolated_map);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10308521#endif /* SMP */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10308522
Ingo Molnar6892b752008-02-13 14:02:36 +01008523 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008524}
8525
8526#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8527void __might_sleep(char *file, int line)
8528{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008529#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008530 static unsigned long prev_jiffy; /* ratelimiting */
8531
Ingo Molnaraef745f2008-08-28 11:34:43 +02008532 if ((!in_atomic() && !irqs_disabled()) ||
8533 system_state != SYSTEM_RUNNING || oops_in_progress)
8534 return;
8535 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8536 return;
8537 prev_jiffy = jiffies;
8538
8539 printk(KERN_ERR
8540 "BUG: sleeping function called from invalid context at %s:%d\n",
8541 file, line);
8542 printk(KERN_ERR
8543 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
8544 in_atomic(), irqs_disabled(),
8545 current->pid, current->comm);
8546
8547 debug_show_held_locks(current);
8548 if (irqs_disabled())
8549 print_irqtrace_events(current);
8550 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008551#endif
8552}
8553EXPORT_SYMBOL(__might_sleep);
8554#endif
8555
8556#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008557static void normalize_task(struct rq *rq, struct task_struct *p)
8558{
8559 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008560
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008561 update_rq_clock(rq);
8562 on_rq = p->se.on_rq;
8563 if (on_rq)
8564 deactivate_task(rq, p, 0);
8565 __setscheduler(rq, p, SCHED_NORMAL, 0);
8566 if (on_rq) {
8567 activate_task(rq, p, 0);
8568 resched_task(rq->curr);
8569 }
8570}
8571
Linus Torvalds1da177e2005-04-16 15:20:36 -07008572void normalize_rt_tasks(void)
8573{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008574 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008575 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008576 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008577
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008578 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008579 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008580 /*
8581 * Only normalize user tasks:
8582 */
8583 if (!p->mm)
8584 continue;
8585
Ingo Molnardd41f592007-07-09 18:51:59 +02008586 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008587#ifdef CONFIG_SCHEDSTATS
8588 p->se.wait_start = 0;
8589 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008590 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008591#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008592
8593 if (!rt_task(p)) {
8594 /*
8595 * Renice negative nice level userspace
8596 * tasks back to 0:
8597 */
8598 if (TASK_NICE(p) < 0 && p->mm)
8599 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008602
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008603 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008604 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605
Ingo Molnar178be792007-10-15 17:00:18 +02008606 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008607
Ingo Molnarb29739f2006-06-27 02:54:51 -07008608 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008609 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008610 } while_each_thread(g, p);
8611
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008612 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008613}
8614
8615#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008616
8617#ifdef CONFIG_IA64
8618/*
8619 * These functions are only useful for the IA64 MCA handling.
8620 *
8621 * They can only be called when the whole system has been
8622 * stopped - every CPU needs to be quiescent, and no scheduling
8623 * activity can take place. Using them for anything else would
8624 * be a serious bug, and as a result, they aren't even visible
8625 * under any other configuration.
8626 */
8627
8628/**
8629 * curr_task - return the current task for a given cpu.
8630 * @cpu: the processor in question.
8631 *
8632 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8633 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008634struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008635{
8636 return cpu_curr(cpu);
8637}
8638
8639/**
8640 * set_curr_task - set the current task for a given cpu.
8641 * @cpu: the processor in question.
8642 * @p: the task pointer to set.
8643 *
8644 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008645 * are serviced on a separate stack. It allows the architecture to switch the
8646 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008647 * must be called with all CPU's synchronized, and interrupts disabled, the
8648 * and caller must save the original value of the current task (see
8649 * curr_task() above) and restore that value before reenabling interrupts and
8650 * re-starting the system.
8651 *
8652 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8653 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008654void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008655{
8656 cpu_curr(cpu) = p;
8657}
8658
8659#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008660
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008661#ifdef CONFIG_FAIR_GROUP_SCHED
8662static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008663{
8664 int i;
8665
8666 for_each_possible_cpu(i) {
8667 if (tg->cfs_rq)
8668 kfree(tg->cfs_rq[i]);
8669 if (tg->se)
8670 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008671 }
8672
8673 kfree(tg->cfs_rq);
8674 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008675}
8676
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008677static
8678int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008679{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008680 struct cfs_rq *cfs_rq;
Li Zefaneab17222008-10-29 17:03:22 +08008681 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008682 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008683 int i;
8684
Mike Travis434d53b2008-04-04 18:11:04 -07008685 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008686 if (!tg->cfs_rq)
8687 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008688 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008689 if (!tg->se)
8690 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008691
8692 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008693
8694 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008695 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008696
Li Zefaneab17222008-10-29 17:03:22 +08008697 cfs_rq = kzalloc_node(sizeof(struct cfs_rq),
8698 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008699 if (!cfs_rq)
8700 goto err;
8701
Li Zefaneab17222008-10-29 17:03:22 +08008702 se = kzalloc_node(sizeof(struct sched_entity),
8703 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008704 if (!se)
8705 goto err;
8706
Li Zefaneab17222008-10-29 17:03:22 +08008707 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent->se[i]);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008708 }
8709
8710 return 1;
8711
8712 err:
8713 return 0;
8714}
8715
8716static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8717{
8718 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8719 &cpu_rq(cpu)->leaf_cfs_rq_list);
8720}
8721
8722static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8723{
8724 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8725}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008726#else /* !CONFG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008727static inline void free_fair_sched_group(struct task_group *tg)
8728{
8729}
8730
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008731static inline
8732int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008733{
8734 return 1;
8735}
8736
8737static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8738{
8739}
8740
8741static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8742{
8743}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008744#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008745
8746#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008747static void free_rt_sched_group(struct task_group *tg)
8748{
8749 int i;
8750
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008751 destroy_rt_bandwidth(&tg->rt_bandwidth);
8752
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008753 for_each_possible_cpu(i) {
8754 if (tg->rt_rq)
8755 kfree(tg->rt_rq[i]);
8756 if (tg->rt_se)
8757 kfree(tg->rt_se[i]);
8758 }
8759
8760 kfree(tg->rt_rq);
8761 kfree(tg->rt_se);
8762}
8763
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008764static
8765int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008766{
8767 struct rt_rq *rt_rq;
Li Zefaneab17222008-10-29 17:03:22 +08008768 struct sched_rt_entity *rt_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008769 struct rq *rq;
8770 int i;
8771
Mike Travis434d53b2008-04-04 18:11:04 -07008772 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008773 if (!tg->rt_rq)
8774 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008775 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008776 if (!tg->rt_se)
8777 goto err;
8778
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008779 init_rt_bandwidth(&tg->rt_bandwidth,
8780 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008781
8782 for_each_possible_cpu(i) {
8783 rq = cpu_rq(i);
8784
Li Zefaneab17222008-10-29 17:03:22 +08008785 rt_rq = kzalloc_node(sizeof(struct rt_rq),
8786 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008787 if (!rt_rq)
8788 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008789
Li Zefaneab17222008-10-29 17:03:22 +08008790 rt_se = kzalloc_node(sizeof(struct sched_rt_entity),
8791 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008792 if (!rt_se)
8793 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008794
Li Zefaneab17222008-10-29 17:03:22 +08008795 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent->rt_se[i]);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008796 }
8797
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008798 return 1;
8799
8800 err:
8801 return 0;
8802}
8803
8804static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8805{
8806 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8807 &cpu_rq(cpu)->leaf_rt_rq_list);
8808}
8809
8810static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8811{
8812 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8813}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008814#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008815static inline void free_rt_sched_group(struct task_group *tg)
8816{
8817}
8818
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008819static inline
8820int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008821{
8822 return 1;
8823}
8824
8825static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8826{
8827}
8828
8829static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8830{
8831}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008832#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008833
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008834#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008835static void free_sched_group(struct task_group *tg)
8836{
8837 free_fair_sched_group(tg);
8838 free_rt_sched_group(tg);
8839 kfree(tg);
8840}
8841
8842/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008843struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008844{
8845 struct task_group *tg;
8846 unsigned long flags;
8847 int i;
8848
8849 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8850 if (!tg)
8851 return ERR_PTR(-ENOMEM);
8852
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008853 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008854 goto err;
8855
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008856 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008857 goto err;
8858
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008859 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008860 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008861 register_fair_sched_group(tg, i);
8862 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008863 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008864 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008865
8866 WARN_ON(!parent); /* root should already exist */
8867
8868 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008869 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08008870 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008871 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008872
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008873 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008874
8875err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008876 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008877 return ERR_PTR(-ENOMEM);
8878}
8879
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008880/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008881static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008882{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008883 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008884 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008885}
8886
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008887/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008888void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008889{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008890 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008891 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008892
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008893 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008894 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008895 unregister_fair_sched_group(tg, i);
8896 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008897 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008898 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008899 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008900 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008901
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008902 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008903 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008904}
8905
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008906/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008907 * The caller of this function should have put the task in its new group
8908 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8909 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008910 */
8911void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008912{
8913 int on_rq, running;
8914 unsigned long flags;
8915 struct rq *rq;
8916
8917 rq = task_rq_lock(tsk, &flags);
8918
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008919 update_rq_clock(rq);
8920
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008921 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008922 on_rq = tsk->se.on_rq;
8923
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008924 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008925 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008926 if (unlikely(running))
8927 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008928
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008929 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008930
Peter Zijlstra810b3812008-02-29 15:21:01 -05008931#ifdef CONFIG_FAIR_GROUP_SCHED
8932 if (tsk->sched_class->moved_group)
8933 tsk->sched_class->moved_group(tsk);
8934#endif
8935
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008936 if (unlikely(running))
8937 tsk->sched_class->set_curr_task(rq);
8938 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008939 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008940
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008941 task_rq_unlock(rq, &flags);
8942}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008943#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008944
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008945#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008946static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008947{
8948 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008949 int on_rq;
8950
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008951 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008952 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008953 dequeue_entity(cfs_rq, se, 0);
8954
8955 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008956 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008957
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008958 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008959 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008960}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008961
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008962static void set_se_shares(struct sched_entity *se, unsigned long shares)
8963{
8964 struct cfs_rq *cfs_rq = se->cfs_rq;
8965 struct rq *rq = cfs_rq->rq;
8966 unsigned long flags;
8967
8968 spin_lock_irqsave(&rq->lock, flags);
8969 __set_se_shares(se, shares);
8970 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008971}
8972
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008973static DEFINE_MUTEX(shares_mutex);
8974
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008975int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008976{
8977 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008978 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008979
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008980 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008981 * We can't change the weight of the root cgroup.
8982 */
8983 if (!tg->se[0])
8984 return -EINVAL;
8985
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008986 if (shares < MIN_SHARES)
8987 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008988 else if (shares > MAX_SHARES)
8989 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008990
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008991 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008992 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008993 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008994
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008995 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008996 for_each_possible_cpu(i)
8997 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008998 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008999 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01009000
9001 /* wait for any ongoing reference to this group to finish */
9002 synchronize_sched();
9003
9004 /*
9005 * Now we are free to modify the group's share on each cpu
9006 * w/o tripping rebalance_share or load_balance_fair.
9007 */
9008 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009009 for_each_possible_cpu(i) {
9010 /*
9011 * force a rebalance
9012 */
9013 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08009014 set_se_shares(tg->se[i], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009015 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01009016
9017 /*
9018 * Enable load balance activity on this group, by inserting it back on
9019 * each cpu's rq->leaf_cfs_rq_list.
9020 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009021 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009022 for_each_possible_cpu(i)
9023 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02009024 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009025 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02009026done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009027 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009028 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009029}
9030
Dhaval Giani5cb350b2007-10-15 17:00:14 +02009031unsigned long sched_group_shares(struct task_group *tg)
9032{
9033 return tg->shares;
9034}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009035#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02009036
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009037#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009038/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009039 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009040 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009041static DEFINE_MUTEX(rt_constraints_mutex);
9042
9043static unsigned long to_ratio(u64 period, u64 runtime)
9044{
9045 if (runtime == RUNTIME_INF)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009046 return 1ULL << 20;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009047
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009048 return div64_u64(runtime << 20, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009049}
9050
Dhaval Giani521f1a242008-02-28 15:21:56 +05309051/* Must be called with tasklist_lock held */
9052static inline int tg_has_rt_tasks(struct task_group *tg)
9053{
9054 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009055
Dhaval Giani521f1a242008-02-28 15:21:56 +05309056 do_each_thread(g, p) {
9057 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
9058 return 1;
9059 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009060
Dhaval Giani521f1a242008-02-28 15:21:56 +05309061 return 0;
9062}
9063
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009064struct rt_schedulable_data {
9065 struct task_group *tg;
9066 u64 rt_period;
9067 u64 rt_runtime;
9068};
9069
9070static int tg_schedulable(struct task_group *tg, void *data)
9071{
9072 struct rt_schedulable_data *d = data;
9073 struct task_group *child;
9074 unsigned long total, sum = 0;
9075 u64 period, runtime;
9076
9077 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
9078 runtime = tg->rt_bandwidth.rt_runtime;
9079
9080 if (tg == d->tg) {
9081 period = d->rt_period;
9082 runtime = d->rt_runtime;
9083 }
9084
Peter Zijlstra4653f802008-09-23 15:33:44 +02009085 /*
9086 * Cannot have more runtime than the period.
9087 */
9088 if (runtime > period && runtime != RUNTIME_INF)
9089 return -EINVAL;
9090
9091 /*
9092 * Ensure we don't starve existing RT tasks.
9093 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009094 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
9095 return -EBUSY;
9096
9097 total = to_ratio(period, runtime);
9098
Peter Zijlstra4653f802008-09-23 15:33:44 +02009099 /*
9100 * Nobody can have more than the global setting allows.
9101 */
9102 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
9103 return -EINVAL;
9104
9105 /*
9106 * The sum of our children's runtime should not exceed our own.
9107 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009108 list_for_each_entry_rcu(child, &tg->children, siblings) {
9109 period = ktime_to_ns(child->rt_bandwidth.rt_period);
9110 runtime = child->rt_bandwidth.rt_runtime;
9111
9112 if (child == d->tg) {
9113 period = d->rt_period;
9114 runtime = d->rt_runtime;
9115 }
9116
9117 sum += to_ratio(period, runtime);
9118 }
9119
9120 if (sum > total)
9121 return -EINVAL;
9122
9123 return 0;
9124}
9125
9126static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
9127{
9128 struct rt_schedulable_data data = {
9129 .tg = tg,
9130 .rt_period = period,
9131 .rt_runtime = runtime,
9132 };
9133
9134 return walk_tg_tree(tg_schedulable, tg_nop, &data);
9135}
9136
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009137static int tg_set_bandwidth(struct task_group *tg,
9138 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009139{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009140 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009141
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009142 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05309143 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009144 err = __rt_schedulable(tg, rt_period, rt_runtime);
9145 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05309146 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009147
9148 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009149 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
9150 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009151
9152 for_each_possible_cpu(i) {
9153 struct rt_rq *rt_rq = tg->rt_rq[i];
9154
9155 spin_lock(&rt_rq->rt_runtime_lock);
9156 rt_rq->rt_runtime = rt_runtime;
9157 spin_unlock(&rt_rq->rt_runtime_lock);
9158 }
9159 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009160 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05309161 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009162 mutex_unlock(&rt_constraints_mutex);
9163
9164 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009165}
9166
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009167int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
9168{
9169 u64 rt_runtime, rt_period;
9170
9171 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
9172 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
9173 if (rt_runtime_us < 0)
9174 rt_runtime = RUNTIME_INF;
9175
9176 return tg_set_bandwidth(tg, rt_period, rt_runtime);
9177}
9178
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009179long sched_group_rt_runtime(struct task_group *tg)
9180{
9181 u64 rt_runtime_us;
9182
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009183 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009184 return -1;
9185
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009186 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009187 do_div(rt_runtime_us, NSEC_PER_USEC);
9188 return rt_runtime_us;
9189}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009190
9191int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
9192{
9193 u64 rt_runtime, rt_period;
9194
9195 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
9196 rt_runtime = tg->rt_bandwidth.rt_runtime;
9197
Raistlin619b0482008-06-26 18:54:09 +02009198 if (rt_period == 0)
9199 return -EINVAL;
9200
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009201 return tg_set_bandwidth(tg, rt_period, rt_runtime);
9202}
9203
9204long sched_group_rt_period(struct task_group *tg)
9205{
9206 u64 rt_period_us;
9207
9208 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
9209 do_div(rt_period_us, NSEC_PER_USEC);
9210 return rt_period_us;
9211}
9212
9213static int sched_rt_global_constraints(void)
9214{
Peter Zijlstra4653f802008-09-23 15:33:44 +02009215 u64 runtime, period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009216 int ret = 0;
9217
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07009218 if (sysctl_sched_rt_period <= 0)
9219 return -EINVAL;
9220
Peter Zijlstra4653f802008-09-23 15:33:44 +02009221 runtime = global_rt_runtime();
9222 period = global_rt_period();
9223
9224 /*
9225 * Sanity check on the sysctl variables.
9226 */
9227 if (runtime > period && runtime != RUNTIME_INF)
9228 return -EINVAL;
Peter Zijlstra10b612f2008-06-19 14:22:27 +02009229
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009230 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009231 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02009232 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009233 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009234 mutex_unlock(&rt_constraints_mutex);
9235
9236 return ret;
9237}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009238#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009239static int sched_rt_global_constraints(void)
9240{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009241 unsigned long flags;
9242 int i;
9243
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07009244 if (sysctl_sched_rt_period <= 0)
9245 return -EINVAL;
9246
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009247 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
9248 for_each_possible_cpu(i) {
9249 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
9250
9251 spin_lock(&rt_rq->rt_runtime_lock);
9252 rt_rq->rt_runtime = global_rt_runtime();
9253 spin_unlock(&rt_rq->rt_runtime_lock);
9254 }
9255 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
9256
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009257 return 0;
9258}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009259#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009260
9261int sched_rt_handler(struct ctl_table *table, int write,
9262 struct file *filp, void __user *buffer, size_t *lenp,
9263 loff_t *ppos)
9264{
9265 int ret;
9266 int old_period, old_runtime;
9267 static DEFINE_MUTEX(mutex);
9268
9269 mutex_lock(&mutex);
9270 old_period = sysctl_sched_rt_period;
9271 old_runtime = sysctl_sched_rt_runtime;
9272
9273 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
9274
9275 if (!ret && write) {
9276 ret = sched_rt_global_constraints();
9277 if (ret) {
9278 sysctl_sched_rt_period = old_period;
9279 sysctl_sched_rt_runtime = old_runtime;
9280 } else {
9281 def_rt_bandwidth.rt_runtime = global_rt_runtime();
9282 def_rt_bandwidth.rt_period =
9283 ns_to_ktime(global_rt_period());
9284 }
9285 }
9286 mutex_unlock(&mutex);
9287
9288 return ret;
9289}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009290
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009291#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009292
9293/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009294static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009295{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009296 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
9297 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009298}
9299
9300static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02009301cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009302{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009303 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009304
Paul Menage2b01dfe2007-10-24 18:23:50 +02009305 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009306 /* This is early initialization for the top cgroup */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009307 return &init_task_group.css;
9308 }
9309
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009310 parent = cgroup_tg(cgrp->parent);
9311 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009312 if (IS_ERR(tg))
9313 return ERR_PTR(-ENOMEM);
9314
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009315 return &tg->css;
9316}
9317
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009318static void
9319cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009320{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009321 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009322
9323 sched_destroy_group(tg);
9324}
9325
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009326static int
9327cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
9328 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009329{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009330#ifdef CONFIG_RT_GROUP_SCHED
9331 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009332 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009333 return -EINVAL;
9334#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009335 /* We don't support RT-tasks being in separate groups */
9336 if (tsk->sched_class != &fair_sched_class)
9337 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009338#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009339
9340 return 0;
9341}
9342
9343static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02009344cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009345 struct cgroup *old_cont, struct task_struct *tsk)
9346{
9347 sched_move_task(tsk);
9348}
9349
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009350#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07009351static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009352 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009353{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009354 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009355}
9356
Paul Menagef4c753b2008-04-29 00:59:56 -07009357static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009358{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009359 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009360
9361 return (u64) tg->shares;
9362}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009363#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009364
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009365#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07009366static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009367 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009368{
Paul Menage06ecb272008-04-29 01:00:06 -07009369 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009370}
9371
Paul Menage06ecb272008-04-29 01:00:06 -07009372static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009373{
Paul Menage06ecb272008-04-29 01:00:06 -07009374 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009375}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009376
9377static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9378 u64 rt_period_us)
9379{
9380 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9381}
9382
9383static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9384{
9385 return sched_group_rt_period(cgroup_tg(cgrp));
9386}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009387#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009388
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009389static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009390#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009391 {
9392 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009393 .read_u64 = cpu_shares_read_u64,
9394 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009395 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009396#endif
9397#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009398 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009399 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009400 .read_s64 = cpu_rt_runtime_read,
9401 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009402 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009403 {
9404 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009405 .read_u64 = cpu_rt_period_read_uint,
9406 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009407 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009408#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009409};
9410
9411static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9412{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009413 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009414}
9415
9416struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009417 .name = "cpu",
9418 .create = cpu_cgroup_create,
9419 .destroy = cpu_cgroup_destroy,
9420 .can_attach = cpu_cgroup_can_attach,
9421 .attach = cpu_cgroup_attach,
9422 .populate = cpu_cgroup_populate,
9423 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009424 .early_init = 1,
9425};
9426
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009427#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009428
9429#ifdef CONFIG_CGROUP_CPUACCT
9430
9431/*
9432 * CPU accounting code for task groups.
9433 *
9434 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9435 * (balbir@in.ibm.com).
9436 */
9437
Bharata B Rao934352f2008-11-10 20:41:13 +05309438/* track cpu usage of a group of tasks and its child groups */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009439struct cpuacct {
9440 struct cgroup_subsys_state css;
9441 /* cpuusage holds pointer to a u64-type object on every cpu */
9442 u64 *cpuusage;
Bharata B Rao934352f2008-11-10 20:41:13 +05309443 struct cpuacct *parent;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009444};
9445
9446struct cgroup_subsys cpuacct_subsys;
9447
9448/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309449static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009450{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309451 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009452 struct cpuacct, css);
9453}
9454
9455/* return cpu accounting group to which this task belongs */
9456static inline struct cpuacct *task_ca(struct task_struct *tsk)
9457{
9458 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9459 struct cpuacct, css);
9460}
9461
9462/* create a new cpu accounting group */
9463static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309464 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009465{
9466 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9467
9468 if (!ca)
9469 return ERR_PTR(-ENOMEM);
9470
9471 ca->cpuusage = alloc_percpu(u64);
9472 if (!ca->cpuusage) {
9473 kfree(ca);
9474 return ERR_PTR(-ENOMEM);
9475 }
9476
Bharata B Rao934352f2008-11-10 20:41:13 +05309477 if (cgrp->parent)
9478 ca->parent = cgroup_ca(cgrp->parent);
9479
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009480 return &ca->css;
9481}
9482
9483/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009484static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309485cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009486{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309487 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009488
9489 free_percpu(ca->cpuusage);
9490 kfree(ca);
9491}
9492
9493/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309494static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009495{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309496 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009497 u64 totalcpuusage = 0;
9498 int i;
9499
9500 for_each_possible_cpu(i) {
9501 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9502
9503 /*
9504 * Take rq->lock to make 64-bit addition safe on 32-bit
9505 * platforms.
9506 */
9507 spin_lock_irq(&cpu_rq(i)->lock);
9508 totalcpuusage += *cpuusage;
9509 spin_unlock_irq(&cpu_rq(i)->lock);
9510 }
9511
9512 return totalcpuusage;
9513}
9514
Dhaval Giani0297b802008-02-29 10:02:44 +05309515static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9516 u64 reset)
9517{
9518 struct cpuacct *ca = cgroup_ca(cgrp);
9519 int err = 0;
9520 int i;
9521
9522 if (reset) {
9523 err = -EINVAL;
9524 goto out;
9525 }
9526
9527 for_each_possible_cpu(i) {
9528 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9529
9530 spin_lock_irq(&cpu_rq(i)->lock);
9531 *cpuusage = 0;
9532 spin_unlock_irq(&cpu_rq(i)->lock);
9533 }
9534out:
9535 return err;
9536}
9537
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009538static struct cftype files[] = {
9539 {
9540 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009541 .read_u64 = cpuusage_read,
9542 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009543 },
9544};
9545
Dhaval Giani32cd7562008-02-29 10:02:43 +05309546static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009547{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309548 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009549}
9550
9551/*
9552 * charge this task's execution time to its accounting group.
9553 *
9554 * called with rq->lock held.
9555 */
9556static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9557{
9558 struct cpuacct *ca;
Bharata B Rao934352f2008-11-10 20:41:13 +05309559 int cpu;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009560
9561 if (!cpuacct_subsys.active)
9562 return;
9563
Bharata B Rao934352f2008-11-10 20:41:13 +05309564 cpu = task_cpu(tsk);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009565 ca = task_ca(tsk);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009566
Bharata B Rao934352f2008-11-10 20:41:13 +05309567 for (; ca; ca = ca->parent) {
9568 u64 *cpuusage = percpu_ptr(ca->cpuusage, cpu);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009569 *cpuusage += cputime;
9570 }
9571}
9572
9573struct cgroup_subsys cpuacct_subsys = {
9574 .name = "cpuacct",
9575 .create = cpuacct_create,
9576 .destroy = cpuacct_destroy,
9577 .populate = cpuacct_populate,
9578 .subsys_id = cpuacct_subsys_id,
9579};
9580#endif /* CONFIG_CGROUP_CPUACCT */