blob: a17f3d9a8bfa81f2ea25072fd90946869df20231 [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>
Ingo Molnar0d905bc2009-05-04 19:13:30 +020042#include <linux/perf_counter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/security.h>
44#include <linux/notifier.h>
45#include <linux/profile.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080046#include <linux/freezer.h>
akpm@osdl.org198e2f12006-01-12 01:05:30 -080047#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/blkdev.h>
49#include <linux/delay.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070050#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/smp.h>
52#include <linux/threads.h>
53#include <linux/timer.h>
54#include <linux/rcupdate.h>
55#include <linux/cpu.h>
56#include <linux/cpuset.h>
57#include <linux/percpu.h>
58#include <linux/kthread.h>
Alexey Dobriyanb5aadf72008-10-06 13:23:43 +040059#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/seq_file.h>
Nick Piggine692ab52007-07-26 13:40:43 +020061#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/syscalls.h>
63#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070064#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080065#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070066#include <linux/delayacct.h>
Eric Dumazet5517d862007-05-08 00:32:57 -070067#include <linux/reciprocal_div.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020068#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020069#include <linux/pagemap.h>
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010070#include <linux/hrtimer.h>
Reynes Philippe30914a52008-03-17 16:19:05 -070071#include <linux/tick.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Eric Dumazet5517d862007-05-08 00:32:57 -070076#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020077#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Gregory Haskins6e0534f2008-05-12 21:21:01 +020079#include "sched_cpupri.h"
80
Steven Rostedta8d154b2009-04-10 09:36:00 -040081#define CREATE_TRACE_POINTS
Steven Rostedtad8d75f2009-04-14 19:39:12 -040082#include <trace/events/sched.h>
Steven Rostedta8d154b2009-04-10 09:36:00 -040083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/*
85 * Convert user-nice values [ -20 ... 0 ... 19 ]
86 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
87 * and back.
88 */
89#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
90#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
91#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
92
93/*
94 * 'User priority' is the nice value converted to something we
95 * can work with better when scaling various scheduler parameters,
96 * it's a [ 0 ... 39 ] range.
97 */
98#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
99#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
100#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
101
102/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100103 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100105#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200107#define NICE_0_LOAD SCHED_LOAD_SCALE
108#define NICE_0_SHIFT SCHED_LOAD_SHIFT
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
111 * These are the 'tuning knobs' of the scheduler:
112 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200113 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * Timeslices get refilled after they expire.
115 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700117
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200118/*
119 * single value that denotes runtime == period, ie unlimited time.
120 */
121#define RUNTIME_INF ((u64)~0ULL)
122
Eric Dumazet5517d862007-05-08 00:32:57 -0700123#ifdef CONFIG_SMP
Steven Noonanfd2ab302009-01-11 01:04:22 -0800124
125static void double_rq_lock(struct rq *rq1, struct rq *rq2);
126
Eric Dumazet5517d862007-05-08 00:32:57 -0700127/*
128 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
129 * Since cpu_power is a 'constant', we can use a reciprocal divide.
130 */
131static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
132{
133 return reciprocal_divide(load, sg->reciprocal_cpu_power);
134}
135
136/*
137 * Each time a sched group cpu_power is changed,
138 * we must compute its reciprocal value
139 */
140static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
141{
142 sg->__cpu_power += val;
143 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
144}
145#endif
146
Ingo Molnare05606d2007-07-09 18:51:59 +0200147static inline int rt_policy(int policy)
148{
Roel Kluin3f33a7c2008-05-13 23:44:11 +0200149 if (unlikely(policy == SCHED_FIFO || policy == SCHED_RR))
Ingo Molnare05606d2007-07-09 18:51:59 +0200150 return 1;
151 return 0;
152}
153
154static inline int task_has_rt_policy(struct task_struct *p)
155{
156 return rt_policy(p->policy);
157}
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200160 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200162struct rt_prio_array {
163 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
164 struct list_head queue[MAX_RT_PRIO];
165};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200167struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100168 /* nests inside the rq lock: */
169 spinlock_t rt_runtime_lock;
170 ktime_t rt_period;
171 u64 rt_runtime;
172 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200173};
174
175static struct rt_bandwidth def_rt_bandwidth;
176
177static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
178
179static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
180{
181 struct rt_bandwidth *rt_b =
182 container_of(timer, struct rt_bandwidth, rt_period_timer);
183 ktime_t now;
184 int overrun;
185 int idle = 0;
186
187 for (;;) {
188 now = hrtimer_cb_get_time(timer);
189 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
190
191 if (!overrun)
192 break;
193
194 idle = do_sched_rt_period_timer(rt_b, overrun);
195 }
196
197 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
198}
199
200static
201void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
202{
203 rt_b->rt_period = ns_to_ktime(period);
204 rt_b->rt_runtime = runtime;
205
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200206 spin_lock_init(&rt_b->rt_runtime_lock);
207
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200208 hrtimer_init(&rt_b->rt_period_timer,
209 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
210 rt_b->rt_period_timer.function = sched_rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200211}
212
Krzysztof Heltc8bfff62008-09-05 23:46:19 +0200213static inline int rt_bandwidth_enabled(void)
214{
215 return sysctl_sched_rt_runtime >= 0;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200216}
217
218static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
219{
220 ktime_t now;
221
Hiroshi Shimamotocac64d02009-02-25 09:59:26 -0800222 if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200223 return;
224
225 if (hrtimer_active(&rt_b->rt_period_timer))
226 return;
227
228 spin_lock(&rt_b->rt_runtime_lock);
229 for (;;) {
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100230 unsigned long delta;
231 ktime_t soft, hard;
232
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200233 if (hrtimer_active(&rt_b->rt_period_timer))
234 break;
235
236 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
237 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100238
239 soft = hrtimer_get_softexpires(&rt_b->rt_period_timer);
240 hard = hrtimer_get_expires(&rt_b->rt_period_timer);
241 delta = ktime_to_ns(ktime_sub(hard, soft));
242 __hrtimer_start_range_ns(&rt_b->rt_period_timer, soft, delta,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +0530243 HRTIMER_MODE_ABS_PINNED, 0);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200244 }
245 spin_unlock(&rt_b->rt_runtime_lock);
246}
247
248#ifdef CONFIG_RT_GROUP_SCHED
249static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
250{
251 hrtimer_cancel(&rt_b->rt_period_timer);
252}
253#endif
254
Heiko Carstens712555e2008-04-28 11:33:07 +0200255/*
256 * sched_domains_mutex serializes calls to arch_init_sched_domains,
257 * detach_destroy_domains and partition_sched_domains.
258 */
259static DEFINE_MUTEX(sched_domains_mutex);
260
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100261#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200262
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700263#include <linux/cgroup.h>
264
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200265struct cfs_rq;
266
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100267static LIST_HEAD(task_groups);
268
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200269/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200270struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100271#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700272 struct cgroup_subsys_state css;
273#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100274
Arun R Bharadwaj6c415b92008-12-01 20:49:05 +0530275#ifdef CONFIG_USER_SCHED
276 uid_t uid;
277#endif
278
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100279#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200280 /* schedulable entities of this group on each cpu */
281 struct sched_entity **se;
282 /* runqueue "owned" by this group on each cpu */
283 struct cfs_rq **cfs_rq;
284 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100285#endif
286
287#ifdef CONFIG_RT_GROUP_SCHED
288 struct sched_rt_entity **rt_se;
289 struct rt_rq **rt_rq;
290
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200291 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100292#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100293
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100294 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100295 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200296
297 struct task_group *parent;
298 struct list_head siblings;
299 struct list_head children;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200300};
301
Dhaval Giani354d60c2008-04-19 19:44:59 +0200302#ifdef CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200303
Arun R Bharadwaj6c415b92008-12-01 20:49:05 +0530304/* Helper function to pass uid information to create_sched_user() */
305void set_tg_uid(struct user_struct *user)
306{
307 user->tg->uid = user->uid;
308}
309
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200310/*
311 * Root task group.
312 * Every UID task group (including init_task_group aka UID-0) will
313 * be a child to this group.
314 */
315struct task_group root_task_group;
316
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100317#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200318/* Default task group's sched entity on each cpu */
319static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
320/* Default task group's cfs_rq on each cpu */
321static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200322#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100323
324#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100325static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
326static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200327#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +0200328#else /* !CONFIG_USER_SCHED */
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200329#define root_task_group init_task_group
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +0200330#endif /* CONFIG_USER_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100331
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100332/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100333 * a task group's cpu shares.
334 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100335static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100336
Peter Zijlstra57310a92009-03-09 13:56:21 +0100337#ifdef CONFIG_SMP
338static int root_task_group_empty(void)
339{
340 return list_empty(&root_task_group.children);
341}
342#endif
343
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100344#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100345#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100346# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200347#else /* !CONFIG_USER_SCHED */
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100348# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200349#endif /* CONFIG_USER_SCHED */
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200350
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800351/*
Lai Jiangshan2e084782008-06-12 16:42:58 +0800352 * A weight of 0 or 1 can cause arithmetics problems.
353 * A weight of a cfs_rq is the sum of weights of which entities
354 * are queued on this cfs_rq, so a weight of a entity should not be
355 * too large, so as the shares value of a task group.
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800356 * (The default weight is 1024 - so there's no practical
357 * limitation from this.)
358 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200359#define MIN_SHARES 2
Lai Jiangshan2e084782008-06-12 16:42:58 +0800360#define MAX_SHARES (1UL << 18)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200361
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100362static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100363#endif
364
365/* Default task group.
366 * Every task in system belong to this group at bootup.
367 */
Mike Travis434d53b2008-04-04 18:11:04 -0700368struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200369
370/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200371static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200372{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200373 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200374
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100375#ifdef CONFIG_USER_SCHED
David Howellsc69e8d92008-11-14 10:39:19 +1100376 rcu_read_lock();
377 tg = __task_cred(p)->user->tg;
378 rcu_read_unlock();
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100379#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700380 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
381 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200382#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100383 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200384#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200385 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200386}
387
388/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100389static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200390{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100391#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100392 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
393 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100394#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100395
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100396#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100397 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
398 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100399#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200400}
401
402#else
403
Peter Zijlstra57310a92009-03-09 13:56:21 +0100404#ifdef CONFIG_SMP
405static int root_task_group_empty(void)
406{
407 return 1;
408}
409#endif
410
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100411static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Peter Zijlstra83378262008-06-27 13:41:37 +0200412static inline struct task_group *task_group(struct task_struct *p)
413{
414 return NULL;
415}
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200416
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100417#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200418
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200419/* CFS-related fields in a runqueue */
420struct cfs_rq {
421 struct load_weight load;
422 unsigned long nr_running;
423
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200424 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200425 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200426
427 struct rb_root tasks_timeline;
428 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200429
430 struct list_head tasks;
431 struct list_head *balance_iterator;
432
433 /*
434 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200435 * It is set to NULL otherwise (i.e when none are currently running).
436 */
Peter Zijlstra47932412008-11-04 21:25:09 +0100437 struct sched_entity *curr, *next, *last;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200438
Peter Zijlstra5ac5c4d2008-11-10 10:46:32 +0100439 unsigned int nr_spread_over;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200440
Ingo Molnar62160e32007-10-15 17:00:03 +0200441#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200442 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
443
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100444 /*
445 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200446 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
447 * (like users, containers etc.)
448 *
449 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
450 * list is used during load balance.
451 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100452 struct list_head leaf_cfs_rq_list;
453 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200454
455#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200456 /*
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200457 * the part of load.weight contributed by tasks
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200458 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200459 unsigned long task_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200460
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200461 /*
462 * h_load = weight * f(tg)
463 *
464 * Where f(tg) is the recursive weight fraction assigned to
465 * this group.
466 */
467 unsigned long h_load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200468
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200469 /*
470 * this cpu's part of tg->shares
471 */
472 unsigned long shares;
Peter Zijlstraf1d239f2008-06-27 13:41:38 +0200473
474 /*
475 * load.weight at the time we set shares
476 */
477 unsigned long rq_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200478#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200479#endif
480};
481
482/* Real-Time classes' related field in a runqueue: */
483struct rt_rq {
484 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100485 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100486#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -0500487 struct {
488 int curr; /* highest queued rt task prio */
Gregory Haskins398a1532009-01-14 09:10:04 -0500489#ifdef CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -0500490 int next; /* next highest */
Gregory Haskins398a1532009-01-14 09:10:04 -0500491#endif
Gregory Haskinse864c492008-12-29 09:39:49 -0500492 } highest_prio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100493#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100494#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100495 unsigned long rt_nr_migratory;
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200496 unsigned long rt_nr_total;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100497 int overloaded;
Gregory Haskins917b6272008-12-29 09:39:53 -0500498 struct plist_head pushable_tasks;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100499#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100500 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100501 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200502 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100503 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200504 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100505
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100506#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100507 unsigned long rt_nr_boosted;
508
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100509 struct rq *rq;
510 struct list_head leaf_rt_rq_list;
511 struct task_group *tg;
512 struct sched_rt_entity *rt_se;
513#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200514};
515
Gregory Haskins57d885f2008-01-25 21:08:18 +0100516#ifdef CONFIG_SMP
517
518/*
519 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100520 * variables. Each exclusive cpuset essentially defines an island domain by
521 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100522 * exclusive cpuset is created, we also create and attach a new root-domain
523 * object.
524 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100525 */
526struct root_domain {
527 atomic_t refcount;
Rusty Russellc6c49272008-11-25 02:35:05 +1030528 cpumask_var_t span;
529 cpumask_var_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100530
Ingo Molnar0eab9142008-01-25 21:08:19 +0100531 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100532 * The "RT overload" flag: it gets set if a CPU has more than
533 * one runnable RT task.
534 */
Rusty Russellc6c49272008-11-25 02:35:05 +1030535 cpumask_var_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100536 atomic_t rto_count;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200537#ifdef CONFIG_SMP
538 struct cpupri cpupri;
539#endif
Vaidyanathan Srinivasan7a09b1a2008-12-18 23:26:22 +0530540#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
541 /*
542 * Preferred wake up cpu nominated by sched_mc balance that will be
543 * used when most cpus are idle in the system indicating overall very
544 * low system utilisation. Triggered at POWERSAVINGS_BALANCE_WAKEUP(2)
545 */
546 unsigned int sched_mc_preferred_wakeup_cpu;
547#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +0100548};
549
Gregory Haskinsdc938522008-01-25 21:08:26 +0100550/*
551 * By default the system creates a single root-domain with all cpus as
552 * members (mimicking the global state we have today).
553 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100554static struct root_domain def_root_domain;
555
556#endif
557
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200558/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 * This is the main, per-CPU runqueue data structure.
560 *
561 * Locking rule: those places that want to lock multiple runqueues
562 * (such as the load balancing or the thread migration code), lock
563 * acquire operations must be ordered by ascending &runqueue.
564 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700565struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200566 /* runqueue lock: */
567 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 /*
570 * nr_running and cpu_load should be in the same cacheline because
571 * remote CPUs use both these fields when doing load calculation.
572 */
573 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200574 #define CPU_LOAD_IDX_MAX 5
575 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700576#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200577 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700578 unsigned char in_nohz_recently;
579#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200580 /* capture load from *all* tasks on this cpu: */
581 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200582 unsigned long nr_load_updates;
583 u64 nr_switches;
Paul Mackerras23a185c2009-02-09 22:42:47 +1100584 u64 nr_migrations_in;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200585
586 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100587 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100588
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200589#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200590 /* list of leaf cfs_rq on this cpu: */
591 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100592#endif
593#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100594 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 /*
598 * This is part of a global counter where only the total sum
599 * over all CPUs matters. A task can increase this counter on
600 * one CPU and if it got migrated afterwards it may decrease
601 * it on another CPU. Always updated under the runqueue lock:
602 */
603 unsigned long nr_uninterruptible;
604
Ingo Molnar36c8b582006-07-03 00:25:41 -0700605 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800606 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200608
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200609 u64 clock;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 atomic_t nr_iowait;
612
613#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100614 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct sched_domain *sd;
616
Henrik Austada0a522c2009-02-13 20:35:45 +0100617 unsigned char idle_at_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /* For active balancing */
619 int active_balance;
620 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200621 /* cpu of this runqueue: */
622 int cpu;
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400623 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Peter Zijlstraa8a51d52008-06-27 13:41:26 +0200625 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Ingo Molnar36c8b582006-07-03 00:25:41 -0700627 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 struct list_head migration_queue;
629#endif
630
Thomas Gleixnerdce48a82009-04-11 10:43:41 +0200631 /* calc_load related fields */
632 unsigned long calc_load_update;
633 long calc_load_active;
634
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100635#ifdef CONFIG_SCHED_HRTICK
Peter Zijlstra31656512008-07-18 18:01:23 +0200636#ifdef CONFIG_SMP
637 int hrtick_csd_pending;
638 struct call_single_data hrtick_csd;
639#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100640 struct hrtimer hrtick_timer;
641#endif
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643#ifdef CONFIG_SCHEDSTATS
644 /* latency stats */
645 struct sched_info rq_sched_info;
Ken Chen9c2c4802008-12-16 23:41:22 -0800646 unsigned long long rq_cpu_time;
647 /* could above be rq->cfs_rq.exec_clock + rq->rt_rq.rt_runtime ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200650 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200653 unsigned int sched_switch;
654 unsigned int sched_count;
655 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200658 unsigned int ttwu_count;
659 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200660
661 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200662 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663#endif
664};
665
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700666static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Peter Zijlstra15afe092008-09-20 23:38:02 +0200668static inline void check_preempt_curr(struct rq *rq, struct task_struct *p, int sync)
Ingo Molnardd41f592007-07-09 18:51:59 +0200669{
Peter Zijlstra15afe092008-09-20 23:38:02 +0200670 rq->curr->sched_class->check_preempt_curr(rq, p, sync);
Ingo Molnardd41f592007-07-09 18:51:59 +0200671}
672
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700673static inline int cpu_of(struct rq *rq)
674{
675#ifdef CONFIG_SMP
676 return rq->cpu;
677#else
678 return 0;
679#endif
680}
681
Ingo Molnar20d315d2007-07-09 18:51:58 +0200682/*
Nick Piggin674311d2005-06-25 14:57:27 -0700683 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700684 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700685 *
686 * The domain tree of any CPU may only be accessed from within
687 * preempt-disabled sections.
688 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700689#define for_each_domain(cpu, __sd) \
690 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
693#define this_rq() (&__get_cpu_var(runqueues))
694#define task_rq(p) cpu_rq(task_cpu(p))
695#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
696
Ingo Molnaraa9c4c02008-12-17 14:10:57 +0100697inline void update_rq_clock(struct rq *rq)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200698{
699 rq->clock = sched_clock_cpu(cpu_of(rq));
700}
701
Ingo Molnare436d802007-07-19 21:28:35 +0200702/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200703 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
704 */
705#ifdef CONFIG_SCHED_DEBUG
706# define const_debug __read_mostly
707#else
708# define const_debug static const
709#endif
710
Ingo Molnar017730c2008-05-12 21:20:52 +0200711/**
712 * runqueue_is_locked
713 *
714 * Returns true if the current cpu runqueue is locked.
715 * This interface allows printk to be called with the runqueue lock
716 * held and know whether or not it is OK to wake up the klogd.
717 */
718int runqueue_is_locked(void)
719{
720 int cpu = get_cpu();
721 struct rq *rq = cpu_rq(cpu);
722 int ret;
723
724 ret = spin_is_locked(&rq->lock);
725 put_cpu();
726 return ret;
727}
728
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200729/*
730 * Debugging: various feature bits
731 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200732
733#define SCHED_FEAT(name, enabled) \
734 __SCHED_FEAT_##name ,
735
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200736enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200737#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200738};
739
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200740#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200741
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200742#define SCHED_FEAT(name, enabled) \
743 (1UL << __SCHED_FEAT_##name) * enabled |
744
745const_debug unsigned int sysctl_sched_features =
746#include "sched_features.h"
747 0;
748
749#undef SCHED_FEAT
750
751#ifdef CONFIG_SCHED_DEBUG
752#define SCHED_FEAT(name, enabled) \
753 #name ,
754
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700755static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200756#include "sched_features.h"
757 NULL
758};
759
760#undef SCHED_FEAT
761
Li Zefan34f3a812008-10-30 15:23:32 +0800762static int sched_feat_show(struct seq_file *m, void *v)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200763{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200764 int i;
765
766 for (i = 0; sched_feat_names[i]; i++) {
Li Zefan34f3a812008-10-30 15:23:32 +0800767 if (!(sysctl_sched_features & (1UL << i)))
768 seq_puts(m, "NO_");
769 seq_printf(m, "%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200770 }
Li Zefan34f3a812008-10-30 15:23:32 +0800771 seq_puts(m, "\n");
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200772
Li Zefan34f3a812008-10-30 15:23:32 +0800773 return 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200774}
775
776static ssize_t
777sched_feat_write(struct file *filp, const char __user *ubuf,
778 size_t cnt, loff_t *ppos)
779{
780 char buf[64];
781 char *cmp = buf;
782 int neg = 0;
783 int i;
784
785 if (cnt > 63)
786 cnt = 63;
787
788 if (copy_from_user(&buf, ubuf, cnt))
789 return -EFAULT;
790
791 buf[cnt] = 0;
792
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200793 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200794 neg = 1;
795 cmp += 3;
796 }
797
798 for (i = 0; sched_feat_names[i]; i++) {
799 int len = strlen(sched_feat_names[i]);
800
801 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
802 if (neg)
803 sysctl_sched_features &= ~(1UL << i);
804 else
805 sysctl_sched_features |= (1UL << i);
806 break;
807 }
808 }
809
810 if (!sched_feat_names[i])
811 return -EINVAL;
812
813 filp->f_pos += cnt;
814
815 return cnt;
816}
817
Li Zefan34f3a812008-10-30 15:23:32 +0800818static int sched_feat_open(struct inode *inode, struct file *filp)
819{
820 return single_open(filp, sched_feat_show, NULL);
821}
822
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200823static struct file_operations sched_feat_fops = {
Li Zefan34f3a812008-10-30 15:23:32 +0800824 .open = sched_feat_open,
825 .write = sched_feat_write,
826 .read = seq_read,
827 .llseek = seq_lseek,
828 .release = single_release,
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200829};
830
831static __init int sched_init_debug(void)
832{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200833 debugfs_create_file("sched_features", 0644, NULL, NULL,
834 &sched_feat_fops);
835
836 return 0;
837}
838late_initcall(sched_init_debug);
839
840#endif
841
842#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200843
844/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100845 * Number of tasks to iterate in a single balance run.
846 * Limited because this is done with IRQs disabled.
847 */
848const_debug unsigned int sysctl_sched_nr_migrate = 32;
849
850/*
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200851 * ratelimit for updating the group shares.
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200852 * default: 0.25ms
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200853 */
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200854unsigned int sysctl_sched_shares_ratelimit = 250000;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200855
856/*
Peter Zijlstraffda12a2008-10-17 19:27:02 +0200857 * Inject some fuzzyness into changing the per-cpu group shares
858 * this avoids remote rq-locks at the expense of fairness.
859 * default: 4
860 */
861unsigned int sysctl_sched_shares_thresh = 4;
862
863/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100864 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100865 * default: 1s
866 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100867unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100868
Ingo Molnar6892b752008-02-13 14:02:36 +0100869static __read_mostly int scheduler_running;
870
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100871/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100872 * part of the period that we allow rt tasks to run in us.
873 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100874 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100875int sysctl_sched_rt_runtime = 950000;
876
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200877static inline u64 global_rt_period(void)
878{
879 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
880}
881
882static inline u64 global_rt_runtime(void)
883{
roel kluine26873b2008-07-22 16:51:15 -0400884 if (sysctl_sched_rt_runtime < 0)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200885 return RUNTIME_INF;
886
887 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
888}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700891# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700893#ifndef finish_arch_switch
894# define finish_arch_switch(prev) do { } while (0)
895#endif
896
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100897static inline int task_current(struct rq *rq, struct task_struct *p)
898{
899 return rq->curr == p;
900}
901
Nick Piggin4866cde2005-06-25 14:57:23 -0700902#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700903static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700904{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100905 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700906}
907
Ingo Molnar70b97a72006-07-03 00:25:42 -0700908static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700909{
910}
911
Ingo Molnar70b97a72006-07-03 00:25:42 -0700912static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700913{
Ingo Molnarda04c032005-09-13 11:17:59 +0200914#ifdef CONFIG_DEBUG_SPINLOCK
915 /* this is a valid case when another task releases the spinlock */
916 rq->lock.owner = current;
917#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700918 /*
919 * If we are tracking spinlock dependencies then we have to
920 * fix up the runqueue lock - which gets 'carried over' from
921 * prev into current:
922 */
923 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
924
Nick Piggin4866cde2005-06-25 14:57:23 -0700925 spin_unlock_irq(&rq->lock);
926}
927
928#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700929static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700930{
931#ifdef CONFIG_SMP
932 return p->oncpu;
933#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100934 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700935#endif
936}
937
Ingo Molnar70b97a72006-07-03 00:25:42 -0700938static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700939{
940#ifdef CONFIG_SMP
941 /*
942 * We can optimise this out completely for !SMP, because the
943 * SMP rebalancing from interrupt is the only thing that cares
944 * here.
945 */
946 next->oncpu = 1;
947#endif
948#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
949 spin_unlock_irq(&rq->lock);
950#else
951 spin_unlock(&rq->lock);
952#endif
953}
954
Ingo Molnar70b97a72006-07-03 00:25:42 -0700955static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700956{
957#ifdef CONFIG_SMP
958 /*
959 * After ->oncpu is cleared, the task can be moved to a different CPU.
960 * We must ensure this doesn't happen until the switch is completely
961 * finished.
962 */
963 smp_wmb();
964 prev->oncpu = 0;
965#endif
966#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
967 local_irq_enable();
968#endif
969}
970#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700973 * __task_rq_lock - lock the runqueue a given task resides on.
974 * Must be called interrupts disabled.
975 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700976static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700977 __acquires(rq->lock)
978{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200979 for (;;) {
980 struct rq *rq = task_rq(p);
981 spin_lock(&rq->lock);
982 if (likely(rq == task_rq(p)))
983 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700984 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700985 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700986}
987
988/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100990 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 * explicitly disabling preemption.
992 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700993static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 __acquires(rq->lock)
995{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700996 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Andi Kleen3a5c3592007-10-15 17:00:14 +0200998 for (;;) {
999 local_irq_save(*flags);
1000 rq = task_rq(p);
1001 spin_lock(&rq->lock);
1002 if (likely(rq == task_rq(p)))
1003 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
Oleg Nesterovad474ca2008-11-10 15:39:30 +01001008void task_rq_unlock_wait(struct task_struct *p)
1009{
1010 struct rq *rq = task_rq(p);
1011
1012 smp_mb(); /* spin-unlock-wait is not a full memory barrier */
1013 spin_unlock_wait(&rq->lock);
1014}
1015
Alexey Dobriyana9957442007-10-15 17:00:13 +02001016static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001017 __releases(rq->lock)
1018{
1019 spin_unlock(&rq->lock);
1020}
1021
Ingo Molnar70b97a72006-07-03 00:25:42 -07001022static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 __releases(rq->lock)
1024{
1025 spin_unlock_irqrestore(&rq->lock, *flags);
1026}
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -08001029 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001031static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 __acquires(rq->lock)
1033{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001034 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 local_irq_disable();
1037 rq = this_rq();
1038 spin_lock(&rq->lock);
1039
1040 return rq;
1041}
1042
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001043#ifdef CONFIG_SCHED_HRTICK
1044/*
1045 * Use HR-timers to deliver accurate preemption points.
1046 *
1047 * Its all a bit involved since we cannot program an hrt while holding the
1048 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1049 * reschedule event.
1050 *
1051 * When we get rescheduled we reprogram the hrtick_timer outside of the
1052 * rq->lock.
1053 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001054
1055/*
1056 * Use hrtick when:
1057 * - enabled by features
1058 * - hrtimer is actually high res
1059 */
1060static inline int hrtick_enabled(struct rq *rq)
1061{
1062 if (!sched_feat(HRTICK))
1063 return 0;
Ingo Molnarba420592008-07-20 11:02:06 +02001064 if (!cpu_active(cpu_of(rq)))
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001065 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001066 return hrtimer_is_hres_active(&rq->hrtick_timer);
1067}
1068
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001069static void hrtick_clear(struct rq *rq)
1070{
1071 if (hrtimer_active(&rq->hrtick_timer))
1072 hrtimer_cancel(&rq->hrtick_timer);
1073}
1074
1075/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001076 * High-resolution timer tick.
1077 * Runs from hardirq context with interrupts disabled.
1078 */
1079static enum hrtimer_restart hrtick(struct hrtimer *timer)
1080{
1081 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1082
1083 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1084
1085 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001086 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001087 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1088 spin_unlock(&rq->lock);
1089
1090 return HRTIMER_NORESTART;
1091}
1092
Rabin Vincent95e904c2008-05-11 05:55:33 +05301093#ifdef CONFIG_SMP
Peter Zijlstra31656512008-07-18 18:01:23 +02001094/*
1095 * called from hardirq (IPI) context
1096 */
1097static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001098{
Peter Zijlstra31656512008-07-18 18:01:23 +02001099 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001100
Peter Zijlstra31656512008-07-18 18:01:23 +02001101 spin_lock(&rq->lock);
1102 hrtimer_restart(&rq->hrtick_timer);
1103 rq->hrtick_csd_pending = 0;
1104 spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001105}
1106
Peter Zijlstra31656512008-07-18 18:01:23 +02001107/*
1108 * Called to set the hrtick timer state.
1109 *
1110 * called with rq->lock held and irqs disabled
1111 */
1112static void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001113{
Peter Zijlstra31656512008-07-18 18:01:23 +02001114 struct hrtimer *timer = &rq->hrtick_timer;
1115 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001116
Arjan van de Vencc584b22008-09-01 15:02:30 -07001117 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +02001118
1119 if (rq == this_rq()) {
1120 hrtimer_restart(timer);
1121 } else if (!rq->hrtick_csd_pending) {
Peter Zijlstra6e275632009-02-25 13:59:48 +01001122 __smp_call_function_single(cpu_of(rq), &rq->hrtick_csd, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +02001123 rq->hrtick_csd_pending = 1;
1124 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001125}
1126
1127static int
1128hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1129{
1130 int cpu = (int)(long)hcpu;
1131
1132 switch (action) {
1133 case CPU_UP_CANCELED:
1134 case CPU_UP_CANCELED_FROZEN:
1135 case CPU_DOWN_PREPARE:
1136 case CPU_DOWN_PREPARE_FROZEN:
1137 case CPU_DEAD:
1138 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +02001139 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001140 return NOTIFY_OK;
1141 }
1142
1143 return NOTIFY_DONE;
1144}
1145
Rakib Mullickfa748202008-09-22 14:55:45 -07001146static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001147{
1148 hotcpu_notifier(hotplug_hrtick, 0);
1149}
Peter Zijlstra31656512008-07-18 18:01:23 +02001150#else
1151/*
1152 * Called to set the hrtick timer state.
1153 *
1154 * called with rq->lock held and irqs disabled
1155 */
1156static void hrtick_start(struct rq *rq, u64 delay)
1157{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001158 __hrtimer_start_range_ns(&rq->hrtick_timer, ns_to_ktime(delay), 0,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +05301159 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +02001160}
1161
Andrew Morton006c75f2008-09-22 14:55:46 -07001162static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +02001163{
1164}
Rabin Vincent95e904c2008-05-11 05:55:33 +05301165#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001166
1167static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001168{
Peter Zijlstra31656512008-07-18 18:01:23 +02001169#ifdef CONFIG_SMP
1170 rq->hrtick_csd_pending = 0;
1171
1172 rq->hrtick_csd.flags = 0;
1173 rq->hrtick_csd.func = __hrtick_start;
1174 rq->hrtick_csd.info = rq;
1175#endif
1176
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001177 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1178 rq->hrtick_timer.function = hrtick;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001179}
Andrew Morton006c75f2008-09-22 14:55:46 -07001180#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001181static inline void hrtick_clear(struct rq *rq)
1182{
1183}
1184
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001185static inline void init_rq_hrtick(struct rq *rq)
1186{
1187}
1188
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001189static inline void init_hrtick(void)
1190{
1191}
Andrew Morton006c75f2008-09-22 14:55:46 -07001192#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001193
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001194/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001195 * resched_task - mark a task 'to be rescheduled now'.
1196 *
1197 * On UP this means the setting of the need_resched flag, on SMP it
1198 * might also involve a cross-CPU call to trigger the scheduler on
1199 * the target CPU.
1200 */
1201#ifdef CONFIG_SMP
1202
1203#ifndef tsk_is_polling
1204#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1205#endif
1206
Peter Zijlstra31656512008-07-18 18:01:23 +02001207static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001208{
1209 int cpu;
1210
1211 assert_spin_locked(&task_rq(p)->lock);
1212
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001213 if (test_tsk_need_resched(p))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001214 return;
1215
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001216 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001217
1218 cpu = task_cpu(p);
1219 if (cpu == smp_processor_id())
1220 return;
1221
1222 /* NEED_RESCHED must be visible before we test polling */
1223 smp_mb();
1224 if (!tsk_is_polling(p))
1225 smp_send_reschedule(cpu);
1226}
1227
1228static void resched_cpu(int cpu)
1229{
1230 struct rq *rq = cpu_rq(cpu);
1231 unsigned long flags;
1232
1233 if (!spin_trylock_irqsave(&rq->lock, flags))
1234 return;
1235 resched_task(cpu_curr(cpu));
1236 spin_unlock_irqrestore(&rq->lock, flags);
1237}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001238
1239#ifdef CONFIG_NO_HZ
1240/*
1241 * When add_timer_on() enqueues a timer into the timer wheel of an
1242 * idle CPU then this timer might expire before the next timer event
1243 * which is scheduled to wake up that CPU. In case of a completely
1244 * idle system the next event might even be infinite time into the
1245 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1246 * leaves the inner idle loop so the newly added timer is taken into
1247 * account when the CPU goes back to idle and evaluates the timer
1248 * wheel for the next timer event.
1249 */
1250void wake_up_idle_cpu(int cpu)
1251{
1252 struct rq *rq = cpu_rq(cpu);
1253
1254 if (cpu == smp_processor_id())
1255 return;
1256
1257 /*
1258 * This is safe, as this function is called with the timer
1259 * wheel base lock of (cpu) held. When the CPU is on the way
1260 * to idle and has not yet set rq->curr to idle then it will
1261 * be serialized on the timer wheel base lock and take the new
1262 * timer into account automatically.
1263 */
1264 if (rq->curr != rq->idle)
1265 return;
1266
1267 /*
1268 * We can set TIF_RESCHED on the idle task of the other CPU
1269 * lockless. The worst case is that the other CPU runs the
1270 * idle task through an additional NOOP schedule()
1271 */
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001272 set_tsk_need_resched(rq->idle);
Thomas Gleixner06d83082008-03-22 09:20:24 +01001273
1274 /* NEED_RESCHED must be visible before we test polling */
1275 smp_mb();
1276 if (!tsk_is_polling(rq->idle))
1277 smp_send_reschedule(cpu);
1278}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001279#endif /* CONFIG_NO_HZ */
Thomas Gleixner06d83082008-03-22 09:20:24 +01001280
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001281#else /* !CONFIG_SMP */
Peter Zijlstra31656512008-07-18 18:01:23 +02001282static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001283{
1284 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001285 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001286}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001287#endif /* CONFIG_SMP */
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001288
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001289#if BITS_PER_LONG == 32
1290# define WMULT_CONST (~0UL)
1291#else
1292# define WMULT_CONST (1UL << 32)
1293#endif
1294
1295#define WMULT_SHIFT 32
1296
Ingo Molnar194081e2007-08-09 11:16:51 +02001297/*
1298 * Shift right and round:
1299 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001300#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001301
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001302/*
1303 * delta *= weight / lw
1304 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001305static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001306calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1307 struct load_weight *lw)
1308{
1309 u64 tmp;
1310
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001311 if (!lw->inv_weight) {
1312 if (BITS_PER_LONG > 32 && unlikely(lw->weight >= WMULT_CONST))
1313 lw->inv_weight = 1;
1314 else
1315 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)
1316 / (lw->weight+1);
1317 }
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001318
1319 tmp = (u64)delta_exec * weight;
1320 /*
1321 * Check whether we'd overflow the 64-bit multiplication:
1322 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001323 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001324 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001325 WMULT_SHIFT/2);
1326 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001327 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001328
Ingo Molnarecf691d2007-08-02 17:41:40 +02001329 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001330}
1331
Ingo Molnar10919852007-10-15 17:00:04 +02001332static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001333{
1334 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001335 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001336}
1337
Ingo Molnar10919852007-10-15 17:00:04 +02001338static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001339{
1340 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001341 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001342}
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001345 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1346 * of tasks with abnormal "nice" values across CPUs the contribution that
1347 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001348 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001349 * scaled version of the new time slice allocation that they receive on time
1350 * slice expiry etc.
1351 */
1352
Peter Zijlstracce7ade2009-01-15 14:53:37 +01001353#define WEIGHT_IDLEPRIO 3
1354#define WMULT_IDLEPRIO 1431655765
Ingo Molnardd41f592007-07-09 18:51:59 +02001355
1356/*
1357 * Nice levels are multiplicative, with a gentle 10% change for every
1358 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1359 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1360 * that remained on nice 0.
1361 *
1362 * The "10% effect" is relative and cumulative: from _any_ nice level,
1363 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001364 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1365 * If a task goes up by ~10% and another task goes down by ~10% then
1366 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001367 */
1368static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001369 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1370 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1371 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1372 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1373 /* 0 */ 1024, 820, 655, 526, 423,
1374 /* 5 */ 335, 272, 215, 172, 137,
1375 /* 10 */ 110, 87, 70, 56, 45,
1376 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001377};
1378
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001379/*
1380 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1381 *
1382 * In cases where the weight does not change often, we can use the
1383 * precalculated inverse to speed up arithmetics by turning divisions
1384 * into multiplications:
1385 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001386static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001387 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1388 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1389 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1390 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1391 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1392 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1393 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1394 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001395};
Peter Williams2dd73a42006-06-27 02:54:34 -07001396
Ingo Molnardd41f592007-07-09 18:51:59 +02001397static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1398
1399/*
1400 * runqueue iterator, to support SMP load-balancing between different
1401 * scheduling classes, without having to expose their internal data
1402 * structures to the load-balancing proper:
1403 */
1404struct rq_iterator {
1405 void *arg;
1406 struct task_struct *(*start)(void *);
1407 struct task_struct *(*next)(void *);
1408};
1409
Peter Williamse1d14842007-10-24 18:23:51 +02001410#ifdef CONFIG_SMP
1411static unsigned long
1412balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1413 unsigned long max_load_move, struct sched_domain *sd,
1414 enum cpu_idle_type idle, int *all_pinned,
1415 int *this_best_prio, struct rq_iterator *iterator);
1416
1417static int
1418iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1419 struct sched_domain *sd, enum cpu_idle_type idle,
1420 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001421#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001422
Bharata B Raoef12fef2009-03-31 10:02:22 +05301423/* Time spent by the tasks of the cpu accounting group executing in ... */
1424enum cpuacct_stat_index {
1425 CPUACCT_STAT_USER, /* ... user mode */
1426 CPUACCT_STAT_SYSTEM, /* ... kernel mode */
1427
1428 CPUACCT_STAT_NSTATS,
1429};
1430
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001431#ifdef CONFIG_CGROUP_CPUACCT
1432static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
Bharata B Raoef12fef2009-03-31 10:02:22 +05301433static void cpuacct_update_stats(struct task_struct *tsk,
1434 enum cpuacct_stat_index idx, cputime_t val);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001435#else
1436static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
Bharata B Raoef12fef2009-03-31 10:02:22 +05301437static inline void cpuacct_update_stats(struct task_struct *tsk,
1438 enum cpuacct_stat_index idx, cputime_t val) {}
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001439#endif
1440
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001441static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1442{
1443 update_load_add(&rq->load, load);
1444}
1445
1446static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1447{
1448 update_load_sub(&rq->load, load);
1449}
1450
Ingo Molnar7940ca32008-08-19 13:40:47 +02001451#if (defined(CONFIG_SMP) && defined(CONFIG_FAIR_GROUP_SCHED)) || defined(CONFIG_RT_GROUP_SCHED)
Peter Zijlstraeb755802008-08-19 12:33:05 +02001452typedef int (*tg_visitor)(struct task_group *, void *);
1453
1454/*
1455 * Iterate the full tree, calling @down when first entering a node and @up when
1456 * leaving it for the final time.
1457 */
1458static int walk_tg_tree(tg_visitor down, tg_visitor up, void *data)
1459{
1460 struct task_group *parent, *child;
1461 int ret;
1462
1463 rcu_read_lock();
1464 parent = &root_task_group;
1465down:
1466 ret = (*down)(parent, data);
1467 if (ret)
1468 goto out_unlock;
1469 list_for_each_entry_rcu(child, &parent->children, siblings) {
1470 parent = child;
1471 goto down;
1472
1473up:
1474 continue;
1475 }
1476 ret = (*up)(parent, data);
1477 if (ret)
1478 goto out_unlock;
1479
1480 child = parent;
1481 parent = parent->parent;
1482 if (parent)
1483 goto up;
1484out_unlock:
1485 rcu_read_unlock();
1486
1487 return ret;
1488}
1489
1490static int tg_nop(struct task_group *tg, void *data)
1491{
1492 return 0;
1493}
1494#endif
1495
Gregory Haskinse7693a32008-01-25 21:08:09 +01001496#ifdef CONFIG_SMP
1497static unsigned long source_load(int cpu, int type);
1498static unsigned long target_load(int cpu, int type);
Gregory Haskinse7693a32008-01-25 21:08:09 +01001499static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001500
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001501static unsigned long cpu_avg_load_per_task(int cpu)
1502{
1503 struct rq *rq = cpu_rq(cpu);
Ingo Molnaraf6d5962008-11-29 20:45:15 +01001504 unsigned long nr_running = ACCESS_ONCE(rq->nr_running);
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001505
Steven Rostedt4cd42622008-11-26 21:04:24 -05001506 if (nr_running)
1507 rq->avg_load_per_task = rq->load.weight / nr_running;
Balbir Singha2d47772008-11-12 16:19:00 +05301508 else
1509 rq->avg_load_per_task = 0;
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001510
1511 return rq->avg_load_per_task;
1512}
1513
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001514#ifdef CONFIG_FAIR_GROUP_SCHED
1515
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001516static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1517
1518/*
1519 * Calculate and set the cpu's group shares.
1520 */
1521static void
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001522update_group_shares_cpu(struct task_group *tg, int cpu,
1523 unsigned long sd_shares, unsigned long sd_rq_weight)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001524{
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001525 unsigned long shares;
1526 unsigned long rq_weight;
1527
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001528 if (!tg->se[cpu])
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001529 return;
1530
Ken Chenec4e0e22008-11-18 22:41:57 -08001531 rq_weight = tg->cfs_rq[cpu]->rq_weight;
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001532
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001533 /*
1534 * \Sum shares * rq_weight
1535 * shares = -----------------------
1536 * \Sum rq_weight
1537 *
1538 */
Ken Chenec4e0e22008-11-18 22:41:57 -08001539 shares = (sd_shares * rq_weight) / sd_rq_weight;
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001540 shares = clamp_t(unsigned long, shares, MIN_SHARES, MAX_SHARES);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001541
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001542 if (abs(shares - tg->se[cpu]->load.weight) >
1543 sysctl_sched_shares_thresh) {
1544 struct rq *rq = cpu_rq(cpu);
1545 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001546
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001547 spin_lock_irqsave(&rq->lock, flags);
Ken Chenec4e0e22008-11-18 22:41:57 -08001548 tg->cfs_rq[cpu]->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001549
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001550 __set_se_shares(tg->se[cpu], shares);
1551 spin_unlock_irqrestore(&rq->lock, flags);
1552 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001553}
1554
1555/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001556 * Re-compute the task group their per cpu shares over the given domain.
1557 * This needs to be done in a bottom-up fashion because the rq weight of a
1558 * parent group depends on the shares of its child groups.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001559 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001560static int tg_shares_up(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001561{
Ken Chenec4e0e22008-11-18 22:41:57 -08001562 unsigned long weight, rq_weight = 0;
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001563 unsigned long shares = 0;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001564 struct sched_domain *sd = data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001565 int i;
1566
Rusty Russell758b2cd2008-11-25 02:35:04 +10301567 for_each_cpu(i, sched_domain_span(sd)) {
Ken Chenec4e0e22008-11-18 22:41:57 -08001568 /*
1569 * If there are currently no tasks on the cpu pretend there
1570 * is one of average load so that when a new task gets to
1571 * run here it will not get delayed by group starvation.
1572 */
1573 weight = tg->cfs_rq[i]->load.weight;
1574 if (!weight)
1575 weight = NICE_0_LOAD;
1576
1577 tg->cfs_rq[i]->rq_weight = weight;
1578 rq_weight += weight;
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001579 shares += tg->cfs_rq[i]->shares;
1580 }
1581
1582 if ((!shares && rq_weight) || shares > tg->shares)
1583 shares = tg->shares;
1584
1585 if (!sd->parent || !(sd->parent->flags & SD_LOAD_BALANCE))
1586 shares = tg->shares;
1587
Rusty Russell758b2cd2008-11-25 02:35:04 +10301588 for_each_cpu(i, sched_domain_span(sd))
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001589 update_group_shares_cpu(tg, i, shares, rq_weight);
Peter Zijlstraeb755802008-08-19 12:33:05 +02001590
1591 return 0;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001592}
1593
1594/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001595 * Compute the cpu's hierarchical load factor for each task group.
1596 * This needs to be done in a top-down fashion because the load of a child
1597 * group is a fraction of its parents load.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001598 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001599static int tg_load_down(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001600{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001601 unsigned long load;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001602 long cpu = (long)data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001603
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001604 if (!tg->parent) {
1605 load = cpu_rq(cpu)->load.weight;
1606 } else {
1607 load = tg->parent->cfs_rq[cpu]->h_load;
1608 load *= tg->cfs_rq[cpu]->shares;
1609 load /= tg->parent->cfs_rq[cpu]->load.weight + 1;
1610 }
1611
1612 tg->cfs_rq[cpu]->h_load = load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001613
Peter Zijlstraeb755802008-08-19 12:33:05 +02001614 return 0;
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001615}
1616
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001617static void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001618{
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001619 u64 now = cpu_clock(raw_smp_processor_id());
1620 s64 elapsed = now - sd->last_update;
1621
1622 if (elapsed >= (s64)(u64)sysctl_sched_shares_ratelimit) {
1623 sd->last_update = now;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001624 walk_tg_tree(tg_nop, tg_shares_up, sd);
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001625 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001626}
1627
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001628static void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1629{
1630 spin_unlock(&rq->lock);
1631 update_shares(sd);
1632 spin_lock(&rq->lock);
1633}
1634
Peter Zijlstraeb755802008-08-19 12:33:05 +02001635static void update_h_load(long cpu)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001636{
Peter Zijlstraeb755802008-08-19 12:33:05 +02001637 walk_tg_tree(tg_load_down, tg_nop, (void *)cpu);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001638}
1639
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001640#else
1641
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001642static inline void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001643{
1644}
1645
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001646static inline void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1647{
1648}
1649
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001650#endif
1651
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001652#ifdef CONFIG_PREEMPT
1653
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001654/*
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001655 * fair double_lock_balance: Safely acquires both rq->locks in a fair
1656 * way at the expense of forcing extra atomic operations in all
1657 * invocations. This assures that the double_lock is acquired using the
1658 * same underlying policy as the spinlock_t on this architecture, which
1659 * reduces latency compared to the unfair variant below. However, it
1660 * also adds more overhead and therefore may reduce throughput.
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001661 */
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001662static inline int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
1663 __releases(this_rq->lock)
1664 __acquires(busiest->lock)
1665 __acquires(this_rq->lock)
1666{
1667 spin_unlock(&this_rq->lock);
1668 double_rq_lock(this_rq, busiest);
1669
1670 return 1;
1671}
1672
1673#else
1674/*
1675 * Unfair double_lock_balance: Optimizes throughput at the expense of
1676 * latency by eliminating extra atomic operations when the locks are
1677 * already in proper order on entry. This favors lower cpu-ids and will
1678 * grant the double lock to lower cpus over higher ids under contention,
1679 * regardless of entry order into the function.
1680 */
1681static int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001682 __releases(this_rq->lock)
1683 __acquires(busiest->lock)
1684 __acquires(this_rq->lock)
1685{
1686 int ret = 0;
1687
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001688 if (unlikely(!spin_trylock(&busiest->lock))) {
1689 if (busiest < this_rq) {
1690 spin_unlock(&this_rq->lock);
1691 spin_lock(&busiest->lock);
1692 spin_lock_nested(&this_rq->lock, SINGLE_DEPTH_NESTING);
1693 ret = 1;
1694 } else
1695 spin_lock_nested(&busiest->lock, SINGLE_DEPTH_NESTING);
1696 }
1697 return ret;
1698}
1699
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001700#endif /* CONFIG_PREEMPT */
1701
1702/*
1703 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1704 */
1705static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
1706{
1707 if (unlikely(!irqs_disabled())) {
1708 /* printk() doesn't work good under rq->lock */
1709 spin_unlock(&this_rq->lock);
1710 BUG_ON(1);
1711 }
1712
1713 return _double_lock_balance(this_rq, busiest);
1714}
1715
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001716static inline void double_unlock_balance(struct rq *this_rq, struct rq *busiest)
1717 __releases(busiest->lock)
1718{
1719 spin_unlock(&busiest->lock);
1720 lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_);
1721}
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001722#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001723
1724#ifdef CONFIG_FAIR_GROUP_SCHED
1725static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1726{
Vegard Nossum30432092008-06-27 21:35:50 +02001727#ifdef CONFIG_SMP
Ingo Molnar34e83e82008-06-27 15:42:36 +02001728 cfs_rq->shares = shares;
1729#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001730}
1731#endif
1732
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02001733static void calc_load_account_active(struct rq *this_rq);
1734
Ingo Molnardd41f592007-07-09 18:51:59 +02001735#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001736#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001737#include "sched_fair.c"
1738#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001739#ifdef CONFIG_SCHED_DEBUG
1740# include "sched_debug.c"
1741#endif
1742
1743#define sched_class_highest (&rt_sched_class)
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001744#define for_each_class(class) \
1745 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001746
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001747static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001748{
1749 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001750}
1751
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001752static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001753{
1754 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001755}
1756
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001757static void set_load_weight(struct task_struct *p)
1758{
1759 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001760 p->se.load.weight = prio_to_weight[0] * 2;
1761 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1762 return;
1763 }
1764
1765 /*
1766 * SCHED_IDLE tasks get minimal weight:
1767 */
1768 if (p->policy == SCHED_IDLE) {
1769 p->se.load.weight = WEIGHT_IDLEPRIO;
1770 p->se.load.inv_weight = WMULT_IDLEPRIO;
1771 return;
1772 }
1773
1774 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1775 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001776}
1777
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001778static void update_avg(u64 *avg, u64 sample)
1779{
1780 s64 diff = sample - *avg;
1781 *avg += diff >> 3;
1782}
1783
Ingo Molnar8159f872007-08-09 11:16:49 +02001784static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001785{
Peter Zijlstra831451a2009-01-14 12:39:18 +01001786 if (wakeup)
1787 p->se.start_runtime = p->se.sum_exec_runtime;
1788
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001789 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001790 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001791 p->se.on_rq = 1;
1792}
1793
Ingo Molnar69be72c2007-08-09 11:16:49 +02001794static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001795{
Peter Zijlstra831451a2009-01-14 12:39:18 +01001796 if (sleep) {
1797 if (p->se.last_wakeup) {
1798 update_avg(&p->se.avg_overlap,
1799 p->se.sum_exec_runtime - p->se.last_wakeup);
1800 p->se.last_wakeup = 0;
1801 } else {
1802 update_avg(&p->se.avg_wakeup,
1803 sysctl_sched_wakeup_granularity);
1804 }
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001805 }
1806
Ankita Garg46ac22b2008-07-01 14:30:06 +05301807 sched_info_dequeued(p);
Ingo Molnarf02231e2007-08-09 11:16:48 +02001808 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001809 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001810}
1811
1812/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001813 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001814 */
Ingo Molnar14531182007-07-09 18:51:59 +02001815static inline int __normal_prio(struct task_struct *p)
1816{
Ingo Molnardd41f592007-07-09 18:51:59 +02001817 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001818}
1819
1820/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001821 * Calculate the expected normal priority: i.e. priority
1822 * without taking RT-inheritance into account. Might be
1823 * boosted by interactivity modifiers. Changes upon fork,
1824 * setprio syscalls, and whenever the interactivity
1825 * estimator recalculates.
1826 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001827static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001828{
1829 int prio;
1830
Ingo Molnare05606d2007-07-09 18:51:59 +02001831 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001832 prio = MAX_RT_PRIO-1 - p->rt_priority;
1833 else
1834 prio = __normal_prio(p);
1835 return prio;
1836}
1837
1838/*
1839 * Calculate the current priority, i.e. the priority
1840 * taken into account by the scheduler. This value might
1841 * be boosted by RT tasks, or might be boosted by
1842 * interactivity modifiers. Will be RT if the task got
1843 * RT-boosted. If not then it returns p->normal_prio.
1844 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001845static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001846{
1847 p->normal_prio = normal_prio(p);
1848 /*
1849 * If we are RT tasks or we were boosted to RT priority,
1850 * keep the priority unchanged. Otherwise, update priority
1851 * to the normal priority:
1852 */
1853 if (!rt_prio(p->prio))
1854 return p->normal_prio;
1855 return p->prio;
1856}
1857
1858/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001859 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001861static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001863 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001864 rq->nr_uninterruptible--;
1865
Ingo Molnar8159f872007-08-09 11:16:49 +02001866 enqueue_task(rq, p, wakeup);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001867 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868}
1869
1870/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 * deactivate_task - remove a task from the runqueue.
1872 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001873static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001875 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001876 rq->nr_uninterruptible++;
1877
Ingo Molnar69be72c2007-08-09 11:16:49 +02001878 dequeue_task(rq, p, sleep);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001879 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880}
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882/**
1883 * task_curr - is this task currently executing on a CPU?
1884 * @p: the task in question.
1885 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001886inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
1888 return cpu_curr(task_cpu(p)) == p;
1889}
1890
Ingo Molnardd41f592007-07-09 18:51:59 +02001891static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1892{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001893 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001894#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001895 /*
1896 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1897 * successfuly executed on another CPU. We must ensure that updates of
1898 * per-task data have been completed by this moment.
1899 */
1900 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001901 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001902#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001903}
1904
Steven Rostedtcb469842008-01-25 21:08:22 +01001905static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1906 const struct sched_class *prev_class,
1907 int oldprio, int running)
1908{
1909 if (prev_class != p->sched_class) {
1910 if (prev_class->switched_from)
1911 prev_class->switched_from(rq, p, running);
1912 p->sched_class->switched_to(rq, p, running);
1913 } else
1914 p->sched_class->prio_changed(rq, p, oldprio, running);
1915}
1916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001918
Thomas Gleixnere958b362008-06-04 23:22:32 +02001919/* Used instead of source_load when we know the type == 0 */
1920static unsigned long weighted_cpuload(const int cpu)
1921{
1922 return cpu_rq(cpu)->load.weight;
1923}
1924
Ingo Molnarcc367732007-10-15 17:00:18 +02001925/*
1926 * Is this task likely cache-hot:
1927 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001928static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001929task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1930{
1931 s64 delta;
1932
Ingo Molnarf540a602008-03-15 17:10:34 +01001933 /*
1934 * Buddy candidates are cache hot:
1935 */
Peter Zijlstra47932412008-11-04 21:25:09 +01001936 if (sched_feat(CACHE_HOT_BUDDY) &&
1937 (&p->se == cfs_rq_of(&p->se)->next ||
1938 &p->se == cfs_rq_of(&p->se)->last))
Ingo Molnarf540a602008-03-15 17:10:34 +01001939 return 1;
1940
Ingo Molnarcc367732007-10-15 17:00:18 +02001941 if (p->sched_class != &fair_sched_class)
1942 return 0;
1943
Ingo Molnar6bc16652007-10-15 17:00:18 +02001944 if (sysctl_sched_migration_cost == -1)
1945 return 1;
1946 if (sysctl_sched_migration_cost == 0)
1947 return 0;
1948
Ingo Molnarcc367732007-10-15 17:00:18 +02001949 delta = now - p->se.exec_start;
1950
1951 return delta < (s64)sysctl_sched_migration_cost;
1952}
1953
1954
Ingo Molnardd41f592007-07-09 18:51:59 +02001955void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001956{
Ingo Molnardd41f592007-07-09 18:51:59 +02001957 int old_cpu = task_cpu(p);
1958 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001959 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1960 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001961 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001962
1963 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001964
Mathieu Desnoyersde1d7282009-05-05 16:49:59 +08001965 trace_sched_migrate_task(p, new_cpu);
Peter Zijlstracbc34ed2008-12-10 08:08:22 +01001966
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001967#ifdef CONFIG_SCHEDSTATS
1968 if (p->se.wait_start)
1969 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001970 if (p->se.sleep_start)
1971 p->se.sleep_start -= clock_offset;
1972 if (p->se.block_start)
1973 p->se.block_start -= clock_offset;
Ingo Molnar6c594c22008-12-14 12:34:15 +01001974#endif
Ingo Molnarcc367732007-10-15 17:00:18 +02001975 if (old_cpu != new_cpu) {
Ingo Molnar6c594c22008-12-14 12:34:15 +01001976 p->se.nr_migrations++;
Paul Mackerras23a185c2009-02-09 22:42:47 +11001977 new_rq->nr_migrations_in++;
Ingo Molnar6c594c22008-12-14 12:34:15 +01001978#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02001979 if (task_hot(p, old_rq->clock, NULL))
1980 schedstat_inc(p, se.nr_forced2_migrations);
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001981#endif
Peter Zijlstrae5289d42009-06-19 13:22:51 +02001982 perf_swcounter_event(PERF_COUNT_SW_CPU_MIGRATIONS,
1983 1, 1, NULL, 0);
Ingo Molnar6c594c22008-12-14 12:34:15 +01001984 }
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001985 p->se.vruntime -= old_cfsrq->min_vruntime -
1986 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001987
1988 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001989}
1990
Ingo Molnar70b97a72006-07-03 00:25:42 -07001991struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Ingo Molnar36c8b582006-07-03 00:25:41 -07001994 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 int dest_cpu;
1996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001998};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000/*
2001 * The task's runqueue lock must be held.
2002 * Returns true if you have to wait for migration thread.
2003 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002004static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002005migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002007 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
2009 /*
2010 * If the task is not on a runqueue (and not running), then
2011 * it is sufficient to simply update the task's cpu field.
2012 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002013 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 set_task_cpu(p, dest_cpu);
2015 return 0;
2016 }
2017
2018 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 req->task = p;
2020 req->dest_cpu = dest_cpu;
2021 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return 1;
2024}
2025
2026/*
Markus Metzgera26b89f2009-04-03 16:43:34 +02002027 * wait_task_context_switch - wait for a thread to complete at least one
2028 * context switch.
2029 *
2030 * @p must not be current.
2031 */
2032void wait_task_context_switch(struct task_struct *p)
2033{
2034 unsigned long nvcsw, nivcsw, flags;
2035 int running;
2036 struct rq *rq;
2037
2038 nvcsw = p->nvcsw;
2039 nivcsw = p->nivcsw;
2040 for (;;) {
2041 /*
2042 * The runqueue is assigned before the actual context
2043 * switch. We need to take the runqueue lock.
2044 *
2045 * We could check initially without the lock but it is
2046 * very likely that we need to take the lock in every
2047 * iteration.
2048 */
2049 rq = task_rq_lock(p, &flags);
2050 running = task_running(rq, p);
2051 task_rq_unlock(rq, &flags);
2052
2053 if (likely(!running))
2054 break;
2055 /*
2056 * The switch count is incremented before the actual
2057 * context switch. We thus wait for two switches to be
2058 * sure at least one completed.
2059 */
2060 if ((p->nvcsw - nvcsw) > 1)
2061 break;
2062 if ((p->nivcsw - nivcsw) > 1)
2063 break;
2064
2065 cpu_relax();
2066 }
2067}
2068
2069/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 * wait_task_inactive - wait for a thread to unschedule.
2071 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07002072 * If @match_state is nonzero, it's the @p->state value just checked and
2073 * not expected to change. If it changes, i.e. @p might have woken up,
2074 * then return zero. When we succeed in waiting for @p to be off its CPU,
2075 * we return a positive number (its total switch count). If a second call
2076 * a short while later returns the same number, the caller can be sure that
2077 * @p has remained unscheduled the whole time.
2078 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 * The caller must ensure that the task *will* unschedule sometime soon,
2080 * else this function might spin for a *long* time. This function can't
2081 * be called with interrupts off, or it may introduce deadlock with
2082 * smp_call_function() if an IPI is sent by the same process we are
2083 * waiting to become inactive.
2084 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002085unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
2087 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002088 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002089 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002090 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Andi Kleen3a5c3592007-10-15 17:00:14 +02002092 for (;;) {
2093 /*
2094 * We do the initial early heuristics without holding
2095 * any task-queue locks at all. We'll only try to get
2096 * the runqueue lock when things look like they will
2097 * work out!
2098 */
2099 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002100
Andi Kleen3a5c3592007-10-15 17:00:14 +02002101 /*
2102 * If the task is actively running on another CPU
2103 * still, just relax and busy-wait without holding
2104 * any locks.
2105 *
2106 * NOTE! Since we don't hold any locks, it's not
2107 * even sure that "rq" stays as the right runqueue!
2108 * But we don't care, since "task_running()" will
2109 * return false if the runqueue has changed and p
2110 * is actually now running somewhere else!
2111 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002112 while (task_running(rq, p)) {
2113 if (match_state && unlikely(p->state != match_state))
2114 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02002115 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07002116 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002117
Andi Kleen3a5c3592007-10-15 17:00:14 +02002118 /*
2119 * Ok, time to look more closely! We need the rq
2120 * lock now, to be *sure*. If we're wrong, we'll
2121 * just go back and repeat.
2122 */
2123 rq = task_rq_lock(p, &flags);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002124 trace_sched_wait_task(rq, p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002125 running = task_running(rq, p);
2126 on_rq = p->se.on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002127 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07002128 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07002129 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Andi Kleen3a5c3592007-10-15 17:00:14 +02002130 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002131
Andi Kleen3a5c3592007-10-15 17:00:14 +02002132 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07002133 * If it changed from the expected state, bail out now.
2134 */
2135 if (unlikely(!ncsw))
2136 break;
2137
2138 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02002139 * Was it really running after all now that we
2140 * checked with the proper locks actually held?
2141 *
2142 * Oops. Go back and try again..
2143 */
2144 if (unlikely(running)) {
2145 cpu_relax();
2146 continue;
2147 }
2148
2149 /*
2150 * It's not enough that it's not actively running,
2151 * it must be off the runqueue _entirely_, and not
2152 * preempted!
2153 *
Luis Henriques80dd99b2009-03-16 19:58:09 +00002154 * So if it was still runnable (but just not actively
Andi Kleen3a5c3592007-10-15 17:00:14 +02002155 * running right now), it's preempted, and we should
2156 * yield - it could be a while.
2157 */
2158 if (unlikely(on_rq)) {
2159 schedule_timeout_uninterruptible(1);
2160 continue;
2161 }
2162
2163 /*
2164 * Ahh, all good. It wasn't running, and it wasn't
2165 * runnable, which means that it will never become
2166 * running in the future either. We're all done!
2167 */
2168 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07002170
2171 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172}
2173
2174/***
2175 * kick_process - kick a running thread to enter/exit the kernel
2176 * @p: the to-be-kicked thread
2177 *
2178 * Cause a process which is running on another CPU to enter
2179 * kernel-mode, without any delay. (to get signals handled.)
2180 *
2181 * NOTE: this function doesnt have to take the runqueue lock,
2182 * because all it wants to ensure is that the remote task enters
2183 * the kernel. If the IPI races and the task has been migrated
2184 * to another CPU then no harm is done and the purpose has been
2185 * achieved as well.
2186 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002187void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
2189 int cpu;
2190
2191 preempt_disable();
2192 cpu = task_cpu(p);
2193 if ((cpu != smp_processor_id()) && task_curr(p))
2194 smp_send_reschedule(cpu);
2195 preempt_enable();
2196}
Rusty Russellb43e3522009-06-12 22:27:00 -06002197EXPORT_SYMBOL_GPL(kick_process);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002200 * Return a low guess at the load of a migration-source cpu weighted
2201 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 *
2203 * We want to under-estimate the load of migration sources, to
2204 * balance conservatively.
2205 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002206static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002207{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002208 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002209 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002210
Peter Zijlstra93b75212008-06-27 13:41:33 +02002211 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002212 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002213
Ingo Molnardd41f592007-07-09 18:51:59 +02002214 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
2216
2217/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002218 * Return a high guess at the load of a migration-target cpu weighted
2219 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002221static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002222{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002223 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002224 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002225
Peter Zijlstra93b75212008-06-27 13:41:33 +02002226 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002227 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002228
Ingo Molnardd41f592007-07-09 18:51:59 +02002229 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002230}
2231
2232/*
Nick Piggin147cbb42005-06-25 14:57:19 -07002233 * find_idlest_group finds and returns the least busy CPU group within the
2234 * domain.
2235 */
2236static struct sched_group *
2237find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2238{
2239 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2240 unsigned long min_load = ULONG_MAX, this_load = 0;
2241 int load_idx = sd->forkexec_idx;
2242 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2243
2244 do {
2245 unsigned long load, avg_load;
2246 int local_group;
2247 int i;
2248
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002249 /* Skip over this group if it has no CPUs allowed */
Rusty Russell758b2cd2008-11-25 02:35:04 +10302250 if (!cpumask_intersects(sched_group_cpus(group),
2251 &p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002252 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002253
Rusty Russell758b2cd2008-11-25 02:35:04 +10302254 local_group = cpumask_test_cpu(this_cpu,
2255 sched_group_cpus(group));
Nick Piggin147cbb42005-06-25 14:57:19 -07002256
2257 /* Tally up the load of all CPUs in the group */
2258 avg_load = 0;
2259
Rusty Russell758b2cd2008-11-25 02:35:04 +10302260 for_each_cpu(i, sched_group_cpus(group)) {
Nick Piggin147cbb42005-06-25 14:57:19 -07002261 /* Bias balancing toward cpus of our domain */
2262 if (local_group)
2263 load = source_load(i, load_idx);
2264 else
2265 load = target_load(i, load_idx);
2266
2267 avg_load += load;
2268 }
2269
2270 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002271 avg_load = sg_div_cpu_power(group,
2272 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002273
2274 if (local_group) {
2275 this_load = avg_load;
2276 this = group;
2277 } else if (avg_load < min_load) {
2278 min_load = avg_load;
2279 idlest = group;
2280 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002281 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002282
2283 if (!idlest || 100*this_load < imbalance*min_load)
2284 return NULL;
2285 return idlest;
2286}
2287
2288/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002289 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002290 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002291static int
Rusty Russell758b2cd2008-11-25 02:35:04 +10302292find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07002293{
2294 unsigned long load, min_load = ULONG_MAX;
2295 int idlest = -1;
2296 int i;
2297
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002298 /* Traverse only the allowed CPUs */
Rusty Russell758b2cd2008-11-25 02:35:04 +10302299 for_each_cpu_and(i, sched_group_cpus(group), &p->cpus_allowed) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002300 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002301
2302 if (load < min_load || (load == min_load && i == this_cpu)) {
2303 min_load = load;
2304 idlest = i;
2305 }
2306 }
2307
2308 return idlest;
2309}
2310
Nick Piggin476d1392005-06-25 14:57:29 -07002311/*
2312 * sched_balance_self: balance the current task (running on cpu) in domains
2313 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2314 * SD_BALANCE_EXEC.
2315 *
2316 * Balance, ie. select the least loaded group.
2317 *
2318 * Returns the target CPU number, or the same CPU if no balancing is needed.
2319 *
2320 * preempt must be disabled.
2321 */
2322static int sched_balance_self(int cpu, int flag)
2323{
2324 struct task_struct *t = current;
2325 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002326
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002327 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002328 /*
2329 * If power savings logic is enabled for a domain, stop there.
2330 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002331 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2332 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002333 if (tmp->flags & flag)
2334 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002335 }
Nick Piggin476d1392005-06-25 14:57:29 -07002336
Peter Zijlstra039a1c42008-06-27 13:41:25 +02002337 if (sd)
2338 update_shares(sd);
2339
Nick Piggin476d1392005-06-25 14:57:29 -07002340 while (sd) {
Nick Piggin476d1392005-06-25 14:57:29 -07002341 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002342 int new_cpu, weight;
2343
2344 if (!(sd->flags & flag)) {
2345 sd = sd->child;
2346 continue;
2347 }
Nick Piggin476d1392005-06-25 14:57:29 -07002348
Nick Piggin476d1392005-06-25 14:57:29 -07002349 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002350 if (!group) {
2351 sd = sd->child;
2352 continue;
2353 }
Nick Piggin476d1392005-06-25 14:57:29 -07002354
Rusty Russell758b2cd2008-11-25 02:35:04 +10302355 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002356 if (new_cpu == -1 || new_cpu == cpu) {
2357 /* Now try balancing at a lower domain level of cpu */
2358 sd = sd->child;
2359 continue;
2360 }
Nick Piggin476d1392005-06-25 14:57:29 -07002361
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002362 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002363 cpu = new_cpu;
Rusty Russell758b2cd2008-11-25 02:35:04 +10302364 weight = cpumask_weight(sched_domain_span(sd));
Nick Piggin476d1392005-06-25 14:57:29 -07002365 sd = NULL;
Nick Piggin476d1392005-06-25 14:57:29 -07002366 for_each_domain(cpu, tmp) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302367 if (weight <= cpumask_weight(sched_domain_span(tmp)))
Nick Piggin476d1392005-06-25 14:57:29 -07002368 break;
2369 if (tmp->flags & flag)
2370 sd = tmp;
2371 }
2372 /* while loop will break here if sd == NULL */
2373 }
2374
2375 return cpu;
2376}
2377
2378#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Thomas Gleixner0793a612008-12-04 20:12:29 +01002380/**
2381 * task_oncpu_function_call - call a function on the cpu on which a task runs
2382 * @p: the task to evaluate
2383 * @func: the function to be called
2384 * @info: the function call argument
2385 *
2386 * Calls the function @func when the task is currently running. This might
2387 * be on the current CPU, which just calls the function directly
2388 */
2389void task_oncpu_function_call(struct task_struct *p,
2390 void (*func) (void *info), void *info)
2391{
2392 int cpu;
2393
2394 preempt_disable();
2395 cpu = task_cpu(p);
2396 if (task_curr(p))
2397 smp_call_function_single(cpu, func, info, 1);
2398 preempt_enable();
2399}
2400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401/***
2402 * try_to_wake_up - wake up a thread
2403 * @p: the to-be-woken-up thread
2404 * @state: the mask of task states that can be woken
2405 * @sync: do a synchronous wakeup?
2406 *
2407 * Put it on the run-queue if it's not already there. The "current"
2408 * thread is always on the run-queue (except when the actual
2409 * re-schedule is in progress), and as such you're allowed to do
2410 * the simpler "current->state = TASK_RUNNING" to mark yourself
2411 * runnable without the overhead of this.
2412 *
2413 * returns failure only if the task is already active.
2414 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002415static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416{
Ingo Molnarcc367732007-10-15 17:00:18 +02002417 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 unsigned long flags;
2419 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002420 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
Ingo Molnarb85d0662008-03-16 20:03:22 +01002422 if (!sched_feat(SYNC_WAKEUPS))
2423 sync = 0;
2424
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002425#ifdef CONFIG_SMP
Peter Zijlstra57310a92009-03-09 13:56:21 +01002426 if (sched_feat(LB_WAKEUP_UPDATE) && !root_task_group_empty()) {
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002427 struct sched_domain *sd;
2428
2429 this_cpu = raw_smp_processor_id();
2430 cpu = task_cpu(p);
2431
2432 for_each_domain(this_cpu, sd) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302433 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002434 update_shares(sd);
2435 break;
2436 }
2437 }
2438 }
2439#endif
2440
Linus Torvalds04e2f172008-02-23 18:05:03 -08002441 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 rq = task_rq_lock(p, &flags);
Mike Galbraith03e89e42008-12-16 08:45:30 +01002443 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 old_state = p->state;
2445 if (!(old_state & state))
2446 goto out;
2447
Ingo Molnardd41f592007-07-09 18:51:59 +02002448 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 goto out_running;
2450
2451 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002452 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 this_cpu = smp_processor_id();
2454
2455#ifdef CONFIG_SMP
2456 if (unlikely(task_running(rq, p)))
2457 goto out_activate;
2458
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002459 cpu = p->sched_class->select_task_rq(p, sync);
2460 if (cpu != orig_cpu) {
2461 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 task_rq_unlock(rq, &flags);
2463 /* might preempt at this point */
2464 rq = task_rq_lock(p, &flags);
2465 old_state = p->state;
2466 if (!(old_state & state))
2467 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002468 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 goto out_running;
2470
2471 this_cpu = smp_processor_id();
2472 cpu = task_cpu(p);
2473 }
2474
Gregory Haskinse7693a32008-01-25 21:08:09 +01002475#ifdef CONFIG_SCHEDSTATS
2476 schedstat_inc(rq, ttwu_count);
2477 if (cpu == this_cpu)
2478 schedstat_inc(rq, ttwu_local);
2479 else {
2480 struct sched_domain *sd;
2481 for_each_domain(this_cpu, sd) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302482 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Gregory Haskinse7693a32008-01-25 21:08:09 +01002483 schedstat_inc(sd, ttwu_wake_remote);
2484 break;
2485 }
2486 }
2487 }
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002488#endif /* CONFIG_SCHEDSTATS */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490out_activate:
2491#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002492 schedstat_inc(p, se.nr_wakeups);
2493 if (sync)
2494 schedstat_inc(p, se.nr_wakeups_sync);
2495 if (orig_cpu != cpu)
2496 schedstat_inc(p, se.nr_wakeups_migrate);
2497 if (cpu == this_cpu)
2498 schedstat_inc(p, se.nr_wakeups_local);
2499 else
2500 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnardd41f592007-07-09 18:51:59 +02002501 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 success = 1;
2503
Peter Zijlstra831451a2009-01-14 12:39:18 +01002504 /*
2505 * Only attribute actual wakeups done by this task.
2506 */
2507 if (!in_interrupt()) {
2508 struct sched_entity *se = &current->se;
2509 u64 sample = se->sum_exec_runtime;
2510
2511 if (se->last_wakeup)
2512 sample -= se->last_wakeup;
2513 else
2514 sample -= se->start_runtime;
2515 update_avg(&se->avg_wakeup, sample);
2516
2517 se->last_wakeup = se->sum_exec_runtime;
2518 }
2519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520out_running:
Peter Zijlstra468a15b2008-12-16 08:07:03 +01002521 trace_sched_wakeup(rq, p, success);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002522 check_preempt_curr(rq, p, sync);
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002525#ifdef CONFIG_SMP
2526 if (p->sched_class->task_wake_up)
2527 p->sched_class->task_wake_up(rq, p);
2528#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529out:
2530 task_rq_unlock(rq, &flags);
2531
2532 return success;
2533}
2534
David Howells50fa6102009-04-28 15:01:38 +01002535/**
2536 * wake_up_process - Wake up a specific process
2537 * @p: The process to be woken up.
2538 *
2539 * Attempt to wake up the nominated process and move it to the set of runnable
2540 * processes. Returns 1 if the process was woken up, 0 if it was already
2541 * running.
2542 *
2543 * It may be assumed that this function implies a write memory barrier before
2544 * changing the task state if and only if any tasks are woken up.
2545 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002546int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002548 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550EXPORT_SYMBOL(wake_up_process);
2551
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002552int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553{
2554 return try_to_wake_up(p, state, 0);
2555}
2556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557/*
2558 * Perform scheduler related setup for a newly forked process p.
2559 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002560 *
2561 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002563static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564{
Ingo Molnardd41f592007-07-09 18:51:59 +02002565 p->se.exec_start = 0;
2566 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002567 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01002568 p->se.nr_migrations = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002569 p->se.last_wakeup = 0;
2570 p->se.avg_overlap = 0;
Peter Zijlstra831451a2009-01-14 12:39:18 +01002571 p->se.start_runtime = 0;
2572 p->se.avg_wakeup = sysctl_sched_wakeup_granularity;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002573
2574#ifdef CONFIG_SCHEDSTATS
2575 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002576 p->se.sum_sleep_runtime = 0;
2577 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002578 p->se.block_start = 0;
2579 p->se.sleep_max = 0;
2580 p->se.block_max = 0;
2581 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002582 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002583 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002584#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002585
Peter Zijlstrafa717062008-01-25 21:08:27 +01002586 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002587 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002588 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002589
Avi Kivitye107be32007-07-26 13:40:43 +02002590#ifdef CONFIG_PREEMPT_NOTIFIERS
2591 INIT_HLIST_HEAD(&p->preempt_notifiers);
2592#endif
2593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 /*
2595 * We mark the process as running here, but have not actually
2596 * inserted it onto the runqueue yet. This guarantees that
2597 * nobody will actually run it, and a signal or other external
2598 * event cannot wake it up and insert it on the runqueue either.
2599 */
2600 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002601}
2602
2603/*
2604 * fork()/clone()-time setup:
2605 */
2606void sched_fork(struct task_struct *p, int clone_flags)
2607{
2608 int cpu = get_cpu();
2609
2610 __sched_fork(p);
2611
2612#ifdef CONFIG_SMP
2613 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2614#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002615 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002616
2617 /*
2618 * Make sure we do not leak PI boosting priority to the child:
2619 */
2620 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002621 if (!rt_prio(p->prio))
2622 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002623
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002624#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002625 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002626 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002628#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002629 p->oncpu = 0;
2630#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002632 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002633 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05002635 plist_node_init(&p->pushable_tasks, MAX_PRIO);
2636
Nick Piggin476d1392005-06-25 14:57:29 -07002637 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638}
2639
2640/*
2641 * wake_up_new_task - wake up a newly created task for the first time.
2642 *
2643 * This function will do some initial scheduler statistics housekeeping
2644 * that must be done for every newly created context, then puts the task
2645 * on the runqueue and wakes it.
2646 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002647void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648{
2649 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002650 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
2652 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002654 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
2656 p->prio = effective_prio(p);
2657
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002658 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002659 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002662 * Let the scheduling class do new task startup
2663 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002665 p->sched_class->task_new(rq, p);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02002666 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 }
Ingo Molnarc71dd422008-12-19 01:09:51 +01002668 trace_sched_wakeup_new(rq, p, 1);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002669 check_preempt_curr(rq, p, 0);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002670#ifdef CONFIG_SMP
2671 if (p->sched_class->task_wake_up)
2672 p->sched_class->task_wake_up(rq, p);
2673#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002674 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675}
2676
Avi Kivitye107be32007-07-26 13:40:43 +02002677#ifdef CONFIG_PREEMPT_NOTIFIERS
2678
2679/**
Luis Henriques80dd99b2009-03-16 19:58:09 +00002680 * preempt_notifier_register - tell me when current is being preempted & rescheduled
Randy Dunlap421cee22007-07-31 00:37:50 -07002681 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002682 */
2683void preempt_notifier_register(struct preempt_notifier *notifier)
2684{
2685 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2686}
2687EXPORT_SYMBOL_GPL(preempt_notifier_register);
2688
2689/**
2690 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002691 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002692 *
2693 * This is safe to call from within a preemption notifier.
2694 */
2695void preempt_notifier_unregister(struct preempt_notifier *notifier)
2696{
2697 hlist_del(&notifier->link);
2698}
2699EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2700
2701static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2702{
2703 struct preempt_notifier *notifier;
2704 struct hlist_node *node;
2705
2706 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2707 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2708}
2709
2710static void
2711fire_sched_out_preempt_notifiers(struct task_struct *curr,
2712 struct task_struct *next)
2713{
2714 struct preempt_notifier *notifier;
2715 struct hlist_node *node;
2716
2717 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2718 notifier->ops->sched_out(notifier, next);
2719}
2720
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002721#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002722
2723static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2724{
2725}
2726
2727static void
2728fire_sched_out_preempt_notifiers(struct task_struct *curr,
2729 struct task_struct *next)
2730{
2731}
2732
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002733#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002736 * prepare_task_switch - prepare to switch tasks
2737 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002738 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002739 * @next: the task we are going to switch to.
2740 *
2741 * This is called with the rq lock held and interrupts off. It must
2742 * be paired with a subsequent finish_task_switch after the context
2743 * switch.
2744 *
2745 * prepare_task_switch sets up locking and calls architecture specific
2746 * hooks.
2747 */
Avi Kivitye107be32007-07-26 13:40:43 +02002748static inline void
2749prepare_task_switch(struct rq *rq, struct task_struct *prev,
2750 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002751{
Avi Kivitye107be32007-07-26 13:40:43 +02002752 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002753 prepare_lock_switch(rq, next);
2754 prepare_arch_switch(next);
2755}
2756
2757/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002759 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 * @prev: the thread we just switched away from.
2761 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002762 * finish_task_switch must be called after the context switch, paired
2763 * with a prepare_task_switch call before the context switch.
2764 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2765 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 *
2767 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002768 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 * with the lock held can cause deadlocks; see schedule() for
2770 * details.)
2771 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002772static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 __releases(rq->lock)
2774{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002776 long prev_state;
Gregory Haskins967fc042008-12-29 09:39:52 -05002777#ifdef CONFIG_SMP
2778 int post_schedule = 0;
2779
2780 if (current->sched_class->needs_post_schedule)
2781 post_schedule = current->sched_class->needs_post_schedule(rq);
2782#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 rq->prev_mm = NULL;
2785
2786 /*
2787 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002788 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002789 * schedule one last time. The schedule call will never return, and
2790 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002791 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 * still held, otherwise prev could be scheduled on another cpu, die
2793 * there before we look at prev->state, and then the reference would
2794 * be dropped twice.
2795 * Manfred Spraul <manfred@colorfullife.com>
2796 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002797 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002798 finish_arch_switch(prev);
Thomas Gleixner0793a612008-12-04 20:12:29 +01002799 perf_counter_task_sched_in(current, cpu_of(rq));
Nick Piggin4866cde2005-06-25 14:57:23 -07002800 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002801#ifdef CONFIG_SMP
Gregory Haskins967fc042008-12-29 09:39:52 -05002802 if (post_schedule)
Steven Rostedt9a897c52008-01-25 21:08:22 +01002803 current->sched_class->post_schedule(rq);
2804#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002805
Avi Kivitye107be32007-07-26 13:40:43 +02002806 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 if (mm)
2808 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002809 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002810 /*
2811 * Remove function-return probe instances associated with this
2812 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002813 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002814 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817}
2818
2819/**
2820 * schedule_tail - first thing a freshly forked thread must call.
2821 * @prev: the thread we just switched away from.
2822 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002823asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 __releases(rq->lock)
2825{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002826 struct rq *rq = this_rq();
2827
Nick Piggin4866cde2005-06-25 14:57:23 -07002828 finish_task_switch(rq, prev);
2829#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2830 /* In this case, finish_task_switch does not reenable preemption */
2831 preempt_enable();
2832#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002834 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835}
2836
2837/*
2838 * context_switch - switch to the new MM and the new
2839 * thread's register state.
2840 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002841static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002842context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002843 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844{
Ingo Molnardd41f592007-07-09 18:51:59 +02002845 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
Avi Kivitye107be32007-07-26 13:40:43 +02002847 prepare_task_switch(rq, prev, next);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002848 trace_sched_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002849 mm = next->mm;
2850 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002851 /*
2852 * For paravirt, this is coupled with an exit in switch_to to
2853 * combine the page table reload and the switch backend into
2854 * one hypercall.
2855 */
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08002856 arch_start_context_switch(prev);
Zachary Amsden9226d122007-02-13 13:26:21 +01002857
Ingo Molnardd41f592007-07-09 18:51:59 +02002858 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 next->active_mm = oldmm;
2860 atomic_inc(&oldmm->mm_count);
2861 enter_lazy_tlb(oldmm, next);
2862 } else
2863 switch_mm(oldmm, mm, next);
2864
Ingo Molnardd41f592007-07-09 18:51:59 +02002865 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 rq->prev_mm = oldmm;
2868 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002869 /*
2870 * Since the runqueue lock will be released by the next
2871 * task (which is an invalid locking op but in the case
2872 * of the scheduler it's an obvious special-case), so we
2873 * do an early lockdep release here:
2874 */
2875#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002876 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002877#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
2879 /* Here we just switch the register state and the stack. */
2880 switch_to(prev, next, prev);
2881
Ingo Molnardd41f592007-07-09 18:51:59 +02002882 barrier();
2883 /*
2884 * this_rq must be evaluated again because prev may have moved
2885 * CPUs since it called schedule(), thus the 'rq' on its stack
2886 * frame will be invalid.
2887 */
2888 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889}
2890
2891/*
2892 * nr_running, nr_uninterruptible and nr_context_switches:
2893 *
2894 * externally visible scheduler statistics: current number of runnable
2895 * threads, current number of uninterruptible-sleeping threads, total
2896 * number of context switches performed since bootup.
2897 */
2898unsigned long nr_running(void)
2899{
2900 unsigned long i, sum = 0;
2901
2902 for_each_online_cpu(i)
2903 sum += cpu_rq(i)->nr_running;
2904
2905 return sum;
2906}
2907
2908unsigned long nr_uninterruptible(void)
2909{
2910 unsigned long i, sum = 0;
2911
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002912 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 sum += cpu_rq(i)->nr_uninterruptible;
2914
2915 /*
2916 * Since we read the counters lockless, it might be slightly
2917 * inaccurate. Do not allow it to go below zero though:
2918 */
2919 if (unlikely((long)sum < 0))
2920 sum = 0;
2921
2922 return sum;
2923}
2924
2925unsigned long long nr_context_switches(void)
2926{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002927 int i;
2928 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002930 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 sum += cpu_rq(i)->nr_switches;
2932
2933 return sum;
2934}
2935
2936unsigned long nr_iowait(void)
2937{
2938 unsigned long i, sum = 0;
2939
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002940 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2942
2943 return sum;
2944}
2945
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02002946/* Variables and functions for calc_load */
2947static atomic_long_t calc_load_tasks;
2948static unsigned long calc_load_update;
2949unsigned long avenrun[3];
2950EXPORT_SYMBOL(avenrun);
2951
Thomas Gleixner2d024942009-05-02 20:08:52 +02002952/**
2953 * get_avenrun - get the load average array
2954 * @loads: pointer to dest load array
2955 * @offset: offset to add
2956 * @shift: shift count to shift the result left
2957 *
2958 * These values are estimates at best, so no need for locking.
2959 */
2960void get_avenrun(unsigned long *loads, unsigned long offset, int shift)
2961{
2962 loads[0] = (avenrun[0] + offset) << shift;
2963 loads[1] = (avenrun[1] + offset) << shift;
2964 loads[2] = (avenrun[2] + offset) << shift;
2965}
2966
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02002967static unsigned long
2968calc_load(unsigned long load, unsigned long exp, unsigned long active)
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002969{
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02002970 load *= exp;
2971 load += active * (FIXED_1 - exp);
2972 return load >> FSHIFT;
2973}
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002974
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02002975/*
2976 * calc_load - update the avenrun load estimates 10 ticks after the
2977 * CPUs have updated calc_load_tasks.
2978 */
2979void calc_global_load(void)
2980{
2981 unsigned long upd = calc_load_update + 10;
2982 long active;
2983
2984 if (time_before(jiffies, upd))
2985 return;
2986
2987 active = atomic_long_read(&calc_load_tasks);
2988 active = active > 0 ? active * FIXED_1 : 0;
2989
2990 avenrun[0] = calc_load(avenrun[0], EXP_1, active);
2991 avenrun[1] = calc_load(avenrun[1], EXP_5, active);
2992 avenrun[2] = calc_load(avenrun[2], EXP_15, active);
2993
2994 calc_load_update += LOAD_FREQ;
2995}
2996
2997/*
2998 * Either called from update_cpu_load() or from a cpu going idle
2999 */
3000static void calc_load_account_active(struct rq *this_rq)
3001{
3002 long nr_active, delta;
3003
3004 nr_active = this_rq->nr_running;
3005 nr_active += (long) this_rq->nr_uninterruptible;
3006
3007 if (nr_active != this_rq->calc_load_active) {
3008 delta = nr_active - this_rq->calc_load_active;
3009 this_rq->calc_load_active = nr_active;
3010 atomic_long_add(delta, &calc_load_tasks);
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08003011 }
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08003012}
3013
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014/*
Paul Mackerras23a185c2009-02-09 22:42:47 +11003015 * Externally visible per-cpu scheduler statistics:
Paul Mackerras23a185c2009-02-09 22:42:47 +11003016 * cpu_nr_migrations(cpu) - number of migrations into that cpu
3017 */
Paul Mackerras23a185c2009-02-09 22:42:47 +11003018u64 cpu_nr_migrations(int cpu)
3019{
3020 return cpu_rq(cpu)->nr_migrations_in;
3021}
3022
3023/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003024 * Update rq->cpu_load[] statistics. This function is usually called every
3025 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07003026 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003027static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003028{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02003029 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02003030 int i, scale;
3031
3032 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02003033
3034 /* Update our load: */
3035 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
3036 unsigned long old_load, new_load;
3037
3038 /* scale is effectively 1 << i now, and >> i divides by scale */
3039
3040 old_load = this_rq->cpu_load[i];
3041 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02003042 /*
3043 * Round up the averaging division if load is increasing. This
3044 * prevents us from getting stuck on 9 if the load is 10, for
3045 * example.
3046 */
3047 if (new_load > old_load)
3048 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003049 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
3050 }
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003051
3052 if (time_after_eq(jiffies, this_rq->calc_load_update)) {
3053 this_rq->calc_load_update += LOAD_FREQ;
3054 calc_load_account_active(this_rq);
3055 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003056}
3057
Ingo Molnardd41f592007-07-09 18:51:59 +02003058#ifdef CONFIG_SMP
3059
Ingo Molnar48f24c42006-07-03 00:25:40 -07003060/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 * double_rq_lock - safely lock two runqueues
3062 *
3063 * Note this does not disable interrupts like task_rq_lock,
3064 * you need to do so manually before calling.
3065 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003066static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 __acquires(rq1->lock)
3068 __acquires(rq2->lock)
3069{
Kirill Korotaev054b9102006-12-10 02:20:11 -08003070 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 if (rq1 == rq2) {
3072 spin_lock(&rq1->lock);
3073 __acquire(rq2->lock); /* Fake it out ;) */
3074 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003075 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 spin_lock(&rq1->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02003077 spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 } else {
3079 spin_lock(&rq2->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02003080 spin_lock_nested(&rq1->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 }
3082 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003083 update_rq_clock(rq1);
3084 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085}
3086
3087/*
3088 * double_rq_unlock - safely unlock two runqueues
3089 *
3090 * Note this does not restore interrupts like task_rq_unlock,
3091 * you need to do so manually after calling.
3092 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003093static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 __releases(rq1->lock)
3095 __releases(rq2->lock)
3096{
3097 spin_unlock(&rq1->lock);
3098 if (rq1 != rq2)
3099 spin_unlock(&rq2->lock);
3100 else
3101 __release(rq2->lock);
3102}
3103
3104/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 * If dest_cpu is allowed for this process, migrate the task to it.
3106 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003107 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 * the cpu_allowed mask is restored.
3109 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003110static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003112 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003114 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
3116 rq = task_rq_lock(p, &flags);
Rusty Russell96f874e2008-11-25 02:35:14 +10303117 if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed)
Max Krasnyanskye761b772008-07-15 04:43:49 -07003118 || unlikely(!cpu_active(dest_cpu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 goto out;
3120
3121 /* force the process onto the specified CPU */
3122 if (migrate_task(p, dest_cpu, &req)) {
3123 /* Need to wait for migration thread (might exit: take ref). */
3124 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003125
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 get_task_struct(mt);
3127 task_rq_unlock(rq, &flags);
3128 wake_up_process(mt);
3129 put_task_struct(mt);
3130 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07003131
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 return;
3133 }
3134out:
3135 task_rq_unlock(rq, &flags);
3136}
3137
3138/*
Nick Piggin476d1392005-06-25 14:57:29 -07003139 * sched_exec - execve() is a valuable balancing opportunity, because at
3140 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 */
3142void sched_exec(void)
3143{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003145 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003147 if (new_cpu != this_cpu)
3148 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149}
3150
3151/*
3152 * pull_task - move a task from a remote runqueue to the local runqueue.
3153 * Both runqueues must be locked.
3154 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003155static void pull_task(struct rq *src_rq, struct task_struct *p,
3156 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003158 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003160 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 /*
3162 * Note that idle threads have a prio of MAX_PRIO, for this test
3163 * to be always true for them.
3164 */
Peter Zijlstra15afe092008-09-20 23:38:02 +02003165 check_preempt_curr(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166}
3167
3168/*
3169 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
3170 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003171static
Ingo Molnar70b97a72006-07-03 00:25:42 -07003172int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003173 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003174 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175{
Luis Henriques708dc512009-03-16 19:59:02 +00003176 int tsk_cache_hot = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 /*
3178 * We do not migrate tasks that are:
3179 * 1) running (obviously), or
3180 * 2) cannot be migrated to this CPU due to cpus_allowed, or
3181 * 3) are cache-hot on their current CPU.
3182 */
Rusty Russell96f874e2008-11-25 02:35:14 +10303183 if (!cpumask_test_cpu(this_cpu, &p->cpus_allowed)) {
Ingo Molnarcc367732007-10-15 17:00:18 +02003184 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003186 }
Nick Piggin81026792005-06-25 14:57:07 -07003187 *all_pinned = 0;
3188
Ingo Molnarcc367732007-10-15 17:00:18 +02003189 if (task_running(rq, p)) {
3190 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07003191 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
Ingo Molnarda84d962007-10-15 17:00:18 +02003194 /*
3195 * Aggressive migration if:
3196 * 1) task is cache cold, or
3197 * 2) too many balance attempts have failed.
3198 */
3199
Luis Henriques708dc512009-03-16 19:59:02 +00003200 tsk_cache_hot = task_hot(p, rq->clock, sd);
3201 if (!tsk_cache_hot ||
3202 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003203#ifdef CONFIG_SCHEDSTATS
Luis Henriques708dc512009-03-16 19:59:02 +00003204 if (tsk_cache_hot) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003205 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02003206 schedstat_inc(p, se.nr_forced_migrations);
3207 }
Ingo Molnarda84d962007-10-15 17:00:18 +02003208#endif
3209 return 1;
3210 }
3211
Luis Henriques708dc512009-03-16 19:59:02 +00003212 if (tsk_cache_hot) {
Ingo Molnarcc367732007-10-15 17:00:18 +02003213 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02003214 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 return 1;
3217}
3218
Peter Williamse1d14842007-10-24 18:23:51 +02003219static unsigned long
3220balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3221 unsigned long max_load_move, struct sched_domain *sd,
3222 enum cpu_idle_type idle, int *all_pinned,
3223 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003224{
Peter Zijlstra051c6762008-06-27 13:41:31 +02003225 int loops = 0, pulled = 0, pinned = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02003226 struct task_struct *p;
3227 long rem_load_move = max_load_move;
3228
Peter Williamse1d14842007-10-24 18:23:51 +02003229 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003230 goto out;
3231
3232 pinned = 1;
3233
3234 /*
3235 * Start the load-balancing iterator:
3236 */
3237 p = iterator->start(iterator->arg);
3238next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003239 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003240 goto out;
Peter Zijlstra051c6762008-06-27 13:41:31 +02003241
3242 if ((p->se.load.weight >> 1) > rem_load_move ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003243 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003244 p = iterator->next(iterator->arg);
3245 goto next;
3246 }
3247
3248 pull_task(busiest, p, this_rq, this_cpu);
3249 pulled++;
3250 rem_load_move -= p->se.load.weight;
3251
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003252#ifdef CONFIG_PREEMPT
3253 /*
3254 * NEWIDLE balancing is a source of latency, so preemptible kernels
3255 * will stop after the first task is pulled to minimize the critical
3256 * section.
3257 */
3258 if (idle == CPU_NEWLY_IDLE)
3259 goto out;
3260#endif
3261
Ingo Molnardd41f592007-07-09 18:51:59 +02003262 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003263 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003264 */
Peter Williamse1d14842007-10-24 18:23:51 +02003265 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003266 if (p->prio < *this_best_prio)
3267 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003268 p = iterator->next(iterator->arg);
3269 goto next;
3270 }
3271out:
3272 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003273 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003274 * so we can safely collect pull_task() stats here rather than
3275 * inside pull_task().
3276 */
3277 schedstat_add(sd, lb_gained[idle], pulled);
3278
3279 if (all_pinned)
3280 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003281
3282 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003283}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003284
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285/*
Peter Williams43010652007-08-09 11:16:46 +02003286 * move_tasks tries to move up to max_load_move weighted load from busiest to
3287 * this_rq, as part of a balancing operation within domain "sd".
3288 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 *
3290 * Called with both runqueues locked.
3291 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003292static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003293 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003294 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003295 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003297 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003298 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003299 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
Ingo Molnardd41f592007-07-09 18:51:59 +02003301 do {
Peter Williams43010652007-08-09 11:16:46 +02003302 total_load_moved +=
3303 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003304 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003305 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003306 class = class->next;
Gregory Haskinsc4acb2c2008-06-27 14:29:55 -06003307
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003308#ifdef CONFIG_PREEMPT
3309 /*
3310 * NEWIDLE balancing is a source of latency, so preemptible
3311 * kernels will stop after the first task is pulled to minimize
3312 * the critical section.
3313 */
Gregory Haskinsc4acb2c2008-06-27 14:29:55 -06003314 if (idle == CPU_NEWLY_IDLE && this_rq->nr_running)
3315 break;
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003316#endif
Peter Williams43010652007-08-09 11:16:46 +02003317 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Peter Williams43010652007-08-09 11:16:46 +02003319 return total_load_moved > 0;
3320}
3321
Peter Williamse1d14842007-10-24 18:23:51 +02003322static int
3323iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3324 struct sched_domain *sd, enum cpu_idle_type idle,
3325 struct rq_iterator *iterator)
3326{
3327 struct task_struct *p = iterator->start(iterator->arg);
3328 int pinned = 0;
3329
3330 while (p) {
3331 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3332 pull_task(busiest, p, this_rq, this_cpu);
3333 /*
3334 * Right now, this is only the second place pull_task()
3335 * is called, so we can safely collect pull_task()
3336 * stats here rather than inside pull_task().
3337 */
3338 schedstat_inc(sd, lb_gained[idle]);
3339
3340 return 1;
3341 }
3342 p = iterator->next(iterator->arg);
3343 }
3344
3345 return 0;
3346}
3347
Peter Williams43010652007-08-09 11:16:46 +02003348/*
3349 * move_one_task tries to move exactly one task from busiest to this_rq, as
3350 * part of active balancing operations within "domain".
3351 * Returns 1 if successful and 0 otherwise.
3352 *
3353 * Called with both runqueues locked.
3354 */
3355static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3356 struct sched_domain *sd, enum cpu_idle_type idle)
3357{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003358 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003359
3360 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003361 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003362 return 1;
3363
3364 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365}
Gautham R Shenoy67bb6c02009-03-25 14:43:35 +05303366/********** Helpers for find_busiest_group ************************/
Randy Dunlapd5ac5372009-03-28 21:52:47 -07003367/*
Gautham R Shenoy222d6562009-03-25 14:43:56 +05303368 * sd_lb_stats - Structure to store the statistics of a sched_domain
3369 * during load balancing.
3370 */
3371struct sd_lb_stats {
3372 struct sched_group *busiest; /* Busiest group in this sd */
3373 struct sched_group *this; /* Local group in this sd */
3374 unsigned long total_load; /* Total load of all groups in sd */
3375 unsigned long total_pwr; /* Total power of all groups in sd */
3376 unsigned long avg_load; /* Average load across all groups in sd */
3377
3378 /** Statistics of this group */
3379 unsigned long this_load;
3380 unsigned long this_load_per_task;
3381 unsigned long this_nr_running;
3382
3383 /* Statistics of the busiest group */
3384 unsigned long max_load;
3385 unsigned long busiest_load_per_task;
3386 unsigned long busiest_nr_running;
3387
3388 int group_imb; /* Is there imbalance in this sd */
3389#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3390 int power_savings_balance; /* Is powersave balance needed for this sd */
3391 struct sched_group *group_min; /* Least loaded group in sd */
3392 struct sched_group *group_leader; /* Group which relieves group_min */
3393 unsigned long min_load_per_task; /* load_per_task in group_min */
3394 unsigned long leader_nr_running; /* Nr running of group_leader */
3395 unsigned long min_nr_running; /* Nr running of group_min */
3396#endif
3397};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
3399/*
Gautham R Shenoy381be782009-03-25 14:43:46 +05303400 * sg_lb_stats - stats of a sched_group required for load_balancing
3401 */
3402struct sg_lb_stats {
3403 unsigned long avg_load; /*Avg load across the CPUs of the group */
3404 unsigned long group_load; /* Total load over the CPUs of the group */
3405 unsigned long sum_nr_running; /* Nr tasks running in the group */
3406 unsigned long sum_weighted_load; /* Weighted load of group's tasks */
3407 unsigned long group_capacity;
3408 int group_imb; /* Is there an imbalance in the group ? */
3409};
3410
3411/**
Gautham R Shenoy67bb6c02009-03-25 14:43:35 +05303412 * group_first_cpu - Returns the first cpu in the cpumask of a sched_group.
3413 * @group: The group whose first cpu is to be returned.
3414 */
3415static inline unsigned int group_first_cpu(struct sched_group *group)
3416{
3417 return cpumask_first(sched_group_cpus(group));
3418}
3419
3420/**
3421 * get_sd_load_idx - Obtain the load index for a given sched domain.
3422 * @sd: The sched_domain whose load_idx is to be obtained.
3423 * @idle: The Idle status of the CPU for whose sd load_icx is obtained.
3424 */
3425static inline int get_sd_load_idx(struct sched_domain *sd,
3426 enum cpu_idle_type idle)
3427{
3428 int load_idx;
3429
3430 switch (idle) {
3431 case CPU_NOT_IDLE:
3432 load_idx = sd->busy_idx;
3433 break;
3434
3435 case CPU_NEWLY_IDLE:
3436 load_idx = sd->newidle_idx;
3437 break;
3438 default:
3439 load_idx = sd->idle_idx;
3440 break;
3441 }
3442
3443 return load_idx;
3444}
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303445
3446
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303447#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3448/**
3449 * init_sd_power_savings_stats - Initialize power savings statistics for
3450 * the given sched_domain, during load balancing.
3451 *
3452 * @sd: Sched domain whose power-savings statistics are to be initialized.
3453 * @sds: Variable containing the statistics for sd.
3454 * @idle: Idle status of the CPU at which we're performing load-balancing.
3455 */
3456static inline void init_sd_power_savings_stats(struct sched_domain *sd,
3457 struct sd_lb_stats *sds, enum cpu_idle_type idle)
3458{
3459 /*
3460 * Busy processors will not participate in power savings
3461 * balance.
3462 */
3463 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
3464 sds->power_savings_balance = 0;
3465 else {
3466 sds->power_savings_balance = 1;
3467 sds->min_nr_running = ULONG_MAX;
3468 sds->leader_nr_running = 0;
3469 }
3470}
3471
3472/**
3473 * update_sd_power_savings_stats - Update the power saving stats for a
3474 * sched_domain while performing load balancing.
3475 *
3476 * @group: sched_group belonging to the sched_domain under consideration.
3477 * @sds: Variable containing the statistics of the sched_domain
3478 * @local_group: Does group contain the CPU for which we're performing
3479 * load balancing ?
3480 * @sgs: Variable containing the statistics of the group.
3481 */
3482static inline void update_sd_power_savings_stats(struct sched_group *group,
3483 struct sd_lb_stats *sds, int local_group, struct sg_lb_stats *sgs)
3484{
3485
3486 if (!sds->power_savings_balance)
3487 return;
3488
3489 /*
3490 * If the local group is idle or completely loaded
3491 * no need to do power savings balance at this domain
3492 */
3493 if (local_group && (sds->this_nr_running >= sgs->group_capacity ||
3494 !sds->this_nr_running))
3495 sds->power_savings_balance = 0;
3496
3497 /*
3498 * If a group is already running at full capacity or idle,
3499 * don't include that group in power savings calculations
3500 */
3501 if (!sds->power_savings_balance ||
3502 sgs->sum_nr_running >= sgs->group_capacity ||
3503 !sgs->sum_nr_running)
3504 return;
3505
3506 /*
3507 * Calculate the group which has the least non-idle load.
3508 * This is the group from where we need to pick up the load
3509 * for saving power
3510 */
3511 if ((sgs->sum_nr_running < sds->min_nr_running) ||
3512 (sgs->sum_nr_running == sds->min_nr_running &&
3513 group_first_cpu(group) > group_first_cpu(sds->group_min))) {
3514 sds->group_min = group;
3515 sds->min_nr_running = sgs->sum_nr_running;
3516 sds->min_load_per_task = sgs->sum_weighted_load /
3517 sgs->sum_nr_running;
3518 }
3519
3520 /*
3521 * Calculate the group which is almost near its
3522 * capacity but still has some space to pick up some load
3523 * from other group and save more power
3524 */
3525 if (sgs->sum_nr_running > sgs->group_capacity - 1)
3526 return;
3527
3528 if (sgs->sum_nr_running > sds->leader_nr_running ||
3529 (sgs->sum_nr_running == sds->leader_nr_running &&
3530 group_first_cpu(group) < group_first_cpu(sds->group_leader))) {
3531 sds->group_leader = group;
3532 sds->leader_nr_running = sgs->sum_nr_running;
3533 }
3534}
3535
3536/**
Randy Dunlapd5ac5372009-03-28 21:52:47 -07003537 * check_power_save_busiest_group - see if there is potential for some power-savings balance
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303538 * @sds: Variable containing the statistics of the sched_domain
3539 * under consideration.
3540 * @this_cpu: Cpu at which we're currently performing load-balancing.
3541 * @imbalance: Variable to store the imbalance.
3542 *
Randy Dunlapd5ac5372009-03-28 21:52:47 -07003543 * Description:
3544 * Check if we have potential to perform some power-savings balance.
3545 * If yes, set the busiest group to be the least loaded group in the
3546 * sched_domain, so that it's CPUs can be put to idle.
3547 *
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303548 * Returns 1 if there is potential to perform power-savings balance.
3549 * Else returns 0.
3550 */
3551static inline int check_power_save_busiest_group(struct sd_lb_stats *sds,
3552 int this_cpu, unsigned long *imbalance)
3553{
3554 if (!sds->power_savings_balance)
3555 return 0;
3556
3557 if (sds->this != sds->group_leader ||
3558 sds->group_leader == sds->group_min)
3559 return 0;
3560
3561 *imbalance = sds->min_load_per_task;
3562 sds->busiest = sds->group_min;
3563
3564 if (sched_mc_power_savings >= POWERSAVINGS_BALANCE_WAKEUP) {
3565 cpu_rq(this_cpu)->rd->sched_mc_preferred_wakeup_cpu =
3566 group_first_cpu(sds->group_leader);
3567 }
3568
3569 return 1;
3570
3571}
3572#else /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
3573static inline void init_sd_power_savings_stats(struct sched_domain *sd,
3574 struct sd_lb_stats *sds, enum cpu_idle_type idle)
3575{
3576 return;
3577}
3578
3579static inline void update_sd_power_savings_stats(struct sched_group *group,
3580 struct sd_lb_stats *sds, int local_group, struct sg_lb_stats *sgs)
3581{
3582 return;
3583}
3584
3585static inline int check_power_save_busiest_group(struct sd_lb_stats *sds,
3586 int this_cpu, unsigned long *imbalance)
3587{
3588 return 0;
3589}
3590#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
3591
3592
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303593/**
3594 * update_sg_lb_stats - Update sched_group's statistics for load balancing.
3595 * @group: sched_group whose statistics are to be updated.
3596 * @this_cpu: Cpu for which load balance is currently performed.
3597 * @idle: Idle status of this_cpu
3598 * @load_idx: Load index of sched_domain of this_cpu for load calc.
3599 * @sd_idle: Idle status of the sched_domain containing group.
3600 * @local_group: Does group contain this_cpu.
3601 * @cpus: Set of cpus considered for load balancing.
3602 * @balance: Should we balance.
3603 * @sgs: variable to hold the statistics for this group.
3604 */
3605static inline void update_sg_lb_stats(struct sched_group *group, int this_cpu,
3606 enum cpu_idle_type idle, int load_idx, int *sd_idle,
3607 int local_group, const struct cpumask *cpus,
3608 int *balance, struct sg_lb_stats *sgs)
3609{
3610 unsigned long load, max_cpu_load, min_cpu_load;
3611 int i;
3612 unsigned int balance_cpu = -1, first_idle_cpu = 0;
3613 unsigned long sum_avg_load_per_task;
3614 unsigned long avg_load_per_task;
3615
3616 if (local_group)
3617 balance_cpu = group_first_cpu(group);
3618
3619 /* Tally up the load of all CPUs in the group */
3620 sum_avg_load_per_task = avg_load_per_task = 0;
3621 max_cpu_load = 0;
3622 min_cpu_load = ~0UL;
3623
3624 for_each_cpu_and(i, sched_group_cpus(group), cpus) {
3625 struct rq *rq = cpu_rq(i);
3626
3627 if (*sd_idle && rq->nr_running)
3628 *sd_idle = 0;
3629
3630 /* Bias balancing toward cpus of our domain */
3631 if (local_group) {
3632 if (idle_cpu(i) && !first_idle_cpu) {
3633 first_idle_cpu = 1;
3634 balance_cpu = i;
3635 }
3636
3637 load = target_load(i, load_idx);
3638 } else {
3639 load = source_load(i, load_idx);
3640 if (load > max_cpu_load)
3641 max_cpu_load = load;
3642 if (min_cpu_load > load)
3643 min_cpu_load = load;
3644 }
3645
3646 sgs->group_load += load;
3647 sgs->sum_nr_running += rq->nr_running;
3648 sgs->sum_weighted_load += weighted_cpuload(i);
3649
3650 sum_avg_load_per_task += cpu_avg_load_per_task(i);
3651 }
3652
3653 /*
3654 * First idle cpu or the first cpu(busiest) in this sched group
3655 * is eligible for doing load balancing at this and above
3656 * domains. In the newly idle case, we will allow all the cpu's
3657 * to do the newly idle load balance.
3658 */
3659 if (idle != CPU_NEWLY_IDLE && local_group &&
3660 balance_cpu != this_cpu && balance) {
3661 *balance = 0;
3662 return;
3663 }
3664
3665 /* Adjust by relative CPU power of the group */
3666 sgs->avg_load = sg_div_cpu_power(group,
3667 sgs->group_load * SCHED_LOAD_SCALE);
3668
3669
3670 /*
3671 * Consider the group unbalanced when the imbalance is larger
3672 * than the average weight of two tasks.
3673 *
3674 * APZ: with cgroup the avg task weight can vary wildly and
3675 * might not be a suitable number - should we keep a
3676 * normalized nr_running number somewhere that negates
3677 * the hierarchy?
3678 */
3679 avg_load_per_task = sg_div_cpu_power(group,
3680 sum_avg_load_per_task * SCHED_LOAD_SCALE);
3681
3682 if ((max_cpu_load - min_cpu_load) > 2*avg_load_per_task)
3683 sgs->group_imb = 1;
3684
3685 sgs->group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
3686
3687}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303689/**
3690 * update_sd_lb_stats - Update sched_group's statistics for load balancing.
3691 * @sd: sched_domain whose statistics are to be updated.
3692 * @this_cpu: Cpu for which load balance is currently performed.
3693 * @idle: Idle status of this_cpu
3694 * @sd_idle: Idle status of the sched_domain containing group.
3695 * @cpus: Set of cpus considered for load balancing.
3696 * @balance: Should we balance.
3697 * @sds: variable to hold the statistics for this sched_domain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 */
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303699static inline void update_sd_lb_stats(struct sched_domain *sd, int this_cpu,
3700 enum cpu_idle_type idle, int *sd_idle,
3701 const struct cpumask *cpus, int *balance,
3702 struct sd_lb_stats *sds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703{
Gautham R Shenoy222d6562009-03-25 14:43:56 +05303704 struct sched_group *group = sd->groups;
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303705 struct sg_lb_stats sgs;
Gautham R Shenoy222d6562009-03-25 14:43:56 +05303706 int load_idx;
3707
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303708 init_sd_power_savings_stats(sd, sds, idle);
Gautham R Shenoy67bb6c02009-03-25 14:43:35 +05303709 load_idx = get_sd_load_idx(sd, idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710
3711 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 int local_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
Rusty Russell758b2cd2008-11-25 02:35:04 +10303714 local_group = cpumask_test_cpu(this_cpu,
3715 sched_group_cpus(group));
Gautham R Shenoy381be782009-03-25 14:43:46 +05303716 memset(&sgs, 0, sizeof(sgs));
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303717 update_sg_lb_stats(group, this_cpu, idle, load_idx, sd_idle,
3718 local_group, cpus, balance, &sgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303720 if (local_group && balance && !(*balance))
3721 return;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003722
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303723 sds->total_load += sgs.group_load;
3724 sds->total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 if (local_group) {
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303727 sds->this_load = sgs.avg_load;
3728 sds->this = group;
3729 sds->this_nr_running = sgs.sum_nr_running;
3730 sds->this_load_per_task = sgs.sum_weighted_load;
3731 } else if (sgs.avg_load > sds->max_load &&
Gautham R Shenoy381be782009-03-25 14:43:46 +05303732 (sgs.sum_nr_running > sgs.group_capacity ||
3733 sgs.group_imb)) {
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303734 sds->max_load = sgs.avg_load;
3735 sds->busiest = group;
3736 sds->busiest_nr_running = sgs.sum_nr_running;
3737 sds->busiest_load_per_task = sgs.sum_weighted_load;
3738 sds->group_imb = sgs.group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003740
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303741 update_sd_power_savings_stats(group, sds, local_group, &sgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 group = group->next;
3743 } while (group != sd->groups);
3744
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303745}
Gautham R Shenoy2e6f44a2009-03-25 14:44:06 +05303746
3747/**
3748 * fix_small_imbalance - Calculate the minor imbalance that exists
Gautham R Shenoydbc523a2009-03-25 14:44:12 +05303749 * amongst the groups of a sched_domain, during
3750 * load balancing.
Gautham R Shenoy2e6f44a2009-03-25 14:44:06 +05303751 * @sds: Statistics of the sched_domain whose imbalance is to be calculated.
3752 * @this_cpu: The cpu at whose sched_domain we're performing load-balance.
3753 * @imbalance: Variable to store the imbalance.
3754 */
3755static inline void fix_small_imbalance(struct sd_lb_stats *sds,
3756 int this_cpu, unsigned long *imbalance)
3757{
3758 unsigned long tmp, pwr_now = 0, pwr_move = 0;
3759 unsigned int imbn = 2;
3760
3761 if (sds->this_nr_running) {
3762 sds->this_load_per_task /= sds->this_nr_running;
3763 if (sds->busiest_load_per_task >
3764 sds->this_load_per_task)
3765 imbn = 1;
3766 } else
3767 sds->this_load_per_task =
3768 cpu_avg_load_per_task(this_cpu);
3769
3770 if (sds->max_load - sds->this_load + sds->busiest_load_per_task >=
3771 sds->busiest_load_per_task * imbn) {
3772 *imbalance = sds->busiest_load_per_task;
3773 return;
3774 }
3775
3776 /*
3777 * OK, we don't have enough imbalance to justify moving tasks,
3778 * however we may be able to increase total CPU power used by
3779 * moving them.
3780 */
3781
3782 pwr_now += sds->busiest->__cpu_power *
3783 min(sds->busiest_load_per_task, sds->max_load);
3784 pwr_now += sds->this->__cpu_power *
3785 min(sds->this_load_per_task, sds->this_load);
3786 pwr_now /= SCHED_LOAD_SCALE;
3787
3788 /* Amount of load we'd subtract */
3789 tmp = sg_div_cpu_power(sds->busiest,
3790 sds->busiest_load_per_task * SCHED_LOAD_SCALE);
3791 if (sds->max_load > tmp)
3792 pwr_move += sds->busiest->__cpu_power *
3793 min(sds->busiest_load_per_task, sds->max_load - tmp);
3794
3795 /* Amount of load we'd add */
3796 if (sds->max_load * sds->busiest->__cpu_power <
3797 sds->busiest_load_per_task * SCHED_LOAD_SCALE)
3798 tmp = sg_div_cpu_power(sds->this,
3799 sds->max_load * sds->busiest->__cpu_power);
3800 else
3801 tmp = sg_div_cpu_power(sds->this,
3802 sds->busiest_load_per_task * SCHED_LOAD_SCALE);
3803 pwr_move += sds->this->__cpu_power *
3804 min(sds->this_load_per_task, sds->this_load + tmp);
3805 pwr_move /= SCHED_LOAD_SCALE;
3806
3807 /* Move if we gain throughput */
3808 if (pwr_move > pwr_now)
3809 *imbalance = sds->busiest_load_per_task;
3810}
Gautham R Shenoydbc523a2009-03-25 14:44:12 +05303811
3812/**
3813 * calculate_imbalance - Calculate the amount of imbalance present within the
3814 * groups of a given sched_domain during load balance.
3815 * @sds: statistics of the sched_domain whose imbalance is to be calculated.
3816 * @this_cpu: Cpu for which currently load balance is being performed.
3817 * @imbalance: The variable to store the imbalance.
3818 */
3819static inline void calculate_imbalance(struct sd_lb_stats *sds, int this_cpu,
3820 unsigned long *imbalance)
3821{
3822 unsigned long max_pull;
3823 /*
3824 * In the presence of smp nice balancing, certain scenarios can have
3825 * max load less than avg load(as we skip the groups at or below
3826 * its cpu_power, while calculating max_load..)
3827 */
3828 if (sds->max_load < sds->avg_load) {
3829 *imbalance = 0;
3830 return fix_small_imbalance(sds, this_cpu, imbalance);
3831 }
3832
3833 /* Don't want to pull so many tasks that a group would go idle */
3834 max_pull = min(sds->max_load - sds->avg_load,
3835 sds->max_load - sds->busiest_load_per_task);
3836
3837 /* How much load to actually move to equalise the imbalance */
3838 *imbalance = min(max_pull * sds->busiest->__cpu_power,
3839 (sds->avg_load - sds->this_load) * sds->this->__cpu_power)
3840 / SCHED_LOAD_SCALE;
3841
3842 /*
3843 * if *imbalance is less than the average load per runnable task
3844 * there is no gaurantee that any tasks will be moved so we'll have
3845 * a think about bumping its value to force at least one task to be
3846 * moved
3847 */
3848 if (*imbalance < sds->busiest_load_per_task)
3849 return fix_small_imbalance(sds, this_cpu, imbalance);
3850
3851}
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303852/******* find_busiest_group() helpers end here *********************/
3853
Gautham R Shenoyb7bb4c92009-03-25 14:44:27 +05303854/**
3855 * find_busiest_group - Returns the busiest group within the sched_domain
3856 * if there is an imbalance. If there isn't an imbalance, and
3857 * the user has opted for power-savings, it returns a group whose
3858 * CPUs can be put to idle by rebalancing those tasks elsewhere, if
3859 * such a group exists.
3860 *
3861 * Also calculates the amount of weighted load which should be moved
3862 * to restore balance.
3863 *
3864 * @sd: The sched_domain whose busiest group is to be returned.
3865 * @this_cpu: The cpu for which load balancing is currently being performed.
3866 * @imbalance: Variable which stores amount of weighted load which should
3867 * be moved to restore balance/put a group to idle.
3868 * @idle: The idle status of this_cpu.
3869 * @sd_idle: The idleness of sd
3870 * @cpus: The set of CPUs under consideration for load-balancing.
3871 * @balance: Pointer to a variable indicating if this_cpu
3872 * is the appropriate cpu to perform load balancing at this_level.
3873 *
3874 * Returns: - the busiest group if imbalance exists.
3875 * - If no imbalance and user has opted for power-savings balance,
3876 * return the least loaded group whose CPUs can be
3877 * put to idle by rebalancing its tasks onto our group.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 */
3879static struct sched_group *
3880find_busiest_group(struct sched_domain *sd, int this_cpu,
3881 unsigned long *imbalance, enum cpu_idle_type idle,
3882 int *sd_idle, const struct cpumask *cpus, int *balance)
3883{
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303884 struct sd_lb_stats sds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303886 memset(&sds, 0, sizeof(sds));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303888 /*
3889 * Compute the various statistics relavent for load balancing at
3890 * this level.
3891 */
3892 update_sd_lb_stats(sd, this_cpu, idle, sd_idle, cpus,
3893 balance, &sds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894
Gautham R Shenoyb7bb4c92009-03-25 14:44:27 +05303895 /* Cases where imbalance does not exist from POV of this_cpu */
3896 /* 1) this_cpu is not the appropriate cpu to perform load balancing
3897 * at this level.
3898 * 2) There is no busy sibling group to pull from.
3899 * 3) This group is the busiest group.
3900 * 4) This group is more busy than the avg busieness at this
3901 * sched_domain.
3902 * 5) The imbalance is within the specified limit.
3903 * 6) Any rebalance would lead to ping-pong
3904 */
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303905 if (balance && !(*balance))
3906 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Gautham R Shenoyb7bb4c92009-03-25 14:44:27 +05303908 if (!sds.busiest || sds.busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 goto out_balanced;
3910
Gautham R Shenoyb7bb4c92009-03-25 14:44:27 +05303911 if (sds.this_load >= sds.max_load)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 goto out_balanced;
3913
Gautham R Shenoy222d6562009-03-25 14:43:56 +05303914 sds.avg_load = (SCHED_LOAD_SCALE * sds.total_load) / sds.total_pwr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
Gautham R Shenoyb7bb4c92009-03-25 14:44:27 +05303916 if (sds.this_load >= sds.avg_load)
3917 goto out_balanced;
3918
3919 if (100 * sds.max_load <= sd->imbalance_pct * sds.this_load)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 goto out_balanced;
3921
Gautham R Shenoy222d6562009-03-25 14:43:56 +05303922 sds.busiest_load_per_task /= sds.busiest_nr_running;
3923 if (sds.group_imb)
3924 sds.busiest_load_per_task =
3925 min(sds.busiest_load_per_task, sds.avg_load);
Ken Chen908a7c12007-10-17 16:55:11 +02003926
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 /*
3928 * We're trying to get all the cpus to the average_load, so we don't
3929 * want to push ourselves above the average load, nor do we wish to
3930 * reduce the max loaded cpu below the average load, as either of these
3931 * actions would just result in more rebalancing later, and ping-pong
3932 * tasks around. Thus we look for the minimum possible imbalance.
3933 * Negative imbalances (*we* are more loaded than anyone else) will
3934 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003935 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 * appear as very large values with unsigned longs.
3937 */
Gautham R Shenoy222d6562009-03-25 14:43:56 +05303938 if (sds.max_load <= sds.busiest_load_per_task)
Peter Williams2dd73a42006-06-27 02:54:34 -07003939 goto out_balanced;
3940
Gautham R Shenoydbc523a2009-03-25 14:44:12 +05303941 /* Looks like there is an imbalance. Compute it */
3942 calculate_imbalance(&sds, this_cpu, imbalance);
Gautham R Shenoy222d6562009-03-25 14:43:56 +05303943 return sds.busiest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
3945out_balanced:
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303946 /*
3947 * There is no obvious imbalance. But check if we can do some balancing
3948 * to save power.
3949 */
3950 if (check_power_save_busiest_group(&sds, this_cpu, imbalance))
3951 return sds.busiest;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003952ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 *imbalance = 0;
3954 return NULL;
3955}
3956
3957/*
3958 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3959 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003960static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003961find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Rusty Russell96f874e2008-11-25 02:35:14 +10303962 unsigned long imbalance, const struct cpumask *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003964 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003965 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 int i;
3967
Rusty Russell758b2cd2008-11-25 02:35:04 +10303968 for_each_cpu(i, sched_group_cpus(group)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003969 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003970
Rusty Russell96f874e2008-11-25 02:35:14 +10303971 if (!cpumask_test_cpu(i, cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003972 continue;
3973
Ingo Molnar48f24c42006-07-03 00:25:40 -07003974 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003975 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
Ingo Molnardd41f592007-07-09 18:51:59 +02003977 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003978 continue;
3979
Ingo Molnardd41f592007-07-09 18:51:59 +02003980 if (wl > max_load) {
3981 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003982 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 }
3984 }
3985
3986 return busiest;
3987}
3988
3989/*
Nick Piggin77391d72005-06-25 14:57:30 -07003990 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3991 * so long as it is large enough.
3992 */
3993#define MAX_PINNED_INTERVAL 512
3994
Rusty Russelldf7c8e82009-03-19 15:22:20 +10303995/* Working cpumask for load_balance and load_balance_newidle. */
3996static DEFINE_PER_CPU(cpumask_var_t, load_balance_tmpmask);
3997
Nick Piggin77391d72005-06-25 14:57:30 -07003998/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 * Check this_cpu to ensure it is balanced within domain. Attempt to move
4000 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004002static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004003 struct sched_domain *sd, enum cpu_idle_type idle,
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304004 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005{
Peter Williams43010652007-08-09 11:16:46 +02004006 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004009 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004010 unsigned long flags;
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304011 struct cpumask *cpus = __get_cpu_var(load_balance_tmpmask);
Nick Piggin5969fe02005-09-10 00:26:19 -07004012
Rusty Russell96f874e2008-11-25 02:35:14 +10304013 cpumask_setall(cpus);
Mike Travis7c16ec52008-04-04 18:11:11 -07004014
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004015 /*
4016 * When power savings policy is enabled for the parent domain, idle
4017 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02004018 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004019 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004020 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004021 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004022 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07004023 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
Ingo Molnar2d723762007-10-15 17:00:12 +02004025 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004027redo:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02004028 update_shares(sd);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004029 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07004030 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004031
Chen, Kenneth W06066712006-12-10 02:20:35 -08004032 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004033 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004034
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 if (!group) {
4036 schedstat_inc(sd, lb_nobusyg[idle]);
4037 goto out_balanced;
4038 }
4039
Mike Travis7c16ec52008-04-04 18:11:11 -07004040 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 if (!busiest) {
4042 schedstat_inc(sd, lb_nobusyq[idle]);
4043 goto out_balanced;
4044 }
4045
Nick Piggindb935db2005-06-25 14:57:11 -07004046 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
4048 schedstat_add(sd, lb_imbalance[idle], imbalance);
4049
Peter Williams43010652007-08-09 11:16:46 +02004050 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 if (busiest->nr_running > 1) {
4052 /*
4053 * Attempt to move tasks. If find_busiest_group has found
4054 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02004055 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 * correctly treated as an imbalance.
4057 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004058 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07004059 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02004060 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07004061 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07004062 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004063 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07004064
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004065 /*
4066 * some other cpu did the load balance for us.
4067 */
Peter Williams43010652007-08-09 11:16:46 +02004068 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004069 resched_cpu(this_cpu);
4070
Nick Piggin81026792005-06-25 14:57:07 -07004071 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004072 if (unlikely(all_pinned)) {
Rusty Russell96f874e2008-11-25 02:35:14 +10304073 cpumask_clear_cpu(cpu_of(busiest), cpus);
4074 if (!cpumask_empty(cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004075 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07004076 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 }
Nick Piggin81026792005-06-25 14:57:07 -07004079
Peter Williams43010652007-08-09 11:16:46 +02004080 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 schedstat_inc(sd, lb_failed[idle]);
4082 sd->nr_balance_failed++;
4083
4084 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004086 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004087
4088 /* don't kick the migration_thread, if the curr
4089 * task on busiest cpu can't be moved to this_cpu
4090 */
Rusty Russell96f874e2008-11-25 02:35:14 +10304091 if (!cpumask_test_cpu(this_cpu,
4092 &busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004093 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004094 all_pinned = 1;
4095 goto out_one_pinned;
4096 }
4097
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 if (!busiest->active_balance) {
4099 busiest->active_balance = 1;
4100 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07004101 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004103 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07004104 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 wake_up_process(busiest->migration_thread);
4106
4107 /*
4108 * We've kicked active balancing, reset the failure
4109 * counter.
4110 */
Nick Piggin39507452005-06-25 14:57:09 -07004111 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 }
Nick Piggin81026792005-06-25 14:57:07 -07004113 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 sd->nr_balance_failed = 0;
4115
Nick Piggin81026792005-06-25 14:57:07 -07004116 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 /* We were unbalanced, so reset the balancing interval */
4118 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07004119 } else {
4120 /*
4121 * If we've begun active balancing, start to back off. This
4122 * case may not be covered by the all_pinned logic if there
4123 * is only 1 task on the busy runqueue (because we don't call
4124 * move_tasks).
4125 */
4126 if (sd->balance_interval < sd->max_interval)
4127 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 }
4129
Peter Williams43010652007-08-09 11:16:46 +02004130 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004131 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004132 ld_moved = -1;
4133
4134 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
4136out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 schedstat_inc(sd, lb_balanced[idle]);
4138
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004139 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004140
4141out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07004143 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
4144 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 sd->balance_interval *= 2;
4146
Ingo Molnar48f24c42006-07-03 00:25:40 -07004147 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004148 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004149 ld_moved = -1;
4150 else
4151 ld_moved = 0;
4152out:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02004153 if (ld_moved)
4154 update_shares(sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004155 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156}
4157
4158/*
4159 * Check this_cpu to ensure it is balanced within domain. Attempt to move
4160 * tasks if there is an imbalance.
4161 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004162 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163 * this_rq is locked.
4164 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07004165static int
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304166load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167{
4168 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004169 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02004171 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07004172 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02004173 int all_pinned = 0;
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304174 struct cpumask *cpus = __get_cpu_var(load_balance_tmpmask);
Mike Travis7c16ec52008-04-04 18:11:11 -07004175
Rusty Russell96f874e2008-11-25 02:35:14 +10304176 cpumask_setall(cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07004177
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004178 /*
4179 * When power savings policy is enabled for the parent domain, idle
4180 * sibling can pick up load irrespective of busy siblings. In this case,
4181 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004182 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004183 */
4184 if (sd->flags & SD_SHARE_CPUPOWER &&
4185 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07004186 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187
Ingo Molnar2d723762007-10-15 17:00:12 +02004188 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004189redo:
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02004190 update_shares_locked(this_rq, sd);
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004191 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07004192 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004194 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004195 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 }
4197
Mike Travis7c16ec52008-04-04 18:11:11 -07004198 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07004199 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004200 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004201 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 }
4203
Nick Piggindb935db2005-06-25 14:57:11 -07004204 BUG_ON(busiest == this_rq);
4205
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004206 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07004207
Peter Williams43010652007-08-09 11:16:46 +02004208 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07004209 if (busiest->nr_running > 1) {
4210 /* Attempt to move tasks */
4211 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02004212 /* this_rq->clock is already updated */
4213 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02004214 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02004215 imbalance, sd, CPU_NEWLY_IDLE,
4216 &all_pinned);
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02004217 double_unlock_balance(this_rq, busiest);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004218
Suresh Siddha969bb4e2007-07-19 21:28:35 +02004219 if (unlikely(all_pinned)) {
Rusty Russell96f874e2008-11-25 02:35:14 +10304220 cpumask_clear_cpu(cpu_of(busiest), cpus);
4221 if (!cpumask_empty(cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004222 goto redo;
4223 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07004224 }
4225
Peter Williams43010652007-08-09 11:16:46 +02004226 if (!ld_moved) {
Vaidyanathan Srinivasan36dffab2008-12-20 10:06:38 +05304227 int active_balance = 0;
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05304228
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004229 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004230 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
4231 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07004232 return -1;
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05304233
4234 if (sched_mc_power_savings < POWERSAVINGS_BALANCE_WAKEUP)
4235 return -1;
4236
4237 if (sd->nr_balance_failed++ < 2)
4238 return -1;
4239
4240 /*
4241 * The only task running in a non-idle cpu can be moved to this
4242 * cpu in an attempt to completely freeup the other CPU
4243 * package. The same method used to move task in load_balance()
4244 * have been extended for load_balance_newidle() to speedup
4245 * consolidation at sched_mc=POWERSAVINGS_BALANCE_WAKEUP (2)
4246 *
4247 * The package power saving logic comes from
4248 * find_busiest_group(). If there are no imbalance, then
4249 * f_b_g() will return NULL. However when sched_mc={1,2} then
4250 * f_b_g() will select a group from which a running task may be
4251 * pulled to this cpu in order to make the other package idle.
4252 * If there is no opportunity to make a package idle and if
4253 * there are no imbalance, then f_b_g() will return NULL and no
4254 * action will be taken in load_balance_newidle().
4255 *
4256 * Under normal task pull operation due to imbalance, there
4257 * will be more than one task in the source run queue and
4258 * move_tasks() will succeed. ld_moved will be true and this
4259 * active balance code will not be triggered.
4260 */
4261
4262 /* Lock busiest in correct order while this_rq is held */
4263 double_lock_balance(this_rq, busiest);
4264
4265 /*
4266 * don't kick the migration_thread, if the curr
4267 * task on busiest cpu can't be moved to this_cpu
4268 */
Mike Travis6ca09df2008-12-31 18:08:45 -08004269 if (!cpumask_test_cpu(this_cpu, &busiest->curr->cpus_allowed)) {
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05304270 double_unlock_balance(this_rq, busiest);
4271 all_pinned = 1;
4272 return ld_moved;
4273 }
4274
4275 if (!busiest->active_balance) {
4276 busiest->active_balance = 1;
4277 busiest->push_cpu = this_cpu;
4278 active_balance = 1;
4279 }
4280
4281 double_unlock_balance(this_rq, busiest);
Peter Zijlstrada8d5082009-01-07 15:28:57 +01004282 /*
4283 * Should not call ttwu while holding a rq->lock
4284 */
4285 spin_unlock(&this_rq->lock);
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05304286 if (active_balance)
4287 wake_up_process(busiest->migration_thread);
Peter Zijlstrada8d5082009-01-07 15:28:57 +01004288 spin_lock(&this_rq->lock);
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05304289
Nick Piggin5969fe02005-09-10 00:26:19 -07004290 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004291 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02004293 update_shares_locked(this_rq, sd);
Peter Williams43010652007-08-09 11:16:46 +02004294 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004295
4296out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004297 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004298 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004299 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07004300 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004301 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004302
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304}
4305
4306/*
4307 * idle_balance is called by schedule() if this_cpu is about to become
4308 * idle. Attempts to pull tasks from other CPUs.
4309 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004310static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311{
4312 struct sched_domain *sd;
Vaidyanathan Srinivasanefbe0272008-12-08 20:52:49 +05304313 int pulled_task = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02004314 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315
4316 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07004317 unsigned long interval;
4318
4319 if (!(sd->flags & SD_LOAD_BALANCE))
4320 continue;
4321
4322 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07004323 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07004324 pulled_task = load_balance_newidle(this_cpu, this_rq,
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304325 sd);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07004326
4327 interval = msecs_to_jiffies(sd->balance_interval);
4328 if (time_after(next_balance, sd->last_balance + interval))
4329 next_balance = sd->last_balance + interval;
4330 if (pulled_task)
4331 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004333 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004334 /*
4335 * We are going idle. next_balance may be set based on
4336 * a busy processor. So reset next_balance.
4337 */
4338 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02004339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340}
4341
4342/*
4343 * active_load_balance is run by migration threads. It pushes running tasks
4344 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
4345 * running on each physical CPU where possible, and avoids physical /
4346 * logical imbalances.
4347 *
4348 * Called with busiest_rq locked.
4349 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004350static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351{
Nick Piggin39507452005-06-25 14:57:09 -07004352 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004353 struct sched_domain *sd;
4354 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07004355
Ingo Molnar48f24c42006-07-03 00:25:40 -07004356 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07004357 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07004358 return;
4359
4360 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361
4362 /*
Nick Piggin39507452005-06-25 14:57:09 -07004363 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004364 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07004365 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 */
Nick Piggin39507452005-06-25 14:57:09 -07004367 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368
Nick Piggin39507452005-06-25 14:57:09 -07004369 /* move a task from busiest_rq to target_rq */
4370 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02004371 update_rq_clock(busiest_rq);
4372 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
Nick Piggin39507452005-06-25 14:57:09 -07004374 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07004375 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07004376 if ((sd->flags & SD_LOAD_BALANCE) &&
Rusty Russell758b2cd2008-11-25 02:35:04 +10304377 cpumask_test_cpu(busiest_cpu, sched_domain_span(sd)))
Nick Piggin39507452005-06-25 14:57:09 -07004378 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07004379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380
Ingo Molnar48f24c42006-07-03 00:25:40 -07004381 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004382 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383
Peter Williams43010652007-08-09 11:16:46 +02004384 if (move_one_task(target_rq, target_cpu, busiest_rq,
4385 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07004386 schedstat_inc(sd, alb_pushed);
4387 else
4388 schedstat_inc(sd, alb_failed);
4389 }
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02004390 double_unlock_balance(busiest_rq, target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391}
4392
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004393#ifdef CONFIG_NO_HZ
4394static struct {
4395 atomic_t load_balancer;
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304396 cpumask_var_t cpu_mask;
Gautham R Shenoyf711f602009-04-14 10:25:30 +05304397 cpumask_var_t ilb_grp_nohz_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004398} nohz ____cacheline_aligned = {
4399 .load_balancer = ATOMIC_INIT(-1),
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004400};
4401
Arun R Bharadwajeea08f32009-04-16 12:16:41 +05304402int get_nohz_load_balancer(void)
4403{
4404 return atomic_read(&nohz.load_balancer);
4405}
4406
Gautham R Shenoyf711f602009-04-14 10:25:30 +05304407#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
4408/**
4409 * lowest_flag_domain - Return lowest sched_domain containing flag.
4410 * @cpu: The cpu whose lowest level of sched domain is to
4411 * be returned.
4412 * @flag: The flag to check for the lowest sched_domain
4413 * for the given cpu.
4414 *
4415 * Returns the lowest sched_domain of a cpu which contains the given flag.
4416 */
4417static inline struct sched_domain *lowest_flag_domain(int cpu, int flag)
4418{
4419 struct sched_domain *sd;
4420
4421 for_each_domain(cpu, sd)
4422 if (sd && (sd->flags & flag))
4423 break;
4424
4425 return sd;
4426}
4427
4428/**
4429 * for_each_flag_domain - Iterates over sched_domains containing the flag.
4430 * @cpu: The cpu whose domains we're iterating over.
4431 * @sd: variable holding the value of the power_savings_sd
4432 * for cpu.
4433 * @flag: The flag to filter the sched_domains to be iterated.
4434 *
4435 * Iterates over all the scheduler domains for a given cpu that has the 'flag'
4436 * set, starting from the lowest sched_domain to the highest.
4437 */
4438#define for_each_flag_domain(cpu, sd, flag) \
4439 for (sd = lowest_flag_domain(cpu, flag); \
4440 (sd && (sd->flags & flag)); sd = sd->parent)
4441
4442/**
4443 * is_semi_idle_group - Checks if the given sched_group is semi-idle.
4444 * @ilb_group: group to be checked for semi-idleness
4445 *
4446 * Returns: 1 if the group is semi-idle. 0 otherwise.
4447 *
4448 * We define a sched_group to be semi idle if it has atleast one idle-CPU
4449 * and atleast one non-idle CPU. This helper function checks if the given
4450 * sched_group is semi-idle or not.
4451 */
4452static inline int is_semi_idle_group(struct sched_group *ilb_group)
4453{
4454 cpumask_and(nohz.ilb_grp_nohz_mask, nohz.cpu_mask,
4455 sched_group_cpus(ilb_group));
4456
4457 /*
4458 * A sched_group is semi-idle when it has atleast one busy cpu
4459 * and atleast one idle cpu.
4460 */
4461 if (cpumask_empty(nohz.ilb_grp_nohz_mask))
4462 return 0;
4463
4464 if (cpumask_equal(nohz.ilb_grp_nohz_mask, sched_group_cpus(ilb_group)))
4465 return 0;
4466
4467 return 1;
4468}
4469/**
4470 * find_new_ilb - Finds the optimum idle load balancer for nomination.
4471 * @cpu: The cpu which is nominating a new idle_load_balancer.
4472 *
4473 * Returns: Returns the id of the idle load balancer if it exists,
4474 * Else, returns >= nr_cpu_ids.
4475 *
4476 * This algorithm picks the idle load balancer such that it belongs to a
4477 * semi-idle powersavings sched_domain. The idea is to try and avoid
4478 * completely idle packages/cores just for the purpose of idle load balancing
4479 * when there are other idle cpu's which are better suited for that job.
4480 */
4481static int find_new_ilb(int cpu)
4482{
4483 struct sched_domain *sd;
4484 struct sched_group *ilb_group;
4485
4486 /*
4487 * Have idle load balancer selection from semi-idle packages only
4488 * when power-aware load balancing is enabled
4489 */
4490 if (!(sched_smt_power_savings || sched_mc_power_savings))
4491 goto out_done;
4492
4493 /*
4494 * Optimize for the case when we have no idle CPUs or only one
4495 * idle CPU. Don't walk the sched_domain hierarchy in such cases
4496 */
4497 if (cpumask_weight(nohz.cpu_mask) < 2)
4498 goto out_done;
4499
4500 for_each_flag_domain(cpu, sd, SD_POWERSAVINGS_BALANCE) {
4501 ilb_group = sd->groups;
4502
4503 do {
4504 if (is_semi_idle_group(ilb_group))
4505 return cpumask_first(nohz.ilb_grp_nohz_mask);
4506
4507 ilb_group = ilb_group->next;
4508
4509 } while (ilb_group != sd->groups);
4510 }
4511
4512out_done:
4513 return cpumask_first(nohz.cpu_mask);
4514}
4515#else /* (CONFIG_SCHED_MC || CONFIG_SCHED_SMT) */
4516static inline int find_new_ilb(int call_cpu)
4517{
Gautham R Shenoy6e29ec52009-04-21 08:40:49 +05304518 return cpumask_first(nohz.cpu_mask);
Gautham R Shenoyf711f602009-04-14 10:25:30 +05304519}
4520#endif
4521
Christoph Lameter7835b982006-12-10 02:20:22 -08004522/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004523 * This routine will try to nominate the ilb (idle load balancing)
4524 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
4525 * load balancing on behalf of all those cpus. If all the cpus in the system
4526 * go into this tickless mode, then there will be no ilb owner (as there is
4527 * no need for one) and all the cpus will sleep till the next wakeup event
4528 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08004529 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004530 * For the ilb owner, tick is not stopped. And this tick will be used
4531 * for idle load balancing. ilb owner will still be part of
4532 * nohz.cpu_mask..
4533 *
4534 * While stopping the tick, this cpu will become the ilb owner if there
4535 * is no other owner. And will be the owner till that cpu becomes busy
4536 * or if all cpus in the system stop their ticks at which point
4537 * there is no need for ilb owner.
4538 *
4539 * When the ilb owner becomes busy, it nominates another owner, during the
4540 * next busy scheduler_tick()
4541 */
4542int select_nohz_load_balancer(int stop_tick)
4543{
4544 int cpu = smp_processor_id();
4545
4546 if (stop_tick) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004547 cpu_rq(cpu)->in_nohz_recently = 1;
4548
Suresh Siddha483b4ee2009-02-04 11:59:44 -08004549 if (!cpu_active(cpu)) {
4550 if (atomic_read(&nohz.load_balancer) != cpu)
4551 return 0;
4552
4553 /*
4554 * If we are going offline and still the leader,
4555 * give up!
4556 */
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004557 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4558 BUG();
Suresh Siddha483b4ee2009-02-04 11:59:44 -08004559
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004560 return 0;
4561 }
4562
Suresh Siddha483b4ee2009-02-04 11:59:44 -08004563 cpumask_set_cpu(cpu, nohz.cpu_mask);
4564
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004565 /* time for ilb owner also to sleep */
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304566 if (cpumask_weight(nohz.cpu_mask) == num_online_cpus()) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004567 if (atomic_read(&nohz.load_balancer) == cpu)
4568 atomic_set(&nohz.load_balancer, -1);
4569 return 0;
4570 }
4571
4572 if (atomic_read(&nohz.load_balancer) == -1) {
4573 /* make me the ilb owner */
4574 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
4575 return 1;
Gautham R Shenoye790fb02009-04-14 10:25:35 +05304576 } else if (atomic_read(&nohz.load_balancer) == cpu) {
4577 int new_ilb;
4578
4579 if (!(sched_smt_power_savings ||
4580 sched_mc_power_savings))
4581 return 1;
4582 /*
4583 * Check to see if there is a more power-efficient
4584 * ilb.
4585 */
4586 new_ilb = find_new_ilb(cpu);
4587 if (new_ilb < nr_cpu_ids && new_ilb != cpu) {
4588 atomic_set(&nohz.load_balancer, -1);
4589 resched_cpu(new_ilb);
4590 return 0;
4591 }
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004592 return 1;
Gautham R Shenoye790fb02009-04-14 10:25:35 +05304593 }
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004594 } else {
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304595 if (!cpumask_test_cpu(cpu, nohz.cpu_mask))
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004596 return 0;
4597
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304598 cpumask_clear_cpu(cpu, nohz.cpu_mask);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004599
4600 if (atomic_read(&nohz.load_balancer) == cpu)
4601 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4602 BUG();
4603 }
4604 return 0;
4605}
4606#endif
4607
4608static DEFINE_SPINLOCK(balancing);
4609
4610/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004611 * It checks each scheduling domain to see if it is due to be balanced,
4612 * and initiates a balancing operation if so.
4613 *
4614 * Balancing parameters are set up in arch_init_sched_domains.
4615 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004616static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08004617{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004618 int balance = 1;
4619 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08004620 unsigned long interval;
4621 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004622 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08004623 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004624 int update_next_balance = 0;
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004625 int need_serialize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004627 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 if (!(sd->flags & SD_LOAD_BALANCE))
4629 continue;
4630
4631 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004632 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 interval *= sd->busy_factor;
4634
4635 /* scale ms to jiffies */
4636 interval = msecs_to_jiffies(interval);
4637 if (unlikely(!interval))
4638 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02004639 if (interval > HZ*NR_CPUS/10)
4640 interval = HZ*NR_CPUS/10;
4641
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004642 need_serialize = sd->flags & SD_SERIALIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004644 if (need_serialize) {
Christoph Lameter08c183f2006-12-10 02:20:29 -08004645 if (!spin_trylock(&balancing))
4646 goto out;
4647 }
4648
Christoph Lameterc9819f42006-12-10 02:20:25 -08004649 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304650 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004651 /*
4652 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07004653 * longer idle, or one of our SMT siblings is
4654 * not idle.
4655 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004656 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004658 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 }
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004660 if (need_serialize)
Christoph Lameter08c183f2006-12-10 02:20:29 -08004661 spin_unlock(&balancing);
4662out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02004663 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08004664 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004665 update_next_balance = 1;
4666 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004667
4668 /*
4669 * Stop the load balance at this level. There is another
4670 * CPU in our sched group which is doing load balancing more
4671 * actively.
4672 */
4673 if (!balance)
4674 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004676
4677 /*
4678 * next_balance will be updated only when there is a need.
4679 * When the cpu is attached to null domain for ex, it will not be
4680 * updated.
4681 */
4682 if (likely(update_next_balance))
4683 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004684}
4685
4686/*
4687 * run_rebalance_domains is triggered when needed from the scheduler tick.
4688 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4689 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4690 */
4691static void run_rebalance_domains(struct softirq_action *h)
4692{
Ingo Molnardd41f592007-07-09 18:51:59 +02004693 int this_cpu = smp_processor_id();
4694 struct rq *this_rq = cpu_rq(this_cpu);
4695 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4696 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004697
Ingo Molnardd41f592007-07-09 18:51:59 +02004698 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004699
4700#ifdef CONFIG_NO_HZ
4701 /*
4702 * If this cpu is the owner for idle load balancing, then do the
4703 * balancing on behalf of the other idle cpus whose ticks are
4704 * stopped.
4705 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004706 if (this_rq->idle_at_tick &&
4707 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004708 struct rq *rq;
4709 int balance_cpu;
4710
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304711 for_each_cpu(balance_cpu, nohz.cpu_mask) {
4712 if (balance_cpu == this_cpu)
4713 continue;
4714
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004715 /*
4716 * If this cpu gets work to do, stop the load balancing
4717 * work being done for other cpus. Next load
4718 * balancing owner will pick it up.
4719 */
4720 if (need_resched())
4721 break;
4722
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004723 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004724
4725 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004726 if (time_after(this_rq->next_balance, rq->next_balance))
4727 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004728 }
4729 }
4730#endif
4731}
4732
Frederic Weisbecker8a0be9e2009-03-05 01:27:02 +01004733static inline int on_null_domain(int cpu)
4734{
4735 return !rcu_dereference(cpu_rq(cpu)->sd);
4736}
4737
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004738/*
4739 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4740 *
4741 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4742 * idle load balancing owner or decide to stop the periodic load balancing,
4743 * if the whole system is idle.
4744 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004745static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004746{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004747#ifdef CONFIG_NO_HZ
4748 /*
4749 * If we were in the nohz mode recently and busy at the current
4750 * scheduler tick, then check if we need to nominate new idle
4751 * load balancer.
4752 */
4753 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4754 rq->in_nohz_recently = 0;
4755
4756 if (atomic_read(&nohz.load_balancer) == cpu) {
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304757 cpumask_clear_cpu(cpu, nohz.cpu_mask);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004758 atomic_set(&nohz.load_balancer, -1);
4759 }
4760
4761 if (atomic_read(&nohz.load_balancer) == -1) {
Gautham R Shenoyf711f602009-04-14 10:25:30 +05304762 int ilb = find_new_ilb(cpu);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004763
Mike Travis434d53b2008-04-04 18:11:04 -07004764 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004765 resched_cpu(ilb);
4766 }
4767 }
4768
4769 /*
4770 * If this cpu is idle and doing idle load balancing for all the
4771 * cpus with ticks stopped, is it time for that to stop?
4772 */
4773 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304774 cpumask_weight(nohz.cpu_mask) == num_online_cpus()) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004775 resched_cpu(cpu);
4776 return;
4777 }
4778
4779 /*
4780 * If this cpu is idle and the idle load balancing is done by
4781 * someone else, then no need raise the SCHED_SOFTIRQ
4782 */
4783 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304784 cpumask_test_cpu(cpu, nohz.cpu_mask))
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004785 return;
4786#endif
Frederic Weisbecker8a0be9e2009-03-05 01:27:02 +01004787 /* Don't need to rebalance while attached to NULL domain */
4788 if (time_after_eq(jiffies, rq->next_balance) &&
4789 likely(!on_null_domain(cpu)))
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004790 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791}
Ingo Molnardd41f592007-07-09 18:51:59 +02004792
4793#else /* CONFIG_SMP */
4794
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795/*
4796 * on UP we do not need to balance between CPUs:
4797 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004798static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799{
4800}
Ingo Molnardd41f592007-07-09 18:51:59 +02004801
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802#endif
4803
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804DEFINE_PER_CPU(struct kernel_stat, kstat);
4805
4806EXPORT_PER_CPU_SYMBOL(kstat);
4807
4808/*
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09004809 * Return any ns on the sched_clock that have not yet been accounted in
Frank Mayharf06febc2008-09-12 09:54:39 -07004810 * @p in case that task is currently running.
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09004811 *
4812 * Called with task_rq_lock() held on @rq.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 */
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09004814static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq)
4815{
4816 u64 ns = 0;
4817
4818 if (task_current(rq, p)) {
4819 update_rq_clock(rq);
4820 ns = rq->clock - p->se.exec_start;
4821 if ((s64)ns < 0)
4822 ns = 0;
4823 }
4824
4825 return ns;
4826}
4827
Frank Mayharbb34d922008-09-12 09:54:39 -07004828unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004831 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07004832 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004833
Ingo Molnar41b86e92007-07-09 18:51:58 +02004834 rq = task_rq_lock(p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09004835 ns = do_task_delta_exec(p, rq);
4836 task_rq_unlock(rq, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02004837
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09004838 return ns;
4839}
Frank Mayharf06febc2008-09-12 09:54:39 -07004840
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09004841/*
4842 * Return accounted runtime for the task.
4843 * In case the task is currently running, return the runtime plus current's
4844 * pending runtime that have not been accounted yet.
4845 */
4846unsigned long long task_sched_runtime(struct task_struct *p)
4847{
4848 unsigned long flags;
4849 struct rq *rq;
4850 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004851
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09004852 rq = task_rq_lock(p, &flags);
4853 ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq);
4854 task_rq_unlock(rq, &flags);
4855
4856 return ns;
4857}
4858
4859/*
4860 * Return sum_exec_runtime for the thread group.
4861 * In case the task is currently running, return the sum plus current's
4862 * pending runtime that have not been accounted yet.
4863 *
4864 * Note that the thread group might have other running tasks as well,
4865 * so the return value not includes other pending runtime that other
4866 * running tasks might have.
4867 */
4868unsigned long long thread_group_sched_runtime(struct task_struct *p)
4869{
4870 struct task_cputime totals;
4871 unsigned long flags;
4872 struct rq *rq;
4873 u64 ns;
4874
4875 rq = task_rq_lock(p, &flags);
4876 thread_group_cputime(p, &totals);
4877 ns = totals.sum_exec_runtime + do_task_delta_exec(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878 task_rq_unlock(rq, &flags);
4879
4880 return ns;
4881}
4882
4883/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 * Account user cpu time to a process.
4885 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 * @cputime: the cpu time spent in user space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004887 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004889void account_user_time(struct task_struct *p, cputime_t cputime,
4890 cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891{
4892 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4893 cputime64_t tmp;
4894
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004895 /* Add user time to process. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004897 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07004898 account_group_user_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899
4900 /* Add user time to cpustat. */
4901 tmp = cputime_to_cputime64(cputime);
4902 if (TASK_NICE(p) > 0)
4903 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4904 else
4905 cpustat->user = cputime64_add(cpustat->user, tmp);
Bharata B Raoef12fef2009-03-31 10:02:22 +05304906
4907 cpuacct_update_stats(p, CPUACCT_STAT_USER, cputime);
Jonathan Lim49b5cf32008-07-25 01:48:40 -07004908 /* Account for user time used */
4909 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910}
4911
4912/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004913 * Account guest cpu time to a process.
4914 * @p: the process that the cpu time gets accounted to
4915 * @cputime: the cpu time spent in virtual machine since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004916 * @cputime_scaled: cputime scaled by cpu frequency
Laurent Vivier94886b82007-10-15 17:00:19 +02004917 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004918static void account_guest_time(struct task_struct *p, cputime_t cputime,
4919 cputime_t cputime_scaled)
Laurent Vivier94886b82007-10-15 17:00:19 +02004920{
4921 cputime64_t tmp;
4922 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4923
4924 tmp = cputime_to_cputime64(cputime);
4925
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004926 /* Add guest time to process. */
Laurent Vivier94886b82007-10-15 17:00:19 +02004927 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004928 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07004929 account_group_user_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02004930 p->gtime = cputime_add(p->gtime, cputime);
4931
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004932 /* Add guest time to cpustat. */
Laurent Vivier94886b82007-10-15 17:00:19 +02004933 cpustat->user = cputime64_add(cpustat->user, tmp);
4934 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4935}
4936
4937/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938 * Account system cpu time to a process.
4939 * @p: the process that the cpu time gets accounted to
4940 * @hardirq_offset: the offset to subtract from hardirq_count()
4941 * @cputime: the cpu time spent in kernel space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004942 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 */
4944void account_system_time(struct task_struct *p, int hardirq_offset,
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004945 cputime_t cputime, cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946{
4947 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 cputime64_t tmp;
4949
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004950 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004951 account_guest_time(p, cputime, cputime_scaled);
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004952 return;
4953 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004954
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004955 /* Add system time to process. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 p->stime = cputime_add(p->stime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004957 p->stimescaled = cputime_add(p->stimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07004958 account_group_system_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959
4960 /* Add system time to cpustat. */
4961 tmp = cputime_to_cputime64(cputime);
4962 if (hardirq_count() - hardirq_offset)
4963 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4964 else if (softirq_count())
4965 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966 else
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004967 cpustat->system = cputime64_add(cpustat->system, tmp);
4968
Bharata B Raoef12fef2009-03-31 10:02:22 +05304969 cpuacct_update_stats(p, CPUACCT_STAT_SYSTEM, cputime);
4970
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 /* Account for system time used */
4972 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973}
4974
4975/*
4976 * Account for involuntary wait time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 * @steal: the cpu time spent in involuntary wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004979void account_steal_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004982 cputime64_t cputime64 = cputime_to_cputime64(cputime);
4983
4984 cpustat->steal = cputime64_add(cpustat->steal, cputime64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985}
4986
Christoph Lameter7835b982006-12-10 02:20:22 -08004987/*
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004988 * Account for idle time.
4989 * @cputime: the cpu time spent in idle wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004991void account_idle_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992{
4993 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004994 cputime64_t cputime64 = cputime_to_cputime64(cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995 struct rq *rq = this_rq();
4996
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004997 if (atomic_read(&rq->nr_iowait) > 0)
4998 cpustat->iowait = cputime64_add(cpustat->iowait, cputime64);
4999 else
5000 cpustat->idle = cputime64_add(cpustat->idle, cputime64);
Christoph Lameter7835b982006-12-10 02:20:22 -08005001}
5002
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01005003#ifndef CONFIG_VIRT_CPU_ACCOUNTING
5004
5005/*
5006 * Account a single tick of cpu time.
5007 * @p: the process that the cpu time gets accounted to
5008 * @user_tick: indicates if the tick is a user or a system tick
5009 */
5010void account_process_tick(struct task_struct *p, int user_tick)
5011{
5012 cputime_t one_jiffy = jiffies_to_cputime(1);
5013 cputime_t one_jiffy_scaled = cputime_to_scaled(one_jiffy);
5014 struct rq *rq = this_rq();
5015
5016 if (user_tick)
5017 account_user_time(p, one_jiffy, one_jiffy_scaled);
Eric Dumazetf5f293a2009-04-29 14:44:49 +02005018 else if ((p != rq->idle) || (irq_count() != HARDIRQ_OFFSET))
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01005019 account_system_time(p, HARDIRQ_OFFSET, one_jiffy,
5020 one_jiffy_scaled);
5021 else
5022 account_idle_time(one_jiffy);
5023}
5024
5025/*
5026 * Account multiple ticks of steal time.
5027 * @p: the process from which the cpu time has been stolen
5028 * @ticks: number of stolen ticks
5029 */
5030void account_steal_ticks(unsigned long ticks)
5031{
5032 account_steal_time(jiffies_to_cputime(ticks));
5033}
5034
5035/*
5036 * Account multiple ticks of idle time.
5037 * @ticks: number of stolen ticks
5038 */
5039void account_idle_ticks(unsigned long ticks)
5040{
5041 account_idle_time(jiffies_to_cputime(ticks));
5042}
5043
5044#endif
5045
Christoph Lameter7835b982006-12-10 02:20:22 -08005046/*
Balbir Singh49048622008-09-05 18:12:23 +02005047 * Use precise platform statistics if available:
5048 */
5049#ifdef CONFIG_VIRT_CPU_ACCOUNTING
5050cputime_t task_utime(struct task_struct *p)
5051{
5052 return p->utime;
5053}
5054
5055cputime_t task_stime(struct task_struct *p)
5056{
5057 return p->stime;
5058}
5059#else
5060cputime_t task_utime(struct task_struct *p)
5061{
5062 clock_t utime = cputime_to_clock_t(p->utime),
5063 total = utime + cputime_to_clock_t(p->stime);
5064 u64 temp;
5065
5066 /*
5067 * Use CFS's precise accounting:
5068 */
5069 temp = (u64)nsec_to_clock_t(p->se.sum_exec_runtime);
5070
5071 if (total) {
5072 temp *= utime;
5073 do_div(temp, total);
5074 }
5075 utime = (clock_t)temp;
5076
5077 p->prev_utime = max(p->prev_utime, clock_t_to_cputime(utime));
5078 return p->prev_utime;
5079}
5080
5081cputime_t task_stime(struct task_struct *p)
5082{
5083 clock_t stime;
5084
5085 /*
5086 * Use CFS's precise accounting. (we subtract utime from
5087 * the total, to make sure the total observed by userspace
5088 * grows monotonically - apps rely on that):
5089 */
5090 stime = nsec_to_clock_t(p->se.sum_exec_runtime) -
5091 cputime_to_clock_t(task_utime(p));
5092
5093 if (stime >= 0)
5094 p->prev_stime = max(p->prev_stime, clock_t_to_cputime(stime));
5095
5096 return p->prev_stime;
5097}
5098#endif
5099
5100inline cputime_t task_gtime(struct task_struct *p)
5101{
5102 return p->gtime;
5103}
5104
5105/*
Christoph Lameter7835b982006-12-10 02:20:22 -08005106 * This function gets called by the timer code, with HZ frequency.
5107 * We call it with interrupts disabled.
5108 *
5109 * It also gets called by the fork code, when changing the parent's
5110 * timeslices.
5111 */
5112void scheduler_tick(void)
5113{
Christoph Lameter7835b982006-12-10 02:20:22 -08005114 int cpu = smp_processor_id();
5115 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005116 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02005117
5118 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08005119
Ingo Molnardd41f592007-07-09 18:51:59 +02005120 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02005121 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02005122 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01005123 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02005124 spin_unlock(&rq->lock);
5125
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02005126 perf_counter_task_tick(curr, cpu);
5127
Christoph Lametere418e1c2006-12-10 02:20:23 -08005128#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02005129 rq->idle_at_tick = idle_cpu(cpu);
5130 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08005131#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132}
5133
Lai Jiangshan132380a2009-04-02 14:18:25 +08005134notrace unsigned long get_parent_ip(unsigned long addr)
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005135{
5136 if (in_lock_functions(addr)) {
5137 addr = CALLER_ADDR2;
5138 if (in_lock_functions(addr))
5139 addr = CALLER_ADDR3;
5140 }
5141 return addr;
5142}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143
Steven Rostedt7e49fcc2009-01-22 19:01:40 -05005144#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
5145 defined(CONFIG_PREEMPT_TRACER))
5146
Srinivasa Ds43627582008-02-23 15:24:04 -08005147void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005149#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 /*
5151 * Underflow?
5152 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07005153 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
5154 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005155#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005157#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158 /*
5159 * Spinlock count overflowing soon?
5160 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005161 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
5162 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005163#endif
5164 if (preempt_count() == val)
5165 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166}
5167EXPORT_SYMBOL(add_preempt_count);
5168
Srinivasa Ds43627582008-02-23 15:24:04 -08005169void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005171#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172 /*
5173 * Underflow?
5174 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01005175 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07005176 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177 /*
5178 * Is the spinlock portion underflowing?
5179 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07005180 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
5181 !(preempt_count() & PREEMPT_MASK)))
5182 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005183#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07005184
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005185 if (preempt_count() == val)
5186 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187 preempt_count() -= val;
5188}
5189EXPORT_SYMBOL(sub_preempt_count);
5190
5191#endif
5192
5193/*
Ingo Molnardd41f592007-07-09 18:51:59 +02005194 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 */
Ingo Molnardd41f592007-07-09 18:51:59 +02005196static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197{
Satyam Sharma838225b2007-10-24 18:23:50 +02005198 struct pt_regs *regs = get_irq_regs();
5199
5200 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
5201 prev->comm, prev->pid, preempt_count());
5202
Ingo Molnardd41f592007-07-09 18:51:59 +02005203 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07005204 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02005205 if (irqs_disabled())
5206 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02005207
5208 if (regs)
5209 show_regs(regs);
5210 else
5211 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02005212}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
Ingo Molnardd41f592007-07-09 18:51:59 +02005214/*
5215 * Various schedule()-time debugging checks and statistics:
5216 */
5217static inline void schedule_debug(struct task_struct *prev)
5218{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005220 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 * schedule() atomically, we ignore that path for now.
5222 * Otherwise, whine if we are scheduling when we should not be.
5223 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02005224 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02005225 __schedule_bug(prev);
5226
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
5228
Ingo Molnar2d723762007-10-15 17:00:12 +02005229 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02005230#ifdef CONFIG_SCHEDSTATS
5231 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02005232 schedstat_inc(this_rq(), bkl_count);
5233 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02005234 }
5235#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005236}
5237
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01005238static void put_prev_task(struct rq *rq, struct task_struct *prev)
5239{
5240 if (prev->state == TASK_RUNNING) {
5241 u64 runtime = prev->se.sum_exec_runtime;
5242
5243 runtime -= prev->se.prev_sum_exec_runtime;
5244 runtime = min_t(u64, runtime, 2*sysctl_sched_migration_cost);
5245
5246 /*
5247 * In order to avoid avg_overlap growing stale when we are
5248 * indeed overlapping and hence not getting put to sleep, grow
5249 * the avg_overlap on preemption.
5250 *
5251 * We use the average preemption runtime because that
5252 * correlates to the amount of cache footprint a task can
5253 * build up.
5254 */
5255 update_avg(&prev->se.avg_overlap, runtime);
5256 }
5257 prev->sched_class->put_prev_task(rq, prev);
5258}
5259
Ingo Molnardd41f592007-07-09 18:51:59 +02005260/*
5261 * Pick up the highest-prio task:
5262 */
5263static inline struct task_struct *
Wang Chenb67802e2009-03-02 13:55:26 +08005264pick_next_task(struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02005265{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02005266 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02005267 struct task_struct *p;
5268
5269 /*
5270 * Optimization: we know that if all tasks are in
5271 * the fair class we can call that function directly:
5272 */
5273 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02005274 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005275 if (likely(p))
5276 return p;
5277 }
5278
5279 class = sched_class_highest;
5280 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02005281 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005282 if (p)
5283 return p;
5284 /*
5285 * Will never be NULL as the idle class always
5286 * returns a non-NULL p:
5287 */
5288 class = class->next;
5289 }
5290}
5291
5292/*
5293 * schedule() is the main scheduler function.
5294 */
Peter Zijlstraff743342009-03-13 12:21:26 +01005295asmlinkage void __sched schedule(void)
Ingo Molnardd41f592007-07-09 18:51:59 +02005296{
5297 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08005298 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02005299 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02005300 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02005301
Peter Zijlstraff743342009-03-13 12:21:26 +01005302need_resched:
5303 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02005304 cpu = smp_processor_id();
5305 rq = cpu_rq(cpu);
5306 rcu_qsctr_inc(cpu);
5307 prev = rq->curr;
5308 switch_count = &prev->nivcsw;
5309
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310 release_kernel_lock(prev);
5311need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312
Ingo Molnardd41f592007-07-09 18:51:59 +02005313 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314
Peter Zijlstra31656512008-07-18 18:01:23 +02005315 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02005316 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005317
Peter Zijlstra8cd162c2008-10-15 20:37:23 +02005318 spin_lock_irq(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02005319 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02005320 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
Ingo Molnardd41f592007-07-09 18:51:59 +02005322 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Oleg Nesterov16882c12008-06-08 21:20:41 +04005323 if (unlikely(signal_pending_state(prev->state, prev)))
Ingo Molnardd41f592007-07-09 18:51:59 +02005324 prev->state = TASK_RUNNING;
Oleg Nesterov16882c12008-06-08 21:20:41 +04005325 else
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005326 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02005327 switch_count = &prev->nvcsw;
5328 }
5329
Steven Rostedt9a897c52008-01-25 21:08:22 +01005330#ifdef CONFIG_SMP
5331 if (prev->sched_class->pre_schedule)
5332 prev->sched_class->pre_schedule(rq, prev);
5333#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01005334
Ingo Molnardd41f592007-07-09 18:51:59 +02005335 if (unlikely(!rq->nr_running))
5336 idle_balance(cpu, rq);
5337
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01005338 put_prev_task(rq, prev);
Wang Chenb67802e2009-03-02 13:55:26 +08005339 next = pick_next_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01005342 sched_info_switch(prev, next);
Paul Mackerras564c2b22009-05-22 14:27:22 +10005343 perf_counter_task_sched_out(prev, next, cpu);
David Simner673a90a2008-04-29 10:08:59 +01005344
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 rq->nr_switches++;
5346 rq->curr = next;
5347 ++*switch_count;
5348
Ingo Molnardd41f592007-07-09 18:51:59 +02005349 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005350 /*
5351 * the context switch might have flipped the stack from under
5352 * us, hence refresh the local variables.
5353 */
5354 cpu = smp_processor_id();
5355 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356 } else
5357 spin_unlock_irq(&rq->lock);
5358
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005359 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005361
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362 preempt_enable_no_resched();
Peter Zijlstraff743342009-03-13 12:21:26 +01005363 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 goto need_resched;
5365}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366EXPORT_SYMBOL(schedule);
5367
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01005368#ifdef CONFIG_SMP
5369/*
5370 * Look out! "owner" is an entirely speculative pointer
5371 * access and not reliable.
5372 */
5373int mutex_spin_on_owner(struct mutex *lock, struct thread_info *owner)
5374{
5375 unsigned int cpu;
5376 struct rq *rq;
5377
5378 if (!sched_feat(OWNER_SPIN))
5379 return 0;
5380
5381#ifdef CONFIG_DEBUG_PAGEALLOC
5382 /*
5383 * Need to access the cpu field knowing that
5384 * DEBUG_PAGEALLOC could have unmapped it if
5385 * the mutex owner just released it and exited.
5386 */
5387 if (probe_kernel_address(&owner->cpu, cpu))
5388 goto out;
5389#else
5390 cpu = owner->cpu;
5391#endif
5392
5393 /*
5394 * Even if the access succeeded (likely case),
5395 * the cpu field may no longer be valid.
5396 */
5397 if (cpu >= nr_cpumask_bits)
5398 goto out;
5399
5400 /*
5401 * We need to validate that we can do a
5402 * get_cpu() and that we have the percpu area.
5403 */
5404 if (!cpu_online(cpu))
5405 goto out;
5406
5407 rq = cpu_rq(cpu);
5408
5409 for (;;) {
5410 /*
5411 * Owner changed, break to re-assess state.
5412 */
5413 if (lock->owner != owner)
5414 break;
5415
5416 /*
5417 * Is that owner really running on that cpu?
5418 */
5419 if (task_thread_info(rq->curr) != owner || need_resched())
5420 return 0;
5421
5422 cpu_relax();
5423 }
5424out:
5425 return 1;
5426}
5427#endif
5428
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429#ifdef CONFIG_PREEMPT
5430/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005431 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005432 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433 * occur there and call schedule directly.
5434 */
5435asmlinkage void __sched preempt_schedule(void)
5436{
5437 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01005438
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 /*
5440 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005441 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07005443 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444 return;
5445
Andi Kleen3a5c3592007-10-15 17:00:14 +02005446 do {
5447 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02005448 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02005449 sub_preempt_count(PREEMPT_ACTIVE);
5450
5451 /*
5452 * Check again in case we missed a preemption opportunity
5453 * between schedule and now.
5454 */
5455 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08005456 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458EXPORT_SYMBOL(preempt_schedule);
5459
5460/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005461 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462 * off of irq context.
5463 * Note, that this is called and return with irqs disabled. This will
5464 * protect us against recursive calling from irq.
5465 */
5466asmlinkage void __sched preempt_schedule_irq(void)
5467{
5468 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01005469
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005470 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471 BUG_ON(ti->preempt_count || !irqs_disabled());
5472
Andi Kleen3a5c3592007-10-15 17:00:14 +02005473 do {
5474 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02005475 local_irq_enable();
5476 schedule();
5477 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02005478 sub_preempt_count(PREEMPT_ACTIVE);
5479
5480 /*
5481 * Check again in case we missed a preemption opportunity
5482 * between schedule and now.
5483 */
5484 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08005485 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486}
5487
5488#endif /* CONFIG_PREEMPT */
5489
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005490int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
5491 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005493 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495EXPORT_SYMBOL(default_wake_function);
5496
5497/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005498 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
5499 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500 * number) then we wake all the non-exclusive tasks and one exclusive task.
5501 *
5502 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005503 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504 * zero in this (rare) case, and we handle it by continuing to scan the queue.
5505 */
Johannes Weiner78ddb082009-04-14 16:53:05 +02005506static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
Johannes Weiner777c6c52009-02-04 15:12:14 -08005507 int nr_exclusive, int sync, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02005509 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02005511 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07005512 unsigned flags = curr->flags;
5513
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07005515 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516 break;
5517 }
5518}
5519
5520/**
5521 * __wake_up - wake up threads blocked on a waitqueue.
5522 * @q: the waitqueue
5523 * @mode: which threads
5524 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07005525 * @key: is directly passed to the wakeup function
David Howells50fa6102009-04-28 15:01:38 +01005526 *
5527 * It may be assumed that this function implies a write memory barrier before
5528 * changing the task state if and only if any tasks are woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08005530void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005531 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532{
5533 unsigned long flags;
5534
5535 spin_lock_irqsave(&q->lock, flags);
5536 __wake_up_common(q, mode, nr_exclusive, 0, key);
5537 spin_unlock_irqrestore(&q->lock, flags);
5538}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539EXPORT_SYMBOL(__wake_up);
5540
5541/*
5542 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
5543 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08005544void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545{
5546 __wake_up_common(q, mode, 1, 0, NULL);
5547}
5548
Davide Libenzi4ede8162009-03-31 15:24:20 -07005549void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key)
5550{
5551 __wake_up_common(q, mode, 1, 0, key);
5552}
5553
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554/**
Davide Libenzi4ede8162009-03-31 15:24:20 -07005555 * __wake_up_sync_key - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556 * @q: the waitqueue
5557 * @mode: which threads
5558 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Davide Libenzi4ede8162009-03-31 15:24:20 -07005559 * @key: opaque value to be passed to wakeup targets
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560 *
5561 * The sync wakeup differs that the waker knows that it will schedule
5562 * away soon, so while the target thread will be woken up, it will not
5563 * be migrated to another CPU - ie. the two threads are 'synchronized'
5564 * with each other. This can prevent needless bouncing between CPUs.
5565 *
5566 * On UP it can prevent extra preemption.
David Howells50fa6102009-04-28 15:01:38 +01005567 *
5568 * It may be assumed that this function implies a write memory barrier before
5569 * changing the task state if and only if any tasks are woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570 */
Davide Libenzi4ede8162009-03-31 15:24:20 -07005571void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode,
5572 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573{
5574 unsigned long flags;
5575 int sync = 1;
5576
5577 if (unlikely(!q))
5578 return;
5579
5580 if (unlikely(!nr_exclusive))
5581 sync = 0;
5582
5583 spin_lock_irqsave(&q->lock, flags);
Davide Libenzi4ede8162009-03-31 15:24:20 -07005584 __wake_up_common(q, mode, nr_exclusive, sync, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585 spin_unlock_irqrestore(&q->lock, flags);
5586}
Davide Libenzi4ede8162009-03-31 15:24:20 -07005587EXPORT_SYMBOL_GPL(__wake_up_sync_key);
5588
5589/*
5590 * __wake_up_sync - see __wake_up_sync_key()
5591 */
5592void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
5593{
5594 __wake_up_sync_key(q, mode, nr_exclusive, NULL);
5595}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
5597
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005598/**
5599 * complete: - signals a single thread waiting on this completion
5600 * @x: holds the state of this particular completion
5601 *
5602 * This will wake up a single thread waiting on this completion. Threads will be
5603 * awakened in the same order in which they were queued.
5604 *
5605 * See also complete_all(), wait_for_completion() and related routines.
David Howells50fa6102009-04-28 15:01:38 +01005606 *
5607 * It may be assumed that this function implies a write memory barrier before
5608 * changing the task state if and only if any tasks are woken up.
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005609 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02005610void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611{
5612 unsigned long flags;
5613
5614 spin_lock_irqsave(&x->wait.lock, flags);
5615 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05005616 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617 spin_unlock_irqrestore(&x->wait.lock, flags);
5618}
5619EXPORT_SYMBOL(complete);
5620
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005621/**
5622 * complete_all: - signals all threads waiting on this completion
5623 * @x: holds the state of this particular completion
5624 *
5625 * This will wake up all threads waiting on this particular completion event.
David Howells50fa6102009-04-28 15:01:38 +01005626 *
5627 * It may be assumed that this function implies a write memory barrier before
5628 * changing the task state if and only if any tasks are woken up.
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005629 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02005630void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631{
5632 unsigned long flags;
5633
5634 spin_lock_irqsave(&x->wait.lock, flags);
5635 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05005636 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637 spin_unlock_irqrestore(&x->wait.lock, flags);
5638}
5639EXPORT_SYMBOL(complete_all);
5640
Andi Kleen8cbbe862007-10-15 17:00:14 +02005641static inline long __sched
5642do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644 if (!x->done) {
5645 DECLARE_WAITQUEUE(wait, current);
5646
5647 wait.flags |= WQ_FLAG_EXCLUSIVE;
5648 __add_wait_queue_tail(&x->wait, &wait);
5649 do {
Oleg Nesterov94d3d822008-08-20 16:54:41 -07005650 if (signal_pending_state(state, current)) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04005651 timeout = -ERESTARTSYS;
5652 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02005653 }
5654 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02005656 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04005658 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04005660 if (!x->done)
5661 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662 }
5663 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04005664 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02005665}
5666
5667static long __sched
5668wait_for_common(struct completion *x, long timeout, int state)
5669{
5670 might_sleep();
5671
5672 spin_lock_irq(&x->wait.lock);
5673 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02005675 return timeout;
5676}
5677
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005678/**
5679 * wait_for_completion: - waits for completion of a task
5680 * @x: holds the state of this particular completion
5681 *
5682 * This waits to be signaled for completion of a specific task. It is NOT
5683 * interruptible and there is no timeout.
5684 *
5685 * See also similar routines (i.e. wait_for_completion_timeout()) with timeout
5686 * and interrupt capability. Also see complete().
5687 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02005688void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02005689{
5690 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691}
5692EXPORT_SYMBOL(wait_for_completion);
5693
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005694/**
5695 * wait_for_completion_timeout: - waits for completion of a task (w/timeout)
5696 * @x: holds the state of this particular completion
5697 * @timeout: timeout value in jiffies
5698 *
5699 * This waits for either a completion of a specific task to be signaled or for a
5700 * specified timeout to expire. The timeout is in jiffies. It is not
5701 * interruptible.
5702 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02005703unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704wait_for_completion_timeout(struct completion *x, unsigned long timeout)
5705{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005706 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707}
5708EXPORT_SYMBOL(wait_for_completion_timeout);
5709
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005710/**
5711 * wait_for_completion_interruptible: - waits for completion of a task (w/intr)
5712 * @x: holds the state of this particular completion
5713 *
5714 * This waits for completion of a specific task to be signaled. It is
5715 * interruptible.
5716 */
Andi Kleen8cbbe862007-10-15 17:00:14 +02005717int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718{
Andi Kleen51e97992007-10-18 21:32:55 +02005719 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
5720 if (t == -ERESTARTSYS)
5721 return t;
5722 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723}
5724EXPORT_SYMBOL(wait_for_completion_interruptible);
5725
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005726/**
5727 * wait_for_completion_interruptible_timeout: - waits for completion (w/(to,intr))
5728 * @x: holds the state of this particular completion
5729 * @timeout: timeout value in jiffies
5730 *
5731 * This waits for either a completion of a specific task to be signaled or for a
5732 * specified timeout to expire. It is interruptible. The timeout is in jiffies.
5733 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02005734unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735wait_for_completion_interruptible_timeout(struct completion *x,
5736 unsigned long timeout)
5737{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005738 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739}
5740EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
5741
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005742/**
5743 * wait_for_completion_killable: - waits for completion of a task (killable)
5744 * @x: holds the state of this particular completion
5745 *
5746 * This waits to be signaled for completion of a specific task. It can be
5747 * interrupted by a kill signal.
5748 */
Matthew Wilcox009e5772007-12-06 12:29:54 -05005749int __sched wait_for_completion_killable(struct completion *x)
5750{
5751 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
5752 if (t == -ERESTARTSYS)
5753 return t;
5754 return 0;
5755}
5756EXPORT_SYMBOL(wait_for_completion_killable);
5757
Dave Chinnerbe4de352008-08-15 00:40:44 -07005758/**
5759 * try_wait_for_completion - try to decrement a completion without blocking
5760 * @x: completion structure
5761 *
5762 * Returns: 0 if a decrement cannot be done without blocking
5763 * 1 if a decrement succeeded.
5764 *
5765 * If a completion is being used as a counting completion,
5766 * attempt to decrement the counter without blocking. This
5767 * enables us to avoid waiting if the resource the completion
5768 * is protecting is not available.
5769 */
5770bool try_wait_for_completion(struct completion *x)
5771{
5772 int ret = 1;
5773
5774 spin_lock_irq(&x->wait.lock);
5775 if (!x->done)
5776 ret = 0;
5777 else
5778 x->done--;
5779 spin_unlock_irq(&x->wait.lock);
5780 return ret;
5781}
5782EXPORT_SYMBOL(try_wait_for_completion);
5783
5784/**
5785 * completion_done - Test to see if a completion has any waiters
5786 * @x: completion structure
5787 *
5788 * Returns: 0 if there are waiters (wait_for_completion() in progress)
5789 * 1 if there are no waiters.
5790 *
5791 */
5792bool completion_done(struct completion *x)
5793{
5794 int ret = 1;
5795
5796 spin_lock_irq(&x->wait.lock);
5797 if (!x->done)
5798 ret = 0;
5799 spin_unlock_irq(&x->wait.lock);
5800 return ret;
5801}
5802EXPORT_SYMBOL(completion_done);
5803
Andi Kleen8cbbe862007-10-15 17:00:14 +02005804static long __sched
5805sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02005806{
5807 unsigned long flags;
5808 wait_queue_t wait;
5809
5810 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811
Andi Kleen8cbbe862007-10-15 17:00:14 +02005812 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813
Andi Kleen8cbbe862007-10-15 17:00:14 +02005814 spin_lock_irqsave(&q->lock, flags);
5815 __add_wait_queue(q, &wait);
5816 spin_unlock(&q->lock);
5817 timeout = schedule_timeout(timeout);
5818 spin_lock_irq(&q->lock);
5819 __remove_wait_queue(q, &wait);
5820 spin_unlock_irqrestore(&q->lock, flags);
5821
5822 return timeout;
5823}
5824
5825void __sched interruptible_sleep_on(wait_queue_head_t *q)
5826{
5827 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829EXPORT_SYMBOL(interruptible_sleep_on);
5830
Ingo Molnar0fec1712007-07-09 18:52:01 +02005831long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005832interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005834 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836EXPORT_SYMBOL(interruptible_sleep_on_timeout);
5837
Ingo Molnar0fec1712007-07-09 18:52:01 +02005838void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005840 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842EXPORT_SYMBOL(sleep_on);
5843
Ingo Molnar0fec1712007-07-09 18:52:01 +02005844long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005846 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848EXPORT_SYMBOL(sleep_on_timeout);
5849
Ingo Molnarb29739f2006-06-27 02:54:51 -07005850#ifdef CONFIG_RT_MUTEXES
5851
5852/*
5853 * rt_mutex_setprio - set the current priority of a task
5854 * @p: task
5855 * @prio: prio value (kernel-internal form)
5856 *
5857 * This function changes the 'effective' priority of a task. It does
5858 * not touch ->normal_prio like __setscheduler().
5859 *
5860 * Used by the rt_mutex code to implement priority inheritance logic.
5861 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005862void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07005863{
5864 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005865 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005866 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01005867 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005868
5869 BUG_ON(prio < 0 || prio > MAX_PRIO);
5870
5871 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005872 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005873
Andrew Mortond5f9f942007-05-08 20:27:06 -07005874 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005875 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005876 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005877 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02005878 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005879 if (running)
5880 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02005881
5882 if (rt_prio(prio))
5883 p->sched_class = &rt_sched_class;
5884 else
5885 p->sched_class = &fair_sched_class;
5886
Ingo Molnarb29739f2006-06-27 02:54:51 -07005887 p->prio = prio;
5888
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005889 if (running)
5890 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005891 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02005892 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005893
5894 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005895 }
5896 task_rq_unlock(rq, &flags);
5897}
5898
5899#endif
5900
Ingo Molnar36c8b582006-07-03 00:25:41 -07005901void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902{
Ingo Molnardd41f592007-07-09 18:51:59 +02005903 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005905 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906
5907 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
5908 return;
5909 /*
5910 * We have to be careful, if called from sys_setpriority(),
5911 * the task might be in the middle of scheduling on another CPU.
5912 */
5913 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005914 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915 /*
5916 * The RT priorities are set via sched_setscheduler(), but we still
5917 * allow the 'normal' nice value to be set - but as expected
5918 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02005919 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920 */
Ingo Molnare05606d2007-07-09 18:51:59 +02005921 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922 p->static_prio = NICE_TO_PRIO(nice);
5923 goto out_unlock;
5924 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005925 on_rq = p->se.on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02005926 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02005927 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07005930 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005931 old_prio = p->prio;
5932 p->prio = effective_prio(p);
5933 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934
Ingo Molnardd41f592007-07-09 18:51:59 +02005935 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02005936 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07005938 * If the task increased its priority or is running and
5939 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07005941 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942 resched_task(rq->curr);
5943 }
5944out_unlock:
5945 task_rq_unlock(rq, &flags);
5946}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947EXPORT_SYMBOL(set_user_nice);
5948
Matt Mackalle43379f2005-05-01 08:59:00 -07005949/*
5950 * can_nice - check if a task can reduce its nice value
5951 * @p: task
5952 * @nice: nice value
5953 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005954int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07005955{
Matt Mackall024f4742005-08-18 11:24:19 -07005956 /* convert nice value [19,-20] to rlimit style value [1,40] */
5957 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005958
Matt Mackalle43379f2005-05-01 08:59:00 -07005959 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
5960 capable(CAP_SYS_NICE));
5961}
5962
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963#ifdef __ARCH_WANT_SYS_NICE
5964
5965/*
5966 * sys_nice - change the priority of the current process.
5967 * @increment: priority increment
5968 *
5969 * sys_setpriority is a more generic, but much slower function that
5970 * does similar things.
5971 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005972SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005974 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975
5976 /*
5977 * Setpriority might change our priority at the same moment.
5978 * We don't have to worry. Conceptually one call occurs first
5979 * and we have a single winner.
5980 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005981 if (increment < -40)
5982 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983 if (increment > 40)
5984 increment = 40;
5985
Américo Wang2b8f8362009-02-16 18:54:21 +08005986 nice = TASK_NICE(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987 if (nice < -20)
5988 nice = -20;
5989 if (nice > 19)
5990 nice = 19;
5991
Matt Mackalle43379f2005-05-01 08:59:00 -07005992 if (increment < 0 && !can_nice(current, nice))
5993 return -EPERM;
5994
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995 retval = security_task_setnice(current, nice);
5996 if (retval)
5997 return retval;
5998
5999 set_user_nice(current, nice);
6000 return 0;
6001}
6002
6003#endif
6004
6005/**
6006 * task_prio - return the priority value of a given task.
6007 * @p: the task in question.
6008 *
6009 * This is the priority value as seen by users in /proc.
6010 * RT tasks are offset by -200. Normal tasks are centered
6011 * around 0, value goes from -16 to +15.
6012 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006013int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014{
6015 return p->prio - MAX_RT_PRIO;
6016}
6017
6018/**
6019 * task_nice - return the nice value of a given task.
6020 * @p: the task in question.
6021 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006022int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023{
6024 return TASK_NICE(p);
6025}
Pavel Roskin150d8be2008-03-05 16:56:37 -05006026EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027
6028/**
6029 * idle_cpu - is a given cpu idle currently?
6030 * @cpu: the processor in question.
6031 */
6032int idle_cpu(int cpu)
6033{
6034 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
6035}
6036
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037/**
6038 * idle_task - return the idle task for a given cpu.
6039 * @cpu: the processor in question.
6040 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006041struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042{
6043 return cpu_rq(cpu)->idle;
6044}
6045
6046/**
6047 * find_process_by_pid - find a process with a matching PID value.
6048 * @pid: the pid in question.
6049 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02006050static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07006052 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053}
6054
6055/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02006056static void
6057__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058{
Ingo Molnardd41f592007-07-09 18:51:59 +02006059 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006060
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02006062 switch (p->policy) {
6063 case SCHED_NORMAL:
6064 case SCHED_BATCH:
6065 case SCHED_IDLE:
6066 p->sched_class = &fair_sched_class;
6067 break;
6068 case SCHED_FIFO:
6069 case SCHED_RR:
6070 p->sched_class = &rt_sched_class;
6071 break;
6072 }
6073
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07006075 p->normal_prio = normal_prio(p);
6076 /* we are holding p->pi_lock already */
6077 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07006078 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079}
6080
David Howellsc69e8d92008-11-14 10:39:19 +11006081/*
6082 * check the target process has a UID that matches the current process's
6083 */
6084static bool check_same_owner(struct task_struct *p)
6085{
6086 const struct cred *cred = current_cred(), *pcred;
6087 bool match;
6088
6089 rcu_read_lock();
6090 pcred = __task_cred(p);
6091 match = (cred->euid == pcred->euid ||
6092 cred->euid == pcred->uid);
6093 rcu_read_unlock();
6094 return match;
6095}
6096
Rusty Russell961ccdd2008-06-23 13:55:38 +10006097static int __sched_setscheduler(struct task_struct *p, int policy,
6098 struct sched_param *param, bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02006100 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01006102 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006103 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104
Steven Rostedt66e53932006-06-27 02:54:44 -07006105 /* may grab non-irq protected spin_locks */
6106 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107recheck:
6108 /* double check policy once rq lock held */
6109 if (policy < 0)
6110 policy = oldpolicy = p->policy;
6111 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02006112 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
6113 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08006114 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115 /*
6116 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02006117 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
6118 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119 */
6120 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006121 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04006122 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02006124 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125 return -EINVAL;
6126
Olivier Croquette37e4ab32005-06-25 14:57:32 -07006127 /*
6128 * Allow unprivileged RT tasks to decrease priority:
6129 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10006130 if (user && !capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02006131 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07006132 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07006133
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07006134 if (!lock_task_sighand(p, &flags))
6135 return -ESRCH;
6136 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
6137 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07006138
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07006139 /* can't set/change the rt policy */
6140 if (policy != p->policy && !rlim_rtprio)
6141 return -EPERM;
6142
6143 /* can't increase priority */
6144 if (param->sched_priority > p->rt_priority &&
6145 param->sched_priority > rlim_rtprio)
6146 return -EPERM;
6147 }
Ingo Molnardd41f592007-07-09 18:51:59 +02006148 /*
6149 * Like positive nice levels, dont allow tasks to
6150 * move out of SCHED_IDLE either:
6151 */
6152 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
6153 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07006154
Olivier Croquette37e4ab32005-06-25 14:57:32 -07006155 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11006156 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07006157 return -EPERM;
6158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006159
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07006160 if (user) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01006161#ifdef CONFIG_RT_GROUP_SCHED
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07006162 /*
6163 * Do not allow realtime tasks into groups that have no runtime
6164 * assigned.
6165 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02006166 if (rt_bandwidth_enabled() && rt_policy(policy) &&
6167 task_group(p)->rt_bandwidth.rt_runtime == 0)
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07006168 return -EPERM;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01006169#endif
6170
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07006171 retval = security_task_setscheduler(p, policy, param);
6172 if (retval)
6173 return retval;
6174 }
6175
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07006177 * make sure no PI-waiters arrive (or leave) while we are
6178 * changing the priority of the task:
6179 */
6180 spin_lock_irqsave(&p->pi_lock, flags);
6181 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182 * To be able to change p->policy safely, the apropriate
6183 * runqueue lock must be held.
6184 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07006185 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186 /* recheck policy now with rq lock held */
6187 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
6188 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07006189 __task_rq_unlock(rq);
6190 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191 goto recheck;
6192 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02006193 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02006194 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01006195 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07006196 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006197 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07006198 if (running)
6199 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02006200
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02006202 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02006203
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07006204 if (running)
6205 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02006206 if (on_rq) {
6207 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01006208
6209 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07006211 __task_rq_unlock(rq);
6212 spin_unlock_irqrestore(&p->pi_lock, flags);
6213
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07006214 rt_mutex_adjust_pi(p);
6215
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216 return 0;
6217}
Rusty Russell961ccdd2008-06-23 13:55:38 +10006218
6219/**
6220 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
6221 * @p: the task in question.
6222 * @policy: new policy.
6223 * @param: structure containing the new RT priority.
6224 *
6225 * NOTE that the task may be already dead.
6226 */
6227int sched_setscheduler(struct task_struct *p, int policy,
6228 struct sched_param *param)
6229{
6230 return __sched_setscheduler(p, policy, param, true);
6231}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232EXPORT_SYMBOL_GPL(sched_setscheduler);
6233
Rusty Russell961ccdd2008-06-23 13:55:38 +10006234/**
6235 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
6236 * @p: the task in question.
6237 * @policy: new policy.
6238 * @param: structure containing the new RT priority.
6239 *
6240 * Just like sched_setscheduler, only don't bother checking if the
6241 * current context has permission. For example, this is needed in
6242 * stop_machine(): we create temporary high priority worker threads,
6243 * but our caller might not have that capability.
6244 */
6245int sched_setscheduler_nocheck(struct task_struct *p, int policy,
6246 struct sched_param *param)
6247{
6248 return __sched_setscheduler(p, policy, param, false);
6249}
6250
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006251static int
6252do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254 struct sched_param lparam;
6255 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07006256 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257
6258 if (!param || pid < 0)
6259 return -EINVAL;
6260 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
6261 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07006262
6263 rcu_read_lock();
6264 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07006266 if (p != NULL)
6267 retval = sched_setscheduler(p, policy, &lparam);
6268 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07006269
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270 return retval;
6271}
6272
6273/**
6274 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
6275 * @pid: the pid in question.
6276 * @policy: new policy.
6277 * @param: structure containing the new RT priority.
6278 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006279SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
6280 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281{
Jason Baronc21761f2006-01-18 17:43:03 -08006282 /* negative values for policy are not valid */
6283 if (policy < 0)
6284 return -EINVAL;
6285
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286 return do_sched_setscheduler(pid, policy, param);
6287}
6288
6289/**
6290 * sys_sched_setparam - set/change the RT priority of a thread
6291 * @pid: the pid in question.
6292 * @param: structure containing the new RT priority.
6293 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006294SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295{
6296 return do_sched_setscheduler(pid, -1, param);
6297}
6298
6299/**
6300 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
6301 * @pid: the pid in question.
6302 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006303SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304{
Ingo Molnar36c8b582006-07-03 00:25:41 -07006305 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006306 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307
6308 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006309 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310
6311 retval = -ESRCH;
6312 read_lock(&tasklist_lock);
6313 p = find_process_by_pid(pid);
6314 if (p) {
6315 retval = security_task_getscheduler(p);
6316 if (!retval)
6317 retval = p->policy;
6318 }
6319 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320 return retval;
6321}
6322
6323/**
6324 * sys_sched_getscheduler - get the RT priority of a thread
6325 * @pid: the pid in question.
6326 * @param: structure containing the RT priority.
6327 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006328SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329{
6330 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07006331 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006332 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333
6334 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006335 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336
6337 read_lock(&tasklist_lock);
6338 p = find_process_by_pid(pid);
6339 retval = -ESRCH;
6340 if (!p)
6341 goto out_unlock;
6342
6343 retval = security_task_getscheduler(p);
6344 if (retval)
6345 goto out_unlock;
6346
6347 lp.sched_priority = p->rt_priority;
6348 read_unlock(&tasklist_lock);
6349
6350 /*
6351 * This one might sleep, we cannot do it with a spinlock held ...
6352 */
6353 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
6354
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355 return retval;
6356
6357out_unlock:
6358 read_unlock(&tasklist_lock);
6359 return retval;
6360}
6361
Rusty Russell96f874e2008-11-25 02:35:14 +10306362long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306364 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07006365 struct task_struct *p;
6366 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006368 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369 read_lock(&tasklist_lock);
6370
6371 p = find_process_by_pid(pid);
6372 if (!p) {
6373 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006374 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375 return -ESRCH;
6376 }
6377
6378 /*
6379 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006380 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381 * usage count and then drop tasklist_lock.
6382 */
6383 get_task_struct(p);
6384 read_unlock(&tasklist_lock);
6385
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306386 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
6387 retval = -ENOMEM;
6388 goto out_put_task;
6389 }
6390 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
6391 retval = -ENOMEM;
6392 goto out_free_cpus_allowed;
6393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394 retval = -EPERM;
David Howellsc69e8d92008-11-14 10:39:19 +11006395 if (!check_same_owner(p) && !capable(CAP_SYS_NICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396 goto out_unlock;
6397
David Quigleye7834f82006-06-23 02:03:59 -07006398 retval = security_task_setscheduler(p, 0, NULL);
6399 if (retval)
6400 goto out_unlock;
6401
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306402 cpuset_cpus_allowed(p, cpus_allowed);
6403 cpumask_and(new_mask, in_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07006404 again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306405 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406
Paul Menage8707d8b2007-10-18 23:40:22 -07006407 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306408 cpuset_cpus_allowed(p, cpus_allowed);
6409 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07006410 /*
6411 * We must have raced with a concurrent cpuset
6412 * update. Just reset the cpus_allowed to the
6413 * cpuset's cpus_allowed
6414 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306415 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07006416 goto again;
6417 }
6418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306420 free_cpumask_var(new_mask);
6421out_free_cpus_allowed:
6422 free_cpumask_var(cpus_allowed);
6423out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006425 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426 return retval;
6427}
6428
6429static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e2008-11-25 02:35:14 +10306430 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431{
Rusty Russell96f874e2008-11-25 02:35:14 +10306432 if (len < cpumask_size())
6433 cpumask_clear(new_mask);
6434 else if (len > cpumask_size())
6435 len = cpumask_size();
6436
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
6438}
6439
6440/**
6441 * sys_sched_setaffinity - set the cpu affinity of a process
6442 * @pid: pid of the process
6443 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
6444 * @user_mask_ptr: user-space pointer to the new cpu mask
6445 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006446SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
6447 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306449 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450 int retval;
6451
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306452 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
6453 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006454
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306455 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
6456 if (retval == 0)
6457 retval = sched_setaffinity(pid, new_mask);
6458 free_cpumask_var(new_mask);
6459 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460}
6461
Rusty Russell96f874e2008-11-25 02:35:14 +10306462long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463{
Ingo Molnar36c8b582006-07-03 00:25:41 -07006464 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006467 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468 read_lock(&tasklist_lock);
6469
6470 retval = -ESRCH;
6471 p = find_process_by_pid(pid);
6472 if (!p)
6473 goto out_unlock;
6474
David Quigleye7834f82006-06-23 02:03:59 -07006475 retval = security_task_getscheduler(p);
6476 if (retval)
6477 goto out_unlock;
6478
Rusty Russell96f874e2008-11-25 02:35:14 +10306479 cpumask_and(mask, &p->cpus_allowed, cpu_online_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480
6481out_unlock:
6482 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006483 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484
Ulrich Drepper9531b622007-08-09 11:16:46 +02006485 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486}
6487
6488/**
6489 * sys_sched_getaffinity - get the cpu affinity of a process
6490 * @pid: pid of the process
6491 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
6492 * @user_mask_ptr: user-space pointer to hold the current cpu mask
6493 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006494SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
6495 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496{
6497 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10306498 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499
Rusty Russellf17c8602008-11-25 02:35:11 +10306500 if (len < cpumask_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501 return -EINVAL;
6502
Rusty Russellf17c8602008-11-25 02:35:11 +10306503 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
6504 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505
Rusty Russellf17c8602008-11-25 02:35:11 +10306506 ret = sched_getaffinity(pid, mask);
6507 if (ret == 0) {
6508 if (copy_to_user(user_mask_ptr, mask, cpumask_size()))
6509 ret = -EFAULT;
6510 else
6511 ret = cpumask_size();
6512 }
6513 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514
Rusty Russellf17c8602008-11-25 02:35:11 +10306515 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516}
6517
6518/**
6519 * sys_sched_yield - yield the current processor to other threads.
6520 *
Ingo Molnardd41f592007-07-09 18:51:59 +02006521 * This function yields the current CPU to other tasks. If there are no
6522 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006524SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006526 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527
Ingo Molnar2d723762007-10-15 17:00:12 +02006528 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02006529 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530
6531 /*
6532 * Since we are going to call schedule() anyway, there's
6533 * no need to preempt or enable interrupts:
6534 */
6535 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07006536 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537 _raw_spin_unlock(&rq->lock);
6538 preempt_enable_no_resched();
6539
6540 schedule();
6541
6542 return 0;
6543}
6544
Andrew Mortone7b38402006-06-30 01:56:00 -07006545static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07006547#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
6548 __might_sleep(__FILE__, __LINE__);
6549#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07006550 /*
6551 * The BKS might be reacquired before we have dropped
6552 * PREEMPT_ACTIVE, which could trigger a second
6553 * cond_resched() call.
6554 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006555 do {
6556 add_preempt_count(PREEMPT_ACTIVE);
6557 schedule();
6558 sub_preempt_count(PREEMPT_ACTIVE);
6559 } while (need_resched());
6560}
6561
Herbert Xu02b67cc2008-01-25 21:08:28 +01006562int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006563{
Ingo Molnar94142322006-12-29 16:48:13 -08006564 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
6565 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566 __cond_resched();
6567 return 1;
6568 }
6569 return 0;
6570}
Herbert Xu02b67cc2008-01-25 21:08:28 +01006571EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572
6573/*
6574 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
6575 * call schedule, and on return reacquire the lock.
6576 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006577 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578 * operations here to prevent schedule() from being called twice (once via
6579 * spin_unlock(), once by hand).
6580 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006581int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006582{
Nick Piggin95c354f2008-01-30 13:31:20 +01006583 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07006584 int ret = 0;
6585
Nick Piggin95c354f2008-01-30 13:31:20 +01006586 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01006588 if (resched && need_resched())
6589 __cond_resched();
6590 else
6591 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07006592 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594 }
Jan Kara6df3cec2005-06-13 15:52:32 -07006595 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597EXPORT_SYMBOL(cond_resched_lock);
6598
6599int __sched cond_resched_softirq(void)
6600{
6601 BUG_ON(!in_softirq());
6602
Ingo Molnar94142322006-12-29 16:48:13 -08006603 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d82562007-05-23 13:58:18 -07006604 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605 __cond_resched();
6606 local_bh_disable();
6607 return 1;
6608 }
6609 return 0;
6610}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611EXPORT_SYMBOL(cond_resched_softirq);
6612
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613/**
6614 * yield - yield the current processor to other threads.
6615 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08006616 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617 * thread runnable and calls sys_sched_yield().
6618 */
6619void __sched yield(void)
6620{
6621 set_current_state(TASK_RUNNING);
6622 sys_sched_yield();
6623}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624EXPORT_SYMBOL(yield);
6625
6626/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006627 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628 * that process accounting knows that this is a task in IO wait state.
6629 *
6630 * But don't do that if it is a deliberate, throttling IO wait (this task
6631 * has set its backing_dev_info: the queue against which it should throttle)
6632 */
6633void __sched io_schedule(void)
6634{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006635 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636
Shailabh Nagar0ff92242006-07-14 00:24:37 -07006637 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638 atomic_inc(&rq->nr_iowait);
6639 schedule();
6640 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07006641 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643EXPORT_SYMBOL(io_schedule);
6644
6645long __sched io_schedule_timeout(long timeout)
6646{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006647 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648 long ret;
6649
Shailabh Nagar0ff92242006-07-14 00:24:37 -07006650 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006651 atomic_inc(&rq->nr_iowait);
6652 ret = schedule_timeout(timeout);
6653 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07006654 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655 return ret;
6656}
6657
6658/**
6659 * sys_sched_get_priority_max - return maximum RT priority.
6660 * @policy: scheduling class.
6661 *
6662 * this syscall returns the maximum rt_priority that can be used
6663 * by a given scheduling class.
6664 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006665SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666{
6667 int ret = -EINVAL;
6668
6669 switch (policy) {
6670 case SCHED_FIFO:
6671 case SCHED_RR:
6672 ret = MAX_USER_RT_PRIO-1;
6673 break;
6674 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08006675 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02006676 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677 ret = 0;
6678 break;
6679 }
6680 return ret;
6681}
6682
6683/**
6684 * sys_sched_get_priority_min - return minimum RT priority.
6685 * @policy: scheduling class.
6686 *
6687 * this syscall returns the minimum rt_priority that can be used
6688 * by a given scheduling class.
6689 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006690SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691{
6692 int ret = -EINVAL;
6693
6694 switch (policy) {
6695 case SCHED_FIFO:
6696 case SCHED_RR:
6697 ret = 1;
6698 break;
6699 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08006700 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02006701 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006702 ret = 0;
6703 }
6704 return ret;
6705}
6706
6707/**
6708 * sys_sched_rr_get_interval - return the default timeslice of a process.
6709 * @pid: pid of the process.
6710 * @interval: userspace pointer to the timeslice value.
6711 *
6712 * this syscall writes the default timeslice value of a given process
6713 * into the user-space timespec buffer. A value of '0' means infinity.
6714 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01006715SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01006716 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717{
Ingo Molnar36c8b582006-07-03 00:25:41 -07006718 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006719 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006720 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722
6723 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006724 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725
6726 retval = -ESRCH;
6727 read_lock(&tasklist_lock);
6728 p = find_process_by_pid(pid);
6729 if (!p)
6730 goto out_unlock;
6731
6732 retval = security_task_getscheduler(p);
6733 if (retval)
6734 goto out_unlock;
6735
Ingo Molnar77034932007-12-04 17:04:39 +01006736 /*
6737 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
6738 * tasks that are on an otherwise idle runqueue:
6739 */
6740 time_slice = 0;
6741 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006742 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08006743 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006744 struct sched_entity *se = &p->se;
6745 unsigned long flags;
6746 struct rq *rq;
6747
6748 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01006749 if (rq->cfs.load.weight)
6750 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006751 task_rq_unlock(rq, &flags);
6752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006753 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006754 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006756 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006757
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758out_unlock:
6759 read_unlock(&tasklist_lock);
6760 return retval;
6761}
6762
Steven Rostedt7c731e02008-05-12 21:20:41 +02006763static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07006764
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01006765void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07006768 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02006771 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07006772 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02006773#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02006775 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02006777 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778#else
6779 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02006780 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006781 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02006782 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006783#endif
6784#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05006785 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006786#endif
David Rientjesaa47b7e2009-05-04 01:38:05 -07006787 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
6788 task_pid_nr(p), task_pid_nr(p->real_parent),
6789 (unsigned long)task_thread_info(p)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01006791 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792}
6793
Ingo Molnare59e2ae2006-12-06 20:35:59 -08006794void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795{
Ingo Molnar36c8b582006-07-03 00:25:41 -07006796 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797
Ingo Molnar4bd77322007-07-11 21:21:47 +02006798#if BITS_PER_LONG == 32
6799 printk(KERN_INFO
6800 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006801#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02006802 printk(KERN_INFO
6803 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804#endif
6805 read_lock(&tasklist_lock);
6806 do_each_thread(g, p) {
6807 /*
6808 * reset the NMI-timeout, listing all files on a slow
6809 * console might take alot of time:
6810 */
6811 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07006812 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01006813 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814 } while_each_thread(g, p);
6815
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07006816 touch_all_softlockup_watchdogs();
6817
Ingo Molnardd41f592007-07-09 18:51:59 +02006818#ifdef CONFIG_SCHED_DEBUG
6819 sysrq_sched_debug_show();
6820#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08006822 /*
6823 * Only show locks if all tasks are dumped:
6824 */
6825 if (state_filter == -1)
6826 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827}
6828
Ingo Molnar1df21052007-07-09 18:51:58 +02006829void __cpuinit init_idle_bootup_task(struct task_struct *idle)
6830{
Ingo Molnardd41f592007-07-09 18:51:59 +02006831 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02006832}
6833
Ingo Molnarf340c0d2005-06-28 16:40:42 +02006834/**
6835 * init_idle - set up an idle thread for a given CPU
6836 * @idle: task in question
6837 * @cpu: cpu the idle task belongs to
6838 *
6839 * NOTE: this function does not set the idle thread's NEED_RESCHED
6840 * flag, to make booting more robust.
6841 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07006842void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006844 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845 unsigned long flags;
6846
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01006847 spin_lock_irqsave(&rq->lock, flags);
6848
Ingo Molnardd41f592007-07-09 18:51:59 +02006849 __sched_fork(idle);
6850 idle->se.exec_start = sched_clock();
6851
Ingo Molnarb29739f2006-06-27 02:54:51 -07006852 idle->prio = idle->normal_prio = MAX_PRIO;
Rusty Russell96f874e2008-11-25 02:35:14 +10306853 cpumask_copy(&idle->cpus_allowed, cpumask_of(cpu));
Ingo Molnardd41f592007-07-09 18:51:59 +02006854 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006855
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07006857#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
6858 idle->oncpu = 1;
6859#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860 spin_unlock_irqrestore(&rq->lock, flags);
6861
6862 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07006863#if defined(CONFIG_PREEMPT)
6864 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
6865#else
Al Viroa1261f52005-11-13 16:06:55 -08006866 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07006867#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02006868 /*
6869 * The idle tasks have their own, simple scheduling class:
6870 */
6871 idle->sched_class = &idle_sched_class;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006872 ftrace_graph_init_task(idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873}
6874
6875/*
6876 * In a system that switches off the HZ timer nohz_cpu_mask
6877 * indicates which cpus entered this state. This is used
6878 * in the rcu update to wait only for active cpus. For system
6879 * which do not switch off the HZ timer nohz_cpu_mask should
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306880 * always be CPU_BITS_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881 */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306882cpumask_var_t nohz_cpu_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883
Ingo Molnar19978ca2007-11-09 22:39:38 +01006884/*
6885 * Increase the granularity value when there are more CPUs,
6886 * because with more CPUs the 'effective latency' as visible
6887 * to users decreases. But the relationship is not linear,
6888 * so pick a second-best guess by going with the log2 of the
6889 * number of CPUs.
6890 *
6891 * This idea comes from the SD scheduler of Con Kolivas:
6892 */
6893static inline void sched_init_granularity(void)
6894{
6895 unsigned int factor = 1 + ilog2(num_online_cpus());
6896 const unsigned long limit = 200000000;
6897
6898 sysctl_sched_min_granularity *= factor;
6899 if (sysctl_sched_min_granularity > limit)
6900 sysctl_sched_min_granularity = limit;
6901
6902 sysctl_sched_latency *= factor;
6903 if (sysctl_sched_latency > limit)
6904 sysctl_sched_latency = limit;
6905
6906 sysctl_sched_wakeup_granularity *= factor;
Peter Zijlstra55cd5342008-08-04 08:54:26 +02006907
6908 sysctl_sched_shares_ratelimit *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01006909}
6910
Linus Torvalds1da177e2005-04-16 15:20:36 -07006911#ifdef CONFIG_SMP
6912/*
6913 * This is how migration works:
6914 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07006915 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916 * runqueue and wake up that CPU's migration thread.
6917 * 2) we down() the locked semaphore => thread blocks.
6918 * 3) migration thread wakes up (implicitly it forces the migrated
6919 * thread off the CPU)
6920 * 4) it gets the migration request and checks whether the migrated
6921 * task is still in the wrong runqueue.
6922 * 5) if it's in the wrong runqueue then the migration thread removes
6923 * it and puts it into the right queue.
6924 * 6) migration thread up()s the semaphore.
6925 * 7) we wake up and the migration is done.
6926 */
6927
6928/*
6929 * Change a given task's CPU affinity. Migrate the thread to a
6930 * proper CPU and schedule it away if the CPU it's executing on
6931 * is removed from the allowed bitmask.
6932 *
6933 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006934 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07006935 * call is not atomic; no spinlocks may be held.
6936 */
Rusty Russell96f874e2008-11-25 02:35:14 +10306937int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006939 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006941 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006942 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943
6944 rq = task_rq_lock(p, &flags);
Rusty Russell96f874e2008-11-25 02:35:14 +10306945 if (!cpumask_intersects(new_mask, cpu_online_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946 ret = -EINVAL;
6947 goto out;
6948 }
6949
David Rientjes9985b0b2008-06-05 12:57:11 -07006950 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current &&
Rusty Russell96f874e2008-11-25 02:35:14 +10306951 !cpumask_equal(&p->cpus_allowed, new_mask))) {
David Rientjes9985b0b2008-06-05 12:57:11 -07006952 ret = -EINVAL;
6953 goto out;
6954 }
6955
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006956 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006957 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006958 else {
Rusty Russell96f874e2008-11-25 02:35:14 +10306959 cpumask_copy(&p->cpus_allowed, new_mask);
6960 p->rt.nr_cpus_allowed = cpumask_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006961 }
6962
Linus Torvalds1da177e2005-04-16 15:20:36 -07006963 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e2008-11-25 02:35:14 +10306964 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006965 goto out;
6966
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10306967 if (migrate_task(p, cpumask_any_and(cpu_online_mask, new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006968 /* Need help from migration thread: drop lock and wait. */
6969 task_rq_unlock(rq, &flags);
6970 wake_up_process(rq->migration_thread);
6971 wait_for_completion(&req.done);
6972 tlb_migrate_finish(p->mm);
6973 return 0;
6974 }
6975out:
6976 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006977
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978 return ret;
6979}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006980EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981
6982/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006983 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07006984 * this because either it can't run here any more (set_cpus_allowed()
6985 * away from this CPU, or CPU going down), or because we're
6986 * attempting to rebalance this task on exec (sched_exec).
6987 *
6988 * So we race with normal scheduler movements, but that's OK, as long
6989 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07006990 *
6991 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006992 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07006993static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006995 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02006996 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997
Max Krasnyanskye761b772008-07-15 04:43:49 -07006998 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07006999 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000
7001 rq_src = cpu_rq(src_cpu);
7002 rq_dest = cpu_rq(dest_cpu);
7003
7004 double_rq_lock(rq_src, rq_dest);
7005 /* Already moved. */
7006 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07007007 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008 /* Affinity changed (again). */
Rusty Russell96f874e2008-11-25 02:35:14 +10307009 if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07007010 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011
Ingo Molnardd41f592007-07-09 18:51:59 +02007012 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02007013 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02007014 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02007015
Linus Torvalds1da177e2005-04-16 15:20:36 -07007016 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02007017 if (on_rq) {
7018 activate_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02007019 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07007021done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07007022 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07007023fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07007025 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007026}
7027
7028/*
7029 * migration_thread - this is a highprio system thread that performs
7030 * thread migration by bumping thread off CPU then 'pushing' onto
7031 * another runqueue.
7032 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07007033static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007036 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037
7038 rq = cpu_rq(cpu);
7039 BUG_ON(rq->migration_thread != current);
7040
7041 set_current_state(TASK_INTERRUPTIBLE);
7042 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007043 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007045
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046 spin_lock_irq(&rq->lock);
7047
7048 if (cpu_is_offline(cpu)) {
7049 spin_unlock_irq(&rq->lock);
Oleg Nesterov371cbb32009-06-17 16:27:45 -07007050 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051 }
7052
7053 if (rq->active_balance) {
7054 active_load_balance(rq, cpu);
7055 rq->active_balance = 0;
7056 }
7057
7058 head = &rq->migration_queue;
7059
7060 if (list_empty(head)) {
7061 spin_unlock_irq(&rq->lock);
7062 schedule();
7063 set_current_state(TASK_INTERRUPTIBLE);
7064 continue;
7065 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07007066 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067 list_del_init(head->next);
7068
Nick Piggin674311d2005-06-25 14:57:27 -07007069 spin_unlock(&rq->lock);
7070 __migrate_task(req->task, cpu, req->dest_cpu);
7071 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072
7073 complete(&req->done);
7074 }
7075 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007076
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077 return 0;
7078}
7079
7080#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07007081
7082static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
7083{
7084 int ret;
7085
7086 local_irq_disable();
7087 ret = __migrate_task(p, src_cpu, dest_cpu);
7088 local_irq_enable();
7089 return ret;
7090}
7091
Kirill Korotaev054b9102006-12-10 02:20:11 -08007092/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02007093 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08007094 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07007095static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007097 int dest_cpu;
Mike Travis6ca09df2008-12-31 18:08:45 -08007098 const struct cpumask *nodemask = cpumask_of_node(cpu_to_node(dead_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307100again:
7101 /* Look for allowed, online CPU in same node. */
7102 for_each_cpu_and(dest_cpu, nodemask, cpu_online_mask)
7103 if (cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
7104 goto move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307106 /* Any allowed, online CPU? */
7107 dest_cpu = cpumask_any_and(&p->cpus_allowed, cpu_online_mask);
7108 if (dest_cpu < nr_cpu_ids)
7109 goto move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307111 /* No more Mr. Nice Guy. */
7112 if (dest_cpu >= nr_cpu_ids) {
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307113 cpuset_cpus_allowed_locked(p, &p->cpus_allowed);
7114 dest_cpu = cpumask_any_and(cpu_online_mask, &p->cpus_allowed);
Mike Travisf9a86fc2008-04-04 18:11:07 -07007115
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307116 /*
7117 * Don't tell them about moving exiting tasks or
7118 * kernel threads (both mm NULL), since they never
7119 * leave kernel.
7120 */
7121 if (p->mm && printk_ratelimit()) {
7122 printk(KERN_INFO "process %d (%s) no "
7123 "longer affine to cpu%d\n",
7124 task_pid_nr(p), p->comm, dead_cpu);
Andi Kleen3a5c3592007-10-15 17:00:14 +02007125 }
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307126 }
7127
7128move:
7129 /* It can have affinity changed while we were choosing. */
7130 if (unlikely(!__migrate_task_irq(p, dead_cpu, dest_cpu)))
7131 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132}
7133
7134/*
7135 * While a dead CPU has no uninterruptible tasks queued at this point,
7136 * it might still have a nonzero ->nr_uninterruptible counter, because
7137 * for performance reasons the counter is not stricly tracking tasks to
7138 * their home CPUs. So we just add the counter to another CPU's counter,
7139 * to keep the global sum constant after CPU-down:
7140 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07007141static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142{
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10307143 struct rq *rq_dest = cpu_rq(cpumask_any(cpu_online_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007144 unsigned long flags;
7145
7146 local_irq_save(flags);
7147 double_rq_lock(rq_src, rq_dest);
7148 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
7149 rq_src->nr_uninterruptible = 0;
7150 double_rq_unlock(rq_src, rq_dest);
7151 local_irq_restore(flags);
7152}
7153
7154/* Run through task list and migrate tasks from the dead cpu. */
7155static void migrate_live_tasks(int src_cpu)
7156{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007157 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007158
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07007159 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007160
Ingo Molnar48f24c42006-07-03 00:25:40 -07007161 do_each_thread(t, p) {
7162 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163 continue;
7164
Ingo Molnar48f24c42006-07-03 00:25:40 -07007165 if (task_cpu(p) == src_cpu)
7166 move_task_off_dead_cpu(src_cpu, p);
7167 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07007169 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007170}
7171
Ingo Molnardd41f592007-07-09 18:51:59 +02007172/*
7173 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01007174 * It does so by boosting its priority to highest possible.
7175 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007176 */
7177void sched_idle_next(void)
7178{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007179 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07007180 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007181 struct task_struct *p = rq->idle;
7182 unsigned long flags;
7183
7184 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07007185 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007186
Ingo Molnar48f24c42006-07-03 00:25:40 -07007187 /*
7188 * Strictly not necessary since rest of the CPUs are stopped by now
7189 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007190 */
7191 spin_lock_irqsave(&rq->lock, flags);
7192
Ingo Molnardd41f592007-07-09 18:51:59 +02007193 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007194
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01007195 update_rq_clock(rq);
7196 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007197
7198 spin_unlock_irqrestore(&rq->lock, flags);
7199}
7200
Ingo Molnar48f24c42006-07-03 00:25:40 -07007201/*
7202 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07007203 * offline.
7204 */
7205void idle_task_exit(void)
7206{
7207 struct mm_struct *mm = current->active_mm;
7208
7209 BUG_ON(cpu_online(smp_processor_id()));
7210
7211 if (mm != &init_mm)
7212 switch_mm(mm, &init_mm, current);
7213 mmdrop(mm);
7214}
7215
Kirill Korotaev054b9102006-12-10 02:20:11 -08007216/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007217static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007219 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220
7221 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07007222 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007223
7224 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07007225 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007226
Ingo Molnar48f24c42006-07-03 00:25:40 -07007227 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228
7229 /*
7230 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007231 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07007232 * fine.
7233 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07007234 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007235 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07007236 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237
Ingo Molnar48f24c42006-07-03 00:25:40 -07007238 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007239}
7240
7241/* release_task() removes task from tasklist, so we won't find dead tasks. */
7242static void migrate_dead_tasks(unsigned int dead_cpu)
7243{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007244 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02007245 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007246
Ingo Molnardd41f592007-07-09 18:51:59 +02007247 for ( ; ; ) {
7248 if (!rq->nr_running)
7249 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02007250 update_rq_clock(rq);
Wang Chenb67802e2009-03-02 13:55:26 +08007251 next = pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02007252 if (!next)
7253 break;
Dmitry Adamushko79c53792008-06-29 00:16:56 +02007254 next->sched_class->put_prev_task(rq, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02007255 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02007256
Linus Torvalds1da177e2005-04-16 15:20:36 -07007257 }
7258}
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02007259
7260/*
7261 * remove the tasks which were accounted by rq from calc_load_tasks.
7262 */
7263static void calc_global_load_remove(struct rq *rq)
7264{
7265 atomic_long_sub(rq->calc_load_active, &calc_load_tasks);
7266}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007267#endif /* CONFIG_HOTPLUG_CPU */
7268
Nick Piggine692ab52007-07-26 13:40:43 +02007269#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
7270
7271static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02007272 {
7273 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02007274 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02007275 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01007276 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02007277};
7278
7279static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02007280 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02007281 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02007282 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02007283 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02007284 .child = sd_ctl_dir,
7285 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01007286 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02007287};
7288
7289static struct ctl_table *sd_alloc_ctl_entry(int n)
7290{
7291 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02007292 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02007293
Nick Piggine692ab52007-07-26 13:40:43 +02007294 return entry;
7295}
7296
Milton Miller6382bc92007-10-15 17:00:19 +02007297static void sd_free_ctl_entry(struct ctl_table **tablep)
7298{
Milton Millercd790072007-10-17 16:55:11 +02007299 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02007300
Milton Millercd790072007-10-17 16:55:11 +02007301 /*
7302 * In the intermediate directories, both the child directory and
7303 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007304 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02007305 * static strings and all have proc handlers.
7306 */
7307 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02007308 if (entry->child)
7309 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02007310 if (entry->proc_handler == NULL)
7311 kfree(entry->procname);
7312 }
Milton Miller6382bc92007-10-15 17:00:19 +02007313
7314 kfree(*tablep);
7315 *tablep = NULL;
7316}
7317
Nick Piggine692ab52007-07-26 13:40:43 +02007318static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02007319set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02007320 const char *procname, void *data, int maxlen,
7321 mode_t mode, proc_handler *proc_handler)
7322{
Nick Piggine692ab52007-07-26 13:40:43 +02007323 entry->procname = procname;
7324 entry->data = data;
7325 entry->maxlen = maxlen;
7326 entry->mode = mode;
7327 entry->proc_handler = proc_handler;
7328}
7329
7330static struct ctl_table *
7331sd_alloc_ctl_domain_table(struct sched_domain *sd)
7332{
Ingo Molnara5d8c342008-10-09 11:35:51 +02007333 struct ctl_table *table = sd_alloc_ctl_entry(13);
Nick Piggine692ab52007-07-26 13:40:43 +02007334
Milton Millerad1cdc12007-10-15 17:00:19 +02007335 if (table == NULL)
7336 return NULL;
7337
Alexey Dobriyane0361852007-08-09 11:16:46 +02007338 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02007339 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007340 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02007341 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007342 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02007343 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007344 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02007345 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007346 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02007347 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007348 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02007349 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007350 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02007351 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007352 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02007353 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007354 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02007355 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02007356 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02007357 &sd->cache_nice_tries,
7358 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02007359 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02007360 sizeof(int), 0644, proc_dointvec_minmax);
Ingo Molnara5d8c342008-10-09 11:35:51 +02007361 set_table_entry(&table[11], "name", sd->name,
7362 CORENAME_MAX_SIZE, 0444, proc_dostring);
7363 /* &table[12] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02007364
7365 return table;
7366}
7367
Ingo Molnar9a4e7152007-11-28 15:52:56 +01007368static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02007369{
7370 struct ctl_table *entry, *table;
7371 struct sched_domain *sd;
7372 int domain_num = 0, i;
7373 char buf[32];
7374
7375 for_each_domain(cpu, sd)
7376 domain_num++;
7377 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02007378 if (table == NULL)
7379 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02007380
7381 i = 0;
7382 for_each_domain(cpu, sd) {
7383 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02007384 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02007385 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02007386 entry->child = sd_alloc_ctl_domain_table(sd);
7387 entry++;
7388 i++;
7389 }
7390 return table;
7391}
7392
7393static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02007394static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02007395{
7396 int i, cpu_num = num_online_cpus();
7397 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
7398 char buf[32];
7399
Milton Miller73785472007-10-24 18:23:48 +02007400 WARN_ON(sd_ctl_dir[0].child);
7401 sd_ctl_dir[0].child = entry;
7402
Milton Millerad1cdc12007-10-15 17:00:19 +02007403 if (entry == NULL)
7404 return;
7405
Milton Miller97b6ea72007-10-15 17:00:19 +02007406 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02007407 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02007408 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02007409 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02007410 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02007411 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02007412 }
Milton Miller73785472007-10-24 18:23:48 +02007413
7414 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02007415 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
7416}
Milton Miller6382bc92007-10-15 17:00:19 +02007417
Milton Miller73785472007-10-24 18:23:48 +02007418/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02007419static void unregister_sched_domain_sysctl(void)
7420{
Milton Miller73785472007-10-24 18:23:48 +02007421 if (sd_sysctl_header)
7422 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02007423 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007424 if (sd_ctl_dir[0].child)
7425 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02007426}
Nick Piggine692ab52007-07-26 13:40:43 +02007427#else
Milton Miller6382bc92007-10-15 17:00:19 +02007428static void register_sched_domain_sysctl(void)
7429{
7430}
7431static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02007432{
7433}
7434#endif
7435
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007436static void set_rq_online(struct rq *rq)
7437{
7438 if (!rq->online) {
7439 const struct sched_class *class;
7440
Rusty Russellc6c49272008-11-25 02:35:05 +10307441 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007442 rq->online = 1;
7443
7444 for_each_class(class) {
7445 if (class->rq_online)
7446 class->rq_online(rq);
7447 }
7448 }
7449}
7450
7451static void set_rq_offline(struct rq *rq)
7452{
7453 if (rq->online) {
7454 const struct sched_class *class;
7455
7456 for_each_class(class) {
7457 if (class->rq_offline)
7458 class->rq_offline(rq);
7459 }
7460
Rusty Russellc6c49272008-11-25 02:35:05 +10307461 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007462 rq->online = 0;
7463 }
7464}
7465
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466/*
7467 * migration_call - callback that gets triggered when a CPU is added.
7468 * Here we can start up the necessary migration thread for the new CPU.
7469 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07007470static int __cpuinit
7471migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007474 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007475 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007476 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477
7478 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07007479
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007481 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02007482 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483 if (IS_ERR(p))
7484 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007485 kthread_bind(p, cpu);
7486 /* Must be high prio: stop_machine expects to yield to it. */
7487 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02007488 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007489 task_rq_unlock(rq, &flags);
Oleg Nesterov371cbb32009-06-17 16:27:45 -07007490 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007491 cpu_rq(cpu)->migration_thread = p;
7492 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007493
Linus Torvalds1da177e2005-04-16 15:20:36 -07007494 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007495 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02007496 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04007498
7499 /* Update our root-domain */
7500 rq = cpu_rq(cpu);
7501 spin_lock_irqsave(&rq->lock, flags);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02007502 rq->calc_load_update = calc_load_update;
7503 rq->calc_load_active = 0;
Gregory Haskins1f94ef52008-03-10 16:52:41 -04007504 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10307505 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007506
7507 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04007508 }
7509 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007511
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512#ifdef CONFIG_HOTPLUG_CPU
7513 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007514 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07007515 if (!cpu_rq(cpu)->migration_thread)
7516 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007517 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08007518 kthread_bind(cpu_rq(cpu)->migration_thread,
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10307519 cpumask_any(cpu_online_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007520 kthread_stop(cpu_rq(cpu)->migration_thread);
Oleg Nesterov371cbb32009-06-17 16:27:45 -07007521 put_task_struct(cpu_rq(cpu)->migration_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522 cpu_rq(cpu)->migration_thread = NULL;
7523 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007524
Linus Torvalds1da177e2005-04-16 15:20:36 -07007525 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007526 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07007527 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528 migrate_live_tasks(cpu);
7529 rq = cpu_rq(cpu);
7530 kthread_stop(rq->migration_thread);
Oleg Nesterov371cbb32009-06-17 16:27:45 -07007531 put_task_struct(rq->migration_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007532 rq->migration_thread = NULL;
7533 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07007534 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02007535 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02007536 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007537 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02007538 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
7539 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007540 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07007541 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07007542 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007543 migrate_nr_uninterruptible(rq);
7544 BUG_ON(rq->nr_running != 0);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02007545 calc_global_load_remove(rq);
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007546 /*
7547 * No need to migrate the tasks: it was best-effort if
7548 * they didn't take sched_hotcpu_mutex. Just wake up
7549 * the requestors.
7550 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551 spin_lock_irq(&rq->lock);
7552 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007553 struct migration_req *req;
7554
Linus Torvalds1da177e2005-04-16 15:20:36 -07007555 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07007556 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557 list_del_init(&req->list);
Brian King9a2bd242008-12-09 08:47:00 -06007558 spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559 complete(&req->done);
Brian King9a2bd242008-12-09 08:47:00 -06007560 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561 }
7562 spin_unlock_irq(&rq->lock);
7563 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007564
Gregory Haskins08f503b2008-03-10 17:59:11 -04007565 case CPU_DYING:
7566 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01007567 /* Update our root-domain */
7568 rq = cpu_rq(cpu);
7569 spin_lock_irqsave(&rq->lock, flags);
7570 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10307571 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007572 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01007573 }
7574 spin_unlock_irqrestore(&rq->lock, flags);
7575 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007576#endif
7577 }
7578 return NOTIFY_OK;
7579}
7580
Paul Mackerrasf38b0822009-06-02 21:05:16 +10007581/*
7582 * Register at high priority so that task migration (migrate_all_tasks)
7583 * happens before everything else. This has to be lower priority than
7584 * the notifier in the perf_counter subsystem, though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07007586static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007587 .notifier_call = migration_call,
7588 .priority = 10
7589};
7590
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07007591static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007592{
7593 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07007594 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007595
7596 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07007597 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
7598 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007599 migration_call(&migration_notifier, CPU_ONLINE, cpu);
7600 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07007601
7602 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07007604early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605#endif
7606
7607#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07007608
Ingo Molnar3e9830d2007-10-15 17:00:13 +02007609#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007610
Mike Travis7c16ec52008-04-04 18:11:11 -07007611static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e2008-11-25 02:35:14 +10307612 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007613{
7614 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07007615 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007616
Rusty Russell968ea6d2008-12-13 21:55:51 +10307617 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e2008-11-25 02:35:14 +10307618 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007619
7620 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
7621
7622 if (!(sd->flags & SD_LOAD_BALANCE)) {
7623 printk("does not load-balance\n");
7624 if (sd->parent)
7625 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
7626 " has parent");
7627 return -1;
7628 }
7629
Li Zefaneefd7962008-11-04 16:15:37 +08007630 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007631
Rusty Russell758b2cd2008-11-25 02:35:04 +10307632 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007633 printk(KERN_ERR "ERROR: domain->span does not contain "
7634 "CPU%d\n", cpu);
7635 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10307636 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007637 printk(KERN_ERR "ERROR: domain->groups does not contain"
7638 " CPU%d\n", cpu);
7639 }
7640
7641 printk(KERN_DEBUG "%*s groups:", level + 1, "");
7642 do {
7643 if (!group) {
7644 printk("\n");
7645 printk(KERN_ERR "ERROR: group is NULL\n");
7646 break;
7647 }
7648
7649 if (!group->__cpu_power) {
7650 printk(KERN_CONT "\n");
7651 printk(KERN_ERR "ERROR: domain->cpu_power not "
7652 "set\n");
7653 break;
7654 }
7655
Rusty Russell758b2cd2008-11-25 02:35:04 +10307656 if (!cpumask_weight(sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007657 printk(KERN_CONT "\n");
7658 printk(KERN_ERR "ERROR: empty group\n");
7659 break;
7660 }
7661
Rusty Russell758b2cd2008-11-25 02:35:04 +10307662 if (cpumask_intersects(groupmask, sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007663 printk(KERN_CONT "\n");
7664 printk(KERN_ERR "ERROR: repeated CPUs\n");
7665 break;
7666 }
7667
Rusty Russell758b2cd2008-11-25 02:35:04 +10307668 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007669
Rusty Russell968ea6d2008-12-13 21:55:51 +10307670 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Gautham R Shenoy381512c2009-04-14 09:09:36 +05307671
7672 printk(KERN_CONT " %s", str);
7673 if (group->__cpu_power != SCHED_LOAD_SCALE) {
7674 printk(KERN_CONT " (__cpu_power = %d)",
7675 group->__cpu_power);
7676 }
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007677
7678 group = group->next;
7679 } while (group != sd->groups);
7680 printk(KERN_CONT "\n");
7681
Rusty Russell758b2cd2008-11-25 02:35:04 +10307682 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007683 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
7684
Rusty Russell758b2cd2008-11-25 02:35:04 +10307685 if (sd->parent &&
7686 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007687 printk(KERN_ERR "ERROR: parent span is not a superset "
7688 "of domain->span\n");
7689 return 0;
7690}
7691
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692static void sched_domain_debug(struct sched_domain *sd, int cpu)
7693{
Rusty Russelld5dd3db2008-11-25 02:35:12 +10307694 cpumask_var_t groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695 int level = 0;
7696
Nick Piggin41c7ce92005-06-25 14:57:24 -07007697 if (!sd) {
7698 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
7699 return;
7700 }
7701
Linus Torvalds1da177e2005-04-16 15:20:36 -07007702 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
7703
Rusty Russelld5dd3db2008-11-25 02:35:12 +10307704 if (!alloc_cpumask_var(&groupmask, GFP_KERNEL)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007705 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
7706 return;
7707 }
7708
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007709 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007710 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007711 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007712 level++;
7713 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08007714 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007715 break;
7716 }
Rusty Russelld5dd3db2008-11-25 02:35:12 +10307717 free_cpumask_var(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007719#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07007720# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007721#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007722
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007723static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07007724{
Rusty Russell758b2cd2008-11-25 02:35:04 +10307725 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07007726 return 1;
7727
7728 /* Following flags need at least 2 groups */
7729 if (sd->flags & (SD_LOAD_BALANCE |
7730 SD_BALANCE_NEWIDLE |
7731 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007732 SD_BALANCE_EXEC |
7733 SD_SHARE_CPUPOWER |
7734 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007735 if (sd->groups != sd->groups->next)
7736 return 0;
7737 }
7738
7739 /* Following flags don't use groups */
7740 if (sd->flags & (SD_WAKE_IDLE |
7741 SD_WAKE_AFFINE |
7742 SD_WAKE_BALANCE))
7743 return 0;
7744
7745 return 1;
7746}
7747
Ingo Molnar48f24c42006-07-03 00:25:40 -07007748static int
7749sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07007750{
7751 unsigned long cflags = sd->flags, pflags = parent->flags;
7752
7753 if (sd_degenerate(parent))
7754 return 1;
7755
Rusty Russell758b2cd2008-11-25 02:35:04 +10307756 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07007757 return 0;
7758
7759 /* Does parent contain flags not in child? */
7760 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
7761 if (cflags & SD_WAKE_AFFINE)
7762 pflags &= ~SD_WAKE_BALANCE;
7763 /* Flags needing groups don't count if only 1 group in parent */
7764 if (parent->groups == parent->groups->next) {
7765 pflags &= ~(SD_LOAD_BALANCE |
7766 SD_BALANCE_NEWIDLE |
7767 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007768 SD_BALANCE_EXEC |
7769 SD_SHARE_CPUPOWER |
7770 SD_SHARE_PKG_RESOURCES);
Ken Chen54364992008-12-07 18:47:37 -08007771 if (nr_node_ids == 1)
7772 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07007773 }
7774 if (~cflags & pflags)
7775 return 0;
7776
7777 return 1;
7778}
7779
Rusty Russellc6c49272008-11-25 02:35:05 +10307780static void free_rootdomain(struct root_domain *rd)
7781{
Rusty Russell68e74562008-11-25 02:35:13 +10307782 cpupri_cleanup(&rd->cpupri);
7783
Rusty Russellc6c49272008-11-25 02:35:05 +10307784 free_cpumask_var(rd->rto_mask);
7785 free_cpumask_var(rd->online);
7786 free_cpumask_var(rd->span);
7787 kfree(rd);
7788}
7789
Gregory Haskins57d885f2008-01-25 21:08:18 +01007790static void rq_attach_root(struct rq *rq, struct root_domain *rd)
7791{
Ingo Molnara0490fa2009-02-12 11:35:40 +01007792 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007793 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007794
7795 spin_lock_irqsave(&rq->lock, flags);
7796
7797 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01007798 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007799
Rusty Russellc6c49272008-11-25 02:35:05 +10307800 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007801 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01007802
Rusty Russellc6c49272008-11-25 02:35:05 +10307803 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007804
Ingo Molnara0490fa2009-02-12 11:35:40 +01007805 /*
7806 * If we dont want to free the old_rt yet then
7807 * set old_rd to NULL to skip the freeing later
7808 * in this function:
7809 */
7810 if (!atomic_dec_and_test(&old_rd->refcount))
7811 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007812 }
7813
7814 atomic_inc(&rd->refcount);
7815 rq->rd = rd;
7816
Rusty Russellc6c49272008-11-25 02:35:05 +10307817 cpumask_set_cpu(rq->cpu, rd->span);
7818 if (cpumask_test_cpu(rq->cpu, cpu_online_mask))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007819 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01007820
7821 spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01007822
7823 if (old_rd)
7824 free_rootdomain(old_rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01007825}
7826
Li Zefanfd5e1b52009-06-15 13:34:19 +08007827static int init_rootdomain(struct root_domain *rd, bool bootmem)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007828{
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03007829 gfp_t gfp = GFP_KERNEL;
7830
Gregory Haskins57d885f2008-01-25 21:08:18 +01007831 memset(rd, 0, sizeof(*rd));
7832
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03007833 if (bootmem)
7834 gfp = GFP_NOWAIT;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02007835
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03007836 if (!alloc_cpumask_var(&rd->span, gfp))
Li Zefan0c910d22009-01-06 17:39:06 +08007837 goto out;
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03007838 if (!alloc_cpumask_var(&rd->online, gfp))
Rusty Russellc6c49272008-11-25 02:35:05 +10307839 goto free_span;
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03007840 if (!alloc_cpumask_var(&rd->rto_mask, gfp))
Rusty Russellc6c49272008-11-25 02:35:05 +10307841 goto free_online;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02007842
Pekka Enberg0fb53022009-06-11 08:41:22 +03007843 if (cpupri_init(&rd->cpupri, bootmem) != 0)
Rusty Russell68e74562008-11-25 02:35:13 +10307844 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10307845 return 0;
7846
Rusty Russell68e74562008-11-25 02:35:13 +10307847free_rto_mask:
7848 free_cpumask_var(rd->rto_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10307849free_online:
7850 free_cpumask_var(rd->online);
7851free_span:
7852 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08007853out:
Rusty Russellc6c49272008-11-25 02:35:05 +10307854 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007855}
7856
7857static void init_defrootdomain(void)
7858{
Rusty Russellc6c49272008-11-25 02:35:05 +10307859 init_rootdomain(&def_root_domain, true);
7860
Gregory Haskins57d885f2008-01-25 21:08:18 +01007861 atomic_set(&def_root_domain.refcount, 1);
7862}
7863
Gregory Haskinsdc938522008-01-25 21:08:26 +01007864static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007865{
7866 struct root_domain *rd;
7867
7868 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
7869 if (!rd)
7870 return NULL;
7871
Rusty Russellc6c49272008-11-25 02:35:05 +10307872 if (init_rootdomain(rd, false) != 0) {
7873 kfree(rd);
7874 return NULL;
7875 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01007876
7877 return rd;
7878}
7879
Linus Torvalds1da177e2005-04-16 15:20:36 -07007880/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01007881 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07007882 * hold the hotplug lock.
7883 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01007884static void
7885cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007887 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07007888 struct sched_domain *tmp;
7889
7890 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08007891 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007892 struct sched_domain *parent = tmp->parent;
7893 if (!parent)
7894 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08007895
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007896 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007897 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007898 if (parent->parent)
7899 parent->parent->child = tmp;
Li Zefanf29c9b12008-11-06 09:45:16 +08007900 } else
7901 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07007902 }
7903
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007904 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007905 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007906 if (sd)
7907 sd->child = NULL;
7908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007909
7910 sched_domain_debug(sd, cpu);
7911
Gregory Haskins57d885f2008-01-25 21:08:18 +01007912 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07007913 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007914}
7915
7916/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10307917static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007918
7919/* Setup the mask of cpus configured for isolated domains */
7920static int __init isolated_cpu_setup(char *str)
7921{
Rusty Russell968ea6d2008-12-13 21:55:51 +10307922 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007923 return 1;
7924}
7925
Ingo Molnar8927f492007-10-15 17:00:13 +02007926__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007927
7928/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007929 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
7930 * to a function which identifies what group(along with sched group) a CPU
Rusty Russell96f874e2008-11-25 02:35:14 +10307931 * belongs to. The return value of group_fn must be a >= 0 and < nr_cpu_ids
7932 * (due to the fact that we keep track of groups covered with a struct cpumask).
Linus Torvalds1da177e2005-04-16 15:20:36 -07007933 *
7934 * init_sched_build_groups will build a circular linked list of the groups
7935 * covered by the given span, and will set each group's ->cpumask correctly,
7936 * and ->cpu_power to 0.
7937 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007938static void
Rusty Russell96f874e2008-11-25 02:35:14 +10307939init_sched_build_groups(const struct cpumask *span,
7940 const struct cpumask *cpu_map,
7941 int (*group_fn)(int cpu, const struct cpumask *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007942 struct sched_group **sg,
Rusty Russell96f874e2008-11-25 02:35:14 +10307943 struct cpumask *tmpmask),
7944 struct cpumask *covered, struct cpumask *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007945{
7946 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007947 int i;
7948
Rusty Russell96f874e2008-11-25 02:35:14 +10307949 cpumask_clear(covered);
Mike Travis7c16ec52008-04-04 18:11:11 -07007950
Rusty Russellabcd0832008-11-25 02:35:02 +10307951 for_each_cpu(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007952 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007953 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954 int j;
7955
Rusty Russell758b2cd2008-11-25 02:35:04 +10307956 if (cpumask_test_cpu(i, covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007957 continue;
7958
Rusty Russell758b2cd2008-11-25 02:35:04 +10307959 cpumask_clear(sched_group_cpus(sg));
Eric Dumazet5517d862007-05-08 00:32:57 -07007960 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961
Rusty Russellabcd0832008-11-25 02:35:02 +10307962 for_each_cpu(j, span) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007963 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964 continue;
7965
Rusty Russell96f874e2008-11-25 02:35:14 +10307966 cpumask_set_cpu(j, covered);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307967 cpumask_set_cpu(j, sched_group_cpus(sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007968 }
7969 if (!first)
7970 first = sg;
7971 if (last)
7972 last->next = sg;
7973 last = sg;
7974 }
7975 last->next = first;
7976}
7977
John Hawkes9c1cfda2005-09-06 15:18:14 -07007978#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07007979
John Hawkes9c1cfda2005-09-06 15:18:14 -07007980#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08007981
John Hawkes9c1cfda2005-09-06 15:18:14 -07007982/**
7983 * find_next_best_node - find the next node to include in a sched_domain
7984 * @node: node whose sched_domain we're building
7985 * @used_nodes: nodes already in the sched_domain
7986 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007987 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07007988 * finds the closest node not already in the @used_nodes map.
7989 *
7990 * Should use nodemask_t.
7991 */
Mike Travisc5f59f02008-04-04 18:11:10 -07007992static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007993{
7994 int i, n, val, min_val, best_node = 0;
7995
7996 min_val = INT_MAX;
7997
Mike Travis076ac2a2008-05-12 21:21:12 +02007998 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007999 /* Start at @node */
Mike Travis076ac2a2008-05-12 21:21:12 +02008000 n = (node + i) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008001
8002 if (!nr_cpus_node(n))
8003 continue;
8004
8005 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07008006 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07008007 continue;
8008
8009 /* Simple min distance search */
8010 val = node_distance(node, n);
8011
8012 if (val < min_val) {
8013 min_val = val;
8014 best_node = n;
8015 }
8016 }
8017
Mike Travisc5f59f02008-04-04 18:11:10 -07008018 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008019 return best_node;
8020}
8021
8022/**
8023 * sched_domain_node_span - get a cpumask for a node's sched_domain
8024 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07008025 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07008026 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008027 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07008028 * should be one that prevents unnecessary balancing, but also spreads tasks
8029 * out optimally.
8030 */
Rusty Russell96f874e2008-11-25 02:35:14 +10308031static void sched_domain_node_span(int node, struct cpumask *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07008032{
Mike Travisc5f59f02008-04-04 18:11:10 -07008033 nodemask_t used_nodes;
Ingo Molnar48f24c42006-07-03 00:25:40 -07008034 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008035
Mike Travis6ca09df2008-12-31 18:08:45 -08008036 cpumask_clear(span);
Mike Travisc5f59f02008-04-04 18:11:10 -07008037 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008038
Mike Travis6ca09df2008-12-31 18:08:45 -08008039 cpumask_or(span, span, cpumask_of_node(node));
Mike Travisc5f59f02008-04-04 18:11:10 -07008040 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008041
8042 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07008043 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07008044
Mike Travis6ca09df2008-12-31 18:08:45 -08008045 cpumask_or(span, span, cpumask_of_node(next_node));
John Hawkes9c1cfda2005-09-06 15:18:14 -07008046 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07008047}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008048#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07008049
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008050int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07008051
John Hawkes9c1cfda2005-09-06 15:18:14 -07008052/*
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308053 * The cpus mask in sched_group and sched_domain hangs off the end.
Ingo Molnar4200efd2009-05-19 09:22:19 +02008054 *
8055 * ( See the the comments in include/linux/sched.h:struct sched_group
8056 * and struct sched_domain. )
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308057 */
8058struct static_sched_group {
8059 struct sched_group sg;
8060 DECLARE_BITMAP(cpus, CONFIG_NR_CPUS);
8061};
8062
8063struct static_sched_domain {
8064 struct sched_domain sd;
8065 DECLARE_BITMAP(span, CONFIG_NR_CPUS);
8066};
8067
8068/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07008069 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07008070 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008071#ifdef CONFIG_SCHED_SMT
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308072static DEFINE_PER_CPU(struct static_sched_domain, cpu_domains);
8073static DEFINE_PER_CPU(struct static_sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07008074
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008075static int
Rusty Russell96f874e2008-11-25 02:35:14 +10308076cpu_to_cpu_group(int cpu, const struct cpumask *cpu_map,
8077 struct sched_group **sg, struct cpumask *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008078{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008079 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308080 *sg = &per_cpu(sched_group_cpus, cpu).sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008081 return cpu;
8082}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008083#endif /* CONFIG_SCHED_SMT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084
Ingo Molnar48f24c42006-07-03 00:25:40 -07008085/*
8086 * multi-core sched-domains:
8087 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008088#ifdef CONFIG_SCHED_MC
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308089static DEFINE_PER_CPU(struct static_sched_domain, core_domains);
8090static DEFINE_PER_CPU(struct static_sched_group, sched_group_core);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008091#endif /* CONFIG_SCHED_MC */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008092
8093#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008094static int
Rusty Russell96f874e2008-11-25 02:35:14 +10308095cpu_to_core_group(int cpu, const struct cpumask *cpu_map,
8096 struct sched_group **sg, struct cpumask *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008097{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008098 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07008099
Rusty Russellc69fc562009-03-13 14:49:46 +10308100 cpumask_and(mask, topology_thread_cpumask(cpu), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308101 group = cpumask_first(mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008102 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308103 *sg = &per_cpu(sched_group_core, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008104 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008105}
8106#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008107static int
Rusty Russell96f874e2008-11-25 02:35:14 +10308108cpu_to_core_group(int cpu, const struct cpumask *cpu_map,
8109 struct sched_group **sg, struct cpumask *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008110{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008111 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308112 *sg = &per_cpu(sched_group_core, cpu).sg;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008113 return cpu;
8114}
8115#endif
8116
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308117static DEFINE_PER_CPU(struct static_sched_domain, phys_domains);
8118static DEFINE_PER_CPU(struct static_sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07008119
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008120static int
Rusty Russell96f874e2008-11-25 02:35:14 +10308121cpu_to_phys_group(int cpu, const struct cpumask *cpu_map,
8122 struct sched_group **sg, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008124 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07008125#ifdef CONFIG_SCHED_MC
Mike Travis6ca09df2008-12-31 18:08:45 -08008126 cpumask_and(mask, cpu_coregroup_mask(cpu), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308127 group = cpumask_first(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008128#elif defined(CONFIG_SCHED_SMT)
Rusty Russellc69fc562009-03-13 14:49:46 +10308129 cpumask_and(mask, topology_thread_cpumask(cpu), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308130 group = cpumask_first(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008131#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008132 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008133#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008134 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308135 *sg = &per_cpu(sched_group_phys, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008136 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008137}
8138
8139#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07008140/*
8141 * The init_sched_build_groups can't handle what we want to do with node
8142 * groups, so roll our own. Now each node has its own list of groups which
8143 * gets dynamically allocated.
8144 */
Rusty Russell62ea9ce2009-01-11 01:04:16 +01008145static DEFINE_PER_CPU(struct static_sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07008146static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008147
Rusty Russell62ea9ce2009-01-11 01:04:16 +01008148static DEFINE_PER_CPU(struct static_sched_domain, allnodes_domains);
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308149static DEFINE_PER_CPU(struct static_sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008150
Rusty Russell96f874e2008-11-25 02:35:14 +10308151static int cpu_to_allnodes_group(int cpu, const struct cpumask *cpu_map,
8152 struct sched_group **sg,
8153 struct cpumask *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008155 int group;
8156
Mike Travis6ca09df2008-12-31 18:08:45 -08008157 cpumask_and(nodemask, cpumask_of_node(cpu_to_node(cpu)), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308158 group = cpumask_first(nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008159
8160 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308161 *sg = &per_cpu(sched_group_allnodes, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008162 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008163}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008164
Siddha, Suresh B08069032006-03-27 01:15:23 -08008165static void init_numa_sched_groups_power(struct sched_group *group_head)
8166{
8167 struct sched_group *sg = group_head;
8168 int j;
8169
8170 if (!sg)
8171 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02008172 do {
Rusty Russell758b2cd2008-11-25 02:35:04 +10308173 for_each_cpu(j, sched_group_cpus(sg)) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02008174 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08008175
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308176 sd = &per_cpu(phys_domains, j).sd;
Miao Xie13318a72009-04-15 09:59:10 +08008177 if (j != group_first_cpu(sd->groups)) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02008178 /*
8179 * Only add "power" once for each
8180 * physical package.
8181 */
8182 continue;
8183 }
8184
8185 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08008186 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02008187 sg = sg->next;
8188 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08008189}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008190#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008191
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07008192#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008193/* Free memory allocated for various sched_group structures */
Rusty Russell96f874e2008-11-25 02:35:14 +10308194static void free_sched_groups(const struct cpumask *cpu_map,
8195 struct cpumask *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008196{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07008197 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008198
Rusty Russellabcd0832008-11-25 02:35:02 +10308199 for_each_cpu(cpu, cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008200 struct sched_group **sched_group_nodes
8201 = sched_group_nodes_bycpu[cpu];
8202
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008203 if (!sched_group_nodes)
8204 continue;
8205
Mike Travis076ac2a2008-05-12 21:21:12 +02008206 for (i = 0; i < nr_node_ids; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008207 struct sched_group *oldsg, *sg = sched_group_nodes[i];
8208
Mike Travis6ca09df2008-12-31 18:08:45 -08008209 cpumask_and(nodemask, cpumask_of_node(i), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308210 if (cpumask_empty(nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008211 continue;
8212
8213 if (sg == NULL)
8214 continue;
8215 sg = sg->next;
8216next_sg:
8217 oldsg = sg;
8218 sg = sg->next;
8219 kfree(oldsg);
8220 if (oldsg != sched_group_nodes[i])
8221 goto next_sg;
8222 }
8223 kfree(sched_group_nodes);
8224 sched_group_nodes_bycpu[cpu] = NULL;
8225 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008226}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008227#else /* !CONFIG_NUMA */
Rusty Russell96f874e2008-11-25 02:35:14 +10308228static void free_sched_groups(const struct cpumask *cpu_map,
8229 struct cpumask *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07008230{
8231}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008232#endif /* CONFIG_NUMA */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008233
Linus Torvalds1da177e2005-04-16 15:20:36 -07008234/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008235 * Initialize sched groups cpu_power.
8236 *
8237 * cpu_power indicates the capacity of sched group, which is used while
8238 * distributing the load between different sched groups in a sched domain.
8239 * Typically cpu_power for all the groups in a sched domain will be same unless
8240 * there are asymmetries in the topology. If there are asymmetries, group
8241 * having more cpu_power will pickup more load compared to the group having
8242 * less cpu_power.
8243 *
8244 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
8245 * the maximum number of tasks a group can handle in the presence of other idle
8246 * or lightly loaded groups in the same sched domain.
8247 */
8248static void init_sched_groups_power(int cpu, struct sched_domain *sd)
8249{
8250 struct sched_domain *child;
8251 struct sched_group *group;
8252
8253 WARN_ON(!sd || !sd->groups);
8254
Miao Xie13318a72009-04-15 09:59:10 +08008255 if (cpu != group_first_cpu(sd->groups))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008256 return;
8257
8258 child = sd->child;
8259
Eric Dumazet5517d862007-05-08 00:32:57 -07008260 sd->groups->__cpu_power = 0;
8261
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008262 /*
8263 * For perf policy, if the groups in child domain share resources
8264 * (for example cores sharing some portions of the cache hierarchy
8265 * or SMT), then set this domain groups cpu_power such that each group
8266 * can handle only one task, when there are other idle groups in the
8267 * same sched domain.
8268 */
8269 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
8270 (child->flags &
8271 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07008272 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008273 return;
8274 }
8275
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008276 /*
8277 * add cpu_power of each child group to this groups cpu_power
8278 */
8279 group = child->groups;
8280 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07008281 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008282 group = group->next;
8283 } while (group != child->groups);
8284}
8285
8286/*
Mike Travis7c16ec52008-04-04 18:11:11 -07008287 * Initializers for schedule domains
8288 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
8289 */
8290
Ingo Molnara5d8c342008-10-09 11:35:51 +02008291#ifdef CONFIG_SCHED_DEBUG
8292# define SD_INIT_NAME(sd, type) sd->name = #type
8293#else
8294# define SD_INIT_NAME(sd, type) do { } while (0)
8295#endif
8296
Mike Travis7c16ec52008-04-04 18:11:11 -07008297#define SD_INIT(sd, type) sd_init_##type(sd)
Ingo Molnara5d8c342008-10-09 11:35:51 +02008298
Mike Travis7c16ec52008-04-04 18:11:11 -07008299#define SD_INIT_FUNC(type) \
8300static noinline void sd_init_##type(struct sched_domain *sd) \
8301{ \
8302 memset(sd, 0, sizeof(*sd)); \
8303 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008304 sd->level = SD_LV_##type; \
Ingo Molnara5d8c342008-10-09 11:35:51 +02008305 SD_INIT_NAME(sd, type); \
Mike Travis7c16ec52008-04-04 18:11:11 -07008306}
8307
8308SD_INIT_FUNC(CPU)
8309#ifdef CONFIG_NUMA
8310 SD_INIT_FUNC(ALLNODES)
8311 SD_INIT_FUNC(NODE)
8312#endif
8313#ifdef CONFIG_SCHED_SMT
8314 SD_INIT_FUNC(SIBLING)
8315#endif
8316#ifdef CONFIG_SCHED_MC
8317 SD_INIT_FUNC(MC)
8318#endif
8319
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008320static int default_relax_domain_level = -1;
8321
8322static int __init setup_relax_domain_level(char *str)
8323{
Li Zefan30e0e172008-05-13 10:27:17 +08008324 unsigned long val;
8325
8326 val = simple_strtoul(str, NULL, 0);
8327 if (val < SD_LV_MAX)
8328 default_relax_domain_level = val;
8329
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008330 return 1;
8331}
8332__setup("relax_domain_level=", setup_relax_domain_level);
8333
8334static void set_domain_attribute(struct sched_domain *sd,
8335 struct sched_domain_attr *attr)
8336{
8337 int request;
8338
8339 if (!attr || attr->relax_domain_level < 0) {
8340 if (default_relax_domain_level < 0)
8341 return;
8342 else
8343 request = default_relax_domain_level;
8344 } else
8345 request = attr->relax_domain_level;
8346 if (request < sd->level) {
8347 /* turn off idle balance on this domain */
8348 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
8349 } else {
8350 /* turn on idle balance on this domain */
8351 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
8352 }
8353}
8354
Mike Travis7c16ec52008-04-04 18:11:11 -07008355/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008356 * Build sched domains for a given set of cpus and attach the sched domains
8357 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07008358 */
Rusty Russell96f874e2008-11-25 02:35:14 +10308359static int __build_sched_domains(const struct cpumask *cpu_map,
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008360 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008361{
Rusty Russell3404c8d2008-11-25 02:35:03 +10308362 int i, err = -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008363 struct root_domain *rd;
Rusty Russell3404c8d2008-11-25 02:35:03 +10308364 cpumask_var_t nodemask, this_sibling_map, this_core_map, send_covered,
8365 tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07008366#ifdef CONFIG_NUMA
Rusty Russell3404c8d2008-11-25 02:35:03 +10308367 cpumask_var_t domainspan, covered, notcovered;
John Hawkesd1b55132005-09-06 15:18:14 -07008368 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008369 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07008370
Rusty Russell3404c8d2008-11-25 02:35:03 +10308371 if (!alloc_cpumask_var(&domainspan, GFP_KERNEL))
8372 goto out;
8373 if (!alloc_cpumask_var(&covered, GFP_KERNEL))
8374 goto free_domainspan;
8375 if (!alloc_cpumask_var(&notcovered, GFP_KERNEL))
8376 goto free_covered;
8377#endif
8378
8379 if (!alloc_cpumask_var(&nodemask, GFP_KERNEL))
8380 goto free_notcovered;
8381 if (!alloc_cpumask_var(&this_sibling_map, GFP_KERNEL))
8382 goto free_nodemask;
8383 if (!alloc_cpumask_var(&this_core_map, GFP_KERNEL))
8384 goto free_this_sibling_map;
8385 if (!alloc_cpumask_var(&send_covered, GFP_KERNEL))
8386 goto free_this_core_map;
8387 if (!alloc_cpumask_var(&tmpmask, GFP_KERNEL))
8388 goto free_send_covered;
8389
8390#ifdef CONFIG_NUMA
John Hawkesd1b55132005-09-06 15:18:14 -07008391 /*
8392 * Allocate the per-node list of sched groups
8393 */
Mike Travis076ac2a2008-05-12 21:21:12 +02008394 sched_group_nodes = kcalloc(nr_node_ids, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008395 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07008396 if (!sched_group_nodes) {
8397 printk(KERN_WARNING "Can not alloc sched group node list\n");
Rusty Russell3404c8d2008-11-25 02:35:03 +10308398 goto free_tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07008399 }
John Hawkesd1b55132005-09-06 15:18:14 -07008400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008401
Gregory Haskinsdc938522008-01-25 21:08:26 +01008402 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01008403 if (!rd) {
8404 printk(KERN_WARNING "Cannot alloc root domain\n");
Rusty Russell3404c8d2008-11-25 02:35:03 +10308405 goto free_sched_groups;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008406 }
8407
Mike Travis7c16ec52008-04-04 18:11:11 -07008408#ifdef CONFIG_NUMA
Rusty Russell96f874e2008-11-25 02:35:14 +10308409 sched_group_nodes_bycpu[cpumask_first(cpu_map)] = sched_group_nodes;
Mike Travis7c16ec52008-04-04 18:11:11 -07008410#endif
8411
Linus Torvalds1da177e2005-04-16 15:20:36 -07008412 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008413 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008414 */
Rusty Russellabcd0832008-11-25 02:35:02 +10308415 for_each_cpu(i, cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008416 struct sched_domain *sd = NULL, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417
Mike Travis6ca09df2008-12-31 18:08:45 -08008418 cpumask_and(nodemask, cpumask_of_node(cpu_to_node(i)), cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008419
8420#ifdef CONFIG_NUMA
Rusty Russell96f874e2008-11-25 02:35:14 +10308421 if (cpumask_weight(cpu_map) >
8422 SD_NODES_PER_DOMAIN*cpumask_weight(nodemask)) {
Rusty Russell62ea9ce2009-01-11 01:04:16 +01008423 sd = &per_cpu(allnodes_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07008424 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008425 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10308426 cpumask_copy(sched_domain_span(sd), cpu_map);
Mike Travis7c16ec52008-04-04 18:11:11 -07008427 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008428 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008429 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008430 } else
8431 p = NULL;
8432
Rusty Russell62ea9ce2009-01-11 01:04:16 +01008433 sd = &per_cpu(node_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07008434 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008435 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10308436 sched_domain_node_span(cpu_to_node(i), sched_domain_span(sd));
John Hawkes9c1cfda2005-09-06 15:18:14 -07008437 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07008438 if (p)
8439 p->child = sd;
Rusty Russell758b2cd2008-11-25 02:35:04 +10308440 cpumask_and(sched_domain_span(sd),
8441 sched_domain_span(sd), cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008442#endif
8443
8444 p = sd;
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308445 sd = &per_cpu(phys_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07008446 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008447 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10308448 cpumask_copy(sched_domain_span(sd), nodemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008449 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07008450 if (p)
8451 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07008452 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008453
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008454#ifdef CONFIG_SCHED_MC
8455 p = sd;
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308456 sd = &per_cpu(core_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07008457 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008458 set_domain_attribute(sd, attr);
Mike Travis6ca09df2008-12-31 18:08:45 -08008459 cpumask_and(sched_domain_span(sd), cpu_map,
8460 cpu_coregroup_mask(i));
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008461 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07008462 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07008463 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008464#endif
8465
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466#ifdef CONFIG_SCHED_SMT
8467 p = sd;
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308468 sd = &per_cpu(cpu_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07008469 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008470 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10308471 cpumask_and(sched_domain_span(sd),
Rusty Russellc69fc562009-03-13 14:49:46 +10308472 topology_thread_cpumask(i), cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008473 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07008474 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07008475 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008476#endif
8477 }
8478
8479#ifdef CONFIG_SCHED_SMT
8480 /* Set up CPU (sibling) groups */
Rusty Russellabcd0832008-11-25 02:35:02 +10308481 for_each_cpu(i, cpu_map) {
Rusty Russell96f874e2008-11-25 02:35:14 +10308482 cpumask_and(this_sibling_map,
Rusty Russellc69fc562009-03-13 14:49:46 +10308483 topology_thread_cpumask(i), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308484 if (i != cpumask_first(this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008485 continue;
8486
Ingo Molnardd41f592007-07-09 18:51:59 +02008487 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07008488 &cpu_to_cpu_group,
8489 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490 }
8491#endif
8492
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008493#ifdef CONFIG_SCHED_MC
8494 /* Set up multi-core groups */
Rusty Russellabcd0832008-11-25 02:35:02 +10308495 for_each_cpu(i, cpu_map) {
Mike Travis6ca09df2008-12-31 18:08:45 -08008496 cpumask_and(this_core_map, cpu_coregroup_mask(i), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308497 if (i != cpumask_first(this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008498 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07008499
Ingo Molnardd41f592007-07-09 18:51:59 +02008500 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07008501 &cpu_to_core_group,
8502 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008503 }
8504#endif
8505
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506 /* Set up physical groups */
Mike Travis076ac2a2008-05-12 21:21:12 +02008507 for (i = 0; i < nr_node_ids; i++) {
Mike Travis6ca09df2008-12-31 18:08:45 -08008508 cpumask_and(nodemask, cpumask_of_node(i), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308509 if (cpumask_empty(nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008510 continue;
8511
Mike Travis7c16ec52008-04-04 18:11:11 -07008512 init_sched_build_groups(nodemask, cpu_map,
8513 &cpu_to_phys_group,
8514 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008515 }
8516
8517#ifdef CONFIG_NUMA
8518 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07008519 if (sd_allnodes) {
Mike Travis7c16ec52008-04-04 18:11:11 -07008520 init_sched_build_groups(cpu_map, cpu_map,
8521 &cpu_to_allnodes_group,
8522 send_covered, tmpmask);
8523 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07008524
Mike Travis076ac2a2008-05-12 21:21:12 +02008525 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07008526 /* Set up node groups */
8527 struct sched_group *sg, *prev;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008528 int j;
8529
Rusty Russell96f874e2008-11-25 02:35:14 +10308530 cpumask_clear(covered);
Mike Travis6ca09df2008-12-31 18:08:45 -08008531 cpumask_and(nodemask, cpumask_of_node(i), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308532 if (cpumask_empty(nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07008533 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008534 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07008535 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07008536
Mike Travis4bdbaad2008-04-15 16:35:52 -07008537 sched_domain_node_span(i, domainspan);
Rusty Russell96f874e2008-11-25 02:35:14 +10308538 cpumask_and(domainspan, domainspan, cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008539
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308540 sg = kmalloc_node(sizeof(struct sched_group) + cpumask_size(),
8541 GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008542 if (!sg) {
8543 printk(KERN_WARNING "Can not alloc domain group for "
8544 "node %d\n", i);
8545 goto error;
8546 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07008547 sched_group_nodes[i] = sg;
Rusty Russellabcd0832008-11-25 02:35:02 +10308548 for_each_cpu(j, nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07008549 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02008550
Rusty Russell62ea9ce2009-01-11 01:04:16 +01008551 sd = &per_cpu(node_domains, j).sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008552 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008553 }
Eric Dumazet5517d862007-05-08 00:32:57 -07008554 sg->__cpu_power = 0;
Rusty Russell758b2cd2008-11-25 02:35:04 +10308555 cpumask_copy(sched_group_cpus(sg), nodemask);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008556 sg->next = sg;
Rusty Russell96f874e2008-11-25 02:35:14 +10308557 cpumask_or(covered, covered, nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008558 prev = sg;
8559
Mike Travis076ac2a2008-05-12 21:21:12 +02008560 for (j = 0; j < nr_node_ids; j++) {
Mike Travis076ac2a2008-05-12 21:21:12 +02008561 int n = (i + j) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008562
Rusty Russell96f874e2008-11-25 02:35:14 +10308563 cpumask_complement(notcovered, covered);
8564 cpumask_and(tmpmask, notcovered, cpu_map);
8565 cpumask_and(tmpmask, tmpmask, domainspan);
8566 if (cpumask_empty(tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07008567 break;
8568
Mike Travis6ca09df2008-12-31 18:08:45 -08008569 cpumask_and(tmpmask, tmpmask, cpumask_of_node(n));
Rusty Russell96f874e2008-11-25 02:35:14 +10308570 if (cpumask_empty(tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07008571 continue;
8572
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308573 sg = kmalloc_node(sizeof(struct sched_group) +
8574 cpumask_size(),
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07008575 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008576 if (!sg) {
8577 printk(KERN_WARNING
8578 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008579 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008580 }
Eric Dumazet5517d862007-05-08 00:32:57 -07008581 sg->__cpu_power = 0;
Rusty Russell758b2cd2008-11-25 02:35:04 +10308582 cpumask_copy(sched_group_cpus(sg), tmpmask);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008583 sg->next = prev->next;
Rusty Russell96f874e2008-11-25 02:35:14 +10308584 cpumask_or(covered, covered, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008585 prev->next = sg;
8586 prev = sg;
8587 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07008588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008589#endif
8590
8591 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008592#ifdef CONFIG_SCHED_SMT
Rusty Russellabcd0832008-11-25 02:35:02 +10308593 for_each_cpu(i, cpu_map) {
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308594 struct sched_domain *sd = &per_cpu(cpu_domains, i).sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02008595
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008596 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008597 }
8598#endif
8599#ifdef CONFIG_SCHED_MC
Rusty Russellabcd0832008-11-25 02:35:02 +10308600 for_each_cpu(i, cpu_map) {
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308601 struct sched_domain *sd = &per_cpu(core_domains, i).sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02008602
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008603 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008604 }
8605#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008606
Rusty Russellabcd0832008-11-25 02:35:02 +10308607 for_each_cpu(i, cpu_map) {
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308608 struct sched_domain *sd = &per_cpu(phys_domains, i).sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02008609
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008610 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008611 }
8612
John Hawkes9c1cfda2005-09-06 15:18:14 -07008613#ifdef CONFIG_NUMA
Mike Travis076ac2a2008-05-12 21:21:12 +02008614 for (i = 0; i < nr_node_ids; i++)
Siddha, Suresh B08069032006-03-27 01:15:23 -08008615 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008616
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008617 if (sd_allnodes) {
8618 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07008619
Rusty Russell96f874e2008-11-25 02:35:14 +10308620 cpu_to_allnodes_group(cpumask_first(cpu_map), cpu_map, &sg,
Mike Travis7c16ec52008-04-04 18:11:11 -07008621 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07008622 init_numa_sched_groups_power(sg);
8623 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07008624#endif
8625
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626 /* Attach the domains */
Rusty Russellabcd0832008-11-25 02:35:02 +10308627 for_each_cpu(i, cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008628 struct sched_domain *sd;
8629#ifdef CONFIG_SCHED_SMT
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308630 sd = &per_cpu(cpu_domains, i).sd;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008631#elif defined(CONFIG_SCHED_MC)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308632 sd = &per_cpu(core_domains, i).sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008633#else
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308634 sd = &per_cpu(phys_domains, i).sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01008636 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008637 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008638
Rusty Russell3404c8d2008-11-25 02:35:03 +10308639 err = 0;
8640
8641free_tmpmask:
8642 free_cpumask_var(tmpmask);
8643free_send_covered:
8644 free_cpumask_var(send_covered);
8645free_this_core_map:
8646 free_cpumask_var(this_core_map);
8647free_this_sibling_map:
8648 free_cpumask_var(this_sibling_map);
8649free_nodemask:
8650 free_cpumask_var(nodemask);
8651free_notcovered:
8652#ifdef CONFIG_NUMA
8653 free_cpumask_var(notcovered);
8654free_covered:
8655 free_cpumask_var(covered);
8656free_domainspan:
8657 free_cpumask_var(domainspan);
8658out:
8659#endif
8660 return err;
8661
8662free_sched_groups:
8663#ifdef CONFIG_NUMA
8664 kfree(sched_group_nodes);
8665#endif
8666 goto free_tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008667
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07008668#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008669error:
Mike Travis7c16ec52008-04-04 18:11:11 -07008670 free_sched_groups(cpu_map, tmpmask);
Rusty Russellc6c49272008-11-25 02:35:05 +10308671 free_rootdomain(rd);
Rusty Russell3404c8d2008-11-25 02:35:03 +10308672 goto free_tmpmask;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07008673#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008674}
Paul Jackson029190c2007-10-18 23:40:20 -07008675
Rusty Russell96f874e2008-11-25 02:35:14 +10308676static int build_sched_domains(const struct cpumask *cpu_map)
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008677{
8678 return __build_sched_domains(cpu_map, NULL);
8679}
8680
Rusty Russell96f874e2008-11-25 02:35:14 +10308681static struct cpumask *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07008682static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02008683static struct sched_domain_attr *dattr_cur;
8684 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07008685
8686/*
8687 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10308688 * cpumask) fails, then fallback to a single sched domain,
8689 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07008690 */
Rusty Russell42128232008-11-25 02:35:12 +10308691static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07008692
Heiko Carstensee79d1b2008-12-09 18:49:50 +01008693/*
8694 * arch_update_cpu_topology lets virtualized architectures update the
8695 * cpu core maps. It is supposed to return 1 if the topology changed
8696 * or 0 if it stayed the same.
8697 */
8698int __attribute__((weak)) arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01008699{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01008700 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01008701}
8702
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008703/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008704 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07008705 * For now this just excludes isolated cpus, but could be used to
8706 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008707 */
Rusty Russell96f874e2008-11-25 02:35:14 +10308708static int arch_init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008709{
Milton Miller73785472007-10-24 18:23:48 +02008710 int err;
8711
Heiko Carstens22e52b02008-03-12 18:31:59 +01008712 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07008713 ndoms_cur = 1;
Rusty Russell96f874e2008-11-25 02:35:14 +10308714 doms_cur = kmalloc(cpumask_size(), GFP_KERNEL);
Paul Jackson029190c2007-10-18 23:40:20 -07008715 if (!doms_cur)
Rusty Russell42128232008-11-25 02:35:12 +10308716 doms_cur = fallback_doms;
Rusty Russelldcc30a32008-11-25 02:35:12 +10308717 cpumask_andnot(doms_cur, cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008718 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02008719 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02008720 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02008721
8722 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008723}
8724
Rusty Russell96f874e2008-11-25 02:35:14 +10308725static void arch_destroy_sched_domains(const struct cpumask *cpu_map,
8726 struct cpumask *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008727{
Mike Travis7c16ec52008-04-04 18:11:11 -07008728 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008729}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008730
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008731/*
8732 * Detach sched domains from a group of cpus specified in cpu_map
8733 * These cpus will now be attached to the NULL domain
8734 */
Rusty Russell96f874e2008-11-25 02:35:14 +10308735static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008736{
Rusty Russell96f874e2008-11-25 02:35:14 +10308737 /* Save because hotplug lock held. */
8738 static DECLARE_BITMAP(tmpmask, CONFIG_NR_CPUS);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008739 int i;
8740
Rusty Russellabcd0832008-11-25 02:35:02 +10308741 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01008742 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008743 synchronize_sched();
Rusty Russell96f874e2008-11-25 02:35:14 +10308744 arch_destroy_sched_domains(cpu_map, to_cpumask(tmpmask));
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008745}
8746
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008747/* handle null as "default" */
8748static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
8749 struct sched_domain_attr *new, int idx_new)
8750{
8751 struct sched_domain_attr tmp;
8752
8753 /* fast path */
8754 if (!new && !cur)
8755 return 1;
8756
8757 tmp = SD_ATTR_INIT;
8758 return !memcmp(cur ? (cur + idx_cur) : &tmp,
8759 new ? (new + idx_new) : &tmp,
8760 sizeof(struct sched_domain_attr));
8761}
8762
Paul Jackson029190c2007-10-18 23:40:20 -07008763/*
8764 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008765 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07008766 * doms_new[] to the current sched domain partitioning, doms_cur[].
8767 * It destroys each deleted domain and builds each new domain.
8768 *
Rusty Russell96f874e2008-11-25 02:35:14 +10308769 * 'doms_new' is an array of cpumask's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008770 * The masks don't intersect (don't overlap.) We should setup one
8771 * sched domain for each mask. CPUs not in any of the cpumasks will
8772 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07008773 * current 'doms_cur' domains and in the new 'doms_new', we can leave
8774 * it as it is.
8775 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008776 * The passed in 'doms_new' should be kmalloc'd. This routine takes
8777 * ownership of it and will kfree it when done with it. If the caller
Li Zefan700018e2008-11-18 14:02:03 +08008778 * failed the kmalloc call, then it can pass in doms_new == NULL &&
8779 * ndoms_new == 1, and partition_sched_domains() will fallback to
8780 * the single partition 'fallback_doms', it also forces the domains
8781 * to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07008782 *
Rusty Russell96f874e2008-11-25 02:35:14 +10308783 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08008784 * ndoms_new == 0 is a special case for destroying existing domains,
8785 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008786 *
Paul Jackson029190c2007-10-18 23:40:20 -07008787 * Call with hotplug lock held
8788 */
Rusty Russell96f874e2008-11-25 02:35:14 +10308789/* FIXME: Change to struct cpumask *doms_new[] */
8790void partition_sched_domains(int ndoms_new, struct cpumask *doms_new,
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008791 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07008792{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008793 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01008794 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07008795
Heiko Carstens712555e2008-04-28 11:33:07 +02008796 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01008797
Milton Miller73785472007-10-24 18:23:48 +02008798 /* always unregister in case we don't destroy any domains */
8799 unregister_sched_domain_sysctl();
8800
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01008801 /* Let architecture update cpu core mappings. */
8802 new_topology = arch_update_cpu_topology();
8803
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008804 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07008805
8806 /* Destroy deleted domains */
8807 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01008808 for (j = 0; j < n && !new_topology; j++) {
Rusty Russell96f874e2008-11-25 02:35:14 +10308809 if (cpumask_equal(&doms_cur[i], &doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008810 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07008811 goto match1;
8812 }
8813 /* no match - a current sched domain not in new doms_new[] */
8814 detach_destroy_domains(doms_cur + i);
8815match1:
8816 ;
8817 }
8818
Max Krasnyanskye761b772008-07-15 04:43:49 -07008819 if (doms_new == NULL) {
8820 ndoms_cur = 0;
Rusty Russell42128232008-11-25 02:35:12 +10308821 doms_new = fallback_doms;
Rusty Russelldcc30a32008-11-25 02:35:12 +10308822 cpumask_andnot(&doms_new[0], cpu_online_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08008823 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07008824 }
8825
Paul Jackson029190c2007-10-18 23:40:20 -07008826 /* Build new domains */
8827 for (i = 0; i < ndoms_new; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01008828 for (j = 0; j < ndoms_cur && !new_topology; j++) {
Rusty Russell96f874e2008-11-25 02:35:14 +10308829 if (cpumask_equal(&doms_new[i], &doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008830 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07008831 goto match2;
8832 }
8833 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008834 __build_sched_domains(doms_new + i,
8835 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07008836match2:
8837 ;
8838 }
8839
8840 /* Remember the new sched domains */
Rusty Russell42128232008-11-25 02:35:12 +10308841 if (doms_cur != fallback_doms)
Paul Jackson029190c2007-10-18 23:40:20 -07008842 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008843 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07008844 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008845 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07008846 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02008847
8848 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01008849
Heiko Carstens712555e2008-04-28 11:33:07 +02008850 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07008851}
8852
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008853#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Li Zefanc70f22d2009-01-05 19:07:50 +08008854static void arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008855{
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008856 get_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008857
8858 /* Destroy domains first to force the rebuild */
8859 partition_sched_domains(0, NULL, NULL);
8860
Max Krasnyanskye761b772008-07-15 04:43:49 -07008861 rebuild_sched_domains();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008862 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008863}
8864
8865static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
8866{
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308867 unsigned int level = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008868
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308869 if (sscanf(buf, "%u", &level) != 1)
8870 return -EINVAL;
8871
8872 /*
8873 * level is always be positive so don't check for
8874 * level < POWERSAVINGS_BALANCE_NONE which is 0
8875 * What happens on 0 or 1 byte write,
8876 * need to check for count as well?
8877 */
8878
8879 if (level >= MAX_POWERSAVINGS_BALANCE_LEVELS)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008880 return -EINVAL;
8881
8882 if (smt)
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308883 sched_smt_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008884 else
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308885 sched_mc_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008886
Li Zefanc70f22d2009-01-05 19:07:50 +08008887 arch_reinit_sched_domains();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008888
Li Zefanc70f22d2009-01-05 19:07:50 +08008889 return count;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008890}
8891
Adrian Bunk6707de002007-08-12 18:08:19 +02008892#ifdef CONFIG_SCHED_MC
Andi Kleenf718cd42008-07-29 22:33:52 -07008893static ssize_t sched_mc_power_savings_show(struct sysdev_class *class,
8894 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02008895{
8896 return sprintf(page, "%u\n", sched_mc_power_savings);
8897}
Andi Kleenf718cd42008-07-29 22:33:52 -07008898static ssize_t sched_mc_power_savings_store(struct sysdev_class *class,
Adrian Bunk6707de002007-08-12 18:08:19 +02008899 const char *buf, size_t count)
8900{
8901 return sched_power_savings_store(buf, count, 0);
8902}
Andi Kleenf718cd42008-07-29 22:33:52 -07008903static SYSDEV_CLASS_ATTR(sched_mc_power_savings, 0644,
8904 sched_mc_power_savings_show,
8905 sched_mc_power_savings_store);
Adrian Bunk6707de002007-08-12 18:08:19 +02008906#endif
8907
8908#ifdef CONFIG_SCHED_SMT
Andi Kleenf718cd42008-07-29 22:33:52 -07008909static ssize_t sched_smt_power_savings_show(struct sysdev_class *dev,
8910 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02008911{
8912 return sprintf(page, "%u\n", sched_smt_power_savings);
8913}
Andi Kleenf718cd42008-07-29 22:33:52 -07008914static ssize_t sched_smt_power_savings_store(struct sysdev_class *dev,
Adrian Bunk6707de002007-08-12 18:08:19 +02008915 const char *buf, size_t count)
8916{
8917 return sched_power_savings_store(buf, count, 1);
8918}
Andi Kleenf718cd42008-07-29 22:33:52 -07008919static SYSDEV_CLASS_ATTR(sched_smt_power_savings, 0644,
8920 sched_smt_power_savings_show,
Adrian Bunk6707de002007-08-12 18:08:19 +02008921 sched_smt_power_savings_store);
8922#endif
8923
Li Zefan39aac642009-01-05 19:18:02 +08008924int __init sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008925{
8926 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07008927
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008928#ifdef CONFIG_SCHED_SMT
8929 if (smt_capable())
8930 err = sysfs_create_file(&cls->kset.kobj,
8931 &attr_sched_smt_power_savings.attr);
8932#endif
8933#ifdef CONFIG_SCHED_MC
8934 if (!err && mc_capable())
8935 err = sysfs_create_file(&cls->kset.kobj,
8936 &attr_sched_mc_power_savings.attr);
8937#endif
8938 return err;
8939}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008940#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008941
Max Krasnyanskye761b772008-07-15 04:43:49 -07008942#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07008943/*
Max Krasnyanskye761b772008-07-15 04:43:49 -07008944 * Add online and remove offline CPUs from the scheduler domains.
8945 * When cpusets are enabled they take over this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008946 */
8947static int update_sched_domains(struct notifier_block *nfb,
8948 unsigned long action, void *hcpu)
8949{
Max Krasnyanskye761b772008-07-15 04:43:49 -07008950 switch (action) {
8951 case CPU_ONLINE:
8952 case CPU_ONLINE_FROZEN:
8953 case CPU_DEAD:
8954 case CPU_DEAD_FROZEN:
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008955 partition_sched_domains(1, NULL, NULL);
Max Krasnyanskye761b772008-07-15 04:43:49 -07008956 return NOTIFY_OK;
8957
8958 default:
8959 return NOTIFY_DONE;
8960 }
8961}
8962#endif
8963
8964static int update_runtime(struct notifier_block *nfb,
8965 unsigned long action, void *hcpu)
8966{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02008967 int cpu = (int)(long)hcpu;
8968
Linus Torvalds1da177e2005-04-16 15:20:36 -07008969 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008970 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008971 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02008972 disable_runtime(cpu_rq(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008973 return NOTIFY_OK;
8974
Linus Torvalds1da177e2005-04-16 15:20:36 -07008975 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008976 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07008977 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008978 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02008979 enable_runtime(cpu_rq(cpu));
Max Krasnyanskye761b772008-07-15 04:43:49 -07008980 return NOTIFY_OK;
8981
Linus Torvalds1da177e2005-04-16 15:20:36 -07008982 default:
8983 return NOTIFY_DONE;
8984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008985}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008986
8987void __init sched_init_smp(void)
8988{
Rusty Russelldcc30a32008-11-25 02:35:12 +10308989 cpumask_var_t non_isolated_cpus;
8990
8991 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07008992
Mike Travis434d53b2008-04-04 18:11:04 -07008993#if defined(CONFIG_NUMA)
8994 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
8995 GFP_KERNEL);
8996 BUG_ON(sched_group_nodes_bycpu == NULL);
8997#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008998 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02008999 mutex_lock(&sched_domains_mutex);
Rusty Russelldcc30a32008-11-25 02:35:12 +10309000 arch_init_sched_domains(cpu_online_mask);
9001 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
9002 if (cpumask_empty(non_isolated_cpus))
9003 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02009004 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01009005 put_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07009006
9007#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07009008 /* XXX: Theoretical race here - CPU may be hotplugged now */
9009 hotcpu_notifier(update_sched_domains, 0);
Max Krasnyanskye761b772008-07-15 04:43:49 -07009010#endif
9011
9012 /* RT runtime code needs to handle some hotplug events */
9013 hotcpu_notifier(update_runtime, 0);
9014
Peter Zijlstrab328ca12008-04-29 10:02:46 +02009015 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07009016
9017 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10309018 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07009019 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01009020 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10309021 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10309022
9023 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Rusty Russell0e3900e2008-11-25 02:35:13 +10309024 init_sched_rt_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009025}
9026#else
9027void __init sched_init_smp(void)
9028{
Ingo Molnar19978ca2007-11-09 22:39:38 +01009029 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009030}
9031#endif /* CONFIG_SMP */
9032
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +05309033const_debug unsigned int sysctl_timer_migration = 1;
9034
Linus Torvalds1da177e2005-04-16 15:20:36 -07009035int in_sched_functions(unsigned long addr)
9036{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009037 return in_lock_functions(addr) ||
9038 (addr >= (unsigned long)__sched_text_start
9039 && addr < (unsigned long)__sched_text_end);
9040}
9041
Alexey Dobriyana9957442007-10-15 17:00:13 +02009042static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02009043{
9044 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02009045 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02009046#ifdef CONFIG_FAIR_GROUP_SCHED
9047 cfs_rq->rq = rq;
9048#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02009049 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02009050}
9051
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009052static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
9053{
9054 struct rt_prio_array *array;
9055 int i;
9056
9057 array = &rt_rq->active;
9058 for (i = 0; i < MAX_RT_PRIO; i++) {
9059 INIT_LIST_HEAD(array->queue + i);
9060 __clear_bit(i, array->bitmap);
9061 }
9062 /* delimiter for bitsearch: */
9063 __set_bit(MAX_RT_PRIO, array->bitmap);
9064
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009065#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -05009066 rt_rq->highest_prio.curr = MAX_RT_PRIO;
Gregory Haskins398a1532009-01-14 09:10:04 -05009067#ifdef CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -05009068 rt_rq->highest_prio.next = MAX_RT_PRIO;
Peter Zijlstra48d5e252008-01-25 21:08:31 +01009069#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009070#endif
9071#ifdef CONFIG_SMP
9072 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009073 rt_rq->overloaded = 0;
Gregory Haskins917b6272008-12-29 09:39:53 -05009074 plist_head_init(&rq->rt.pushable_tasks, &rq->lock);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009075#endif
9076
9077 rt_rq->rt_time = 0;
9078 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009079 rt_rq->rt_runtime = 0;
9080 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009081
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009082#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01009083 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009084 rt_rq->rq = rq;
9085#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009086}
9087
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009088#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009089static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
9090 struct sched_entity *se, int cpu, int add,
9091 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009092{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009093 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009094 tg->cfs_rq[cpu] = cfs_rq;
9095 init_cfs_rq(cfs_rq, rq);
9096 cfs_rq->tg = tg;
9097 if (add)
9098 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
9099
9100 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02009101 /* se could be NULL for init_task_group */
9102 if (!se)
9103 return;
9104
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009105 if (!parent)
9106 se->cfs_rq = &rq->cfs;
9107 else
9108 se->cfs_rq = parent->my_q;
9109
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009110 se->my_q = cfs_rq;
9111 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02009112 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009113 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009114}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009115#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009116
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009117#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009118static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
9119 struct sched_rt_entity *rt_se, int cpu, int add,
9120 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009121{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009122 struct rq *rq = cpu_rq(cpu);
9123
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009124 tg->rt_rq[cpu] = rt_rq;
9125 init_rt_rq(rt_rq, rq);
9126 rt_rq->tg = tg;
9127 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009128 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009129 if (add)
9130 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
9131
9132 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02009133 if (!rt_se)
9134 return;
9135
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009136 if (!parent)
9137 rt_se->rt_rq = &rq->rt;
9138 else
9139 rt_se->rt_rq = parent->my_q;
9140
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009141 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009142 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009143 INIT_LIST_HEAD(&rt_se->run_list);
9144}
9145#endif
9146
Linus Torvalds1da177e2005-04-16 15:20:36 -07009147void __init sched_init(void)
9148{
Ingo Molnardd41f592007-07-09 18:51:59 +02009149 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07009150 unsigned long alloc_size = 0, ptr;
9151
9152#ifdef CONFIG_FAIR_GROUP_SCHED
9153 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
9154#endif
9155#ifdef CONFIG_RT_GROUP_SCHED
9156 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
9157#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009158#ifdef CONFIG_USER_SCHED
9159 alloc_size *= 2;
9160#endif
Rusty Russelldf7c8e82009-03-19 15:22:20 +10309161#ifdef CONFIG_CPUMASK_OFFSTACK
Rusty Russell8c083f02009-03-19 15:22:20 +10309162 alloc_size += num_possible_cpus() * cpumask_size();
Rusty Russelldf7c8e82009-03-19 15:22:20 +10309163#endif
Mike Travis434d53b2008-04-04 18:11:04 -07009164 /*
9165 * As sched_init() is called before page_alloc is setup,
9166 * we use alloc_bootmem().
9167 */
9168 if (alloc_size) {
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03009169 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
Mike Travis434d53b2008-04-04 18:11:04 -07009170
9171#ifdef CONFIG_FAIR_GROUP_SCHED
9172 init_task_group.se = (struct sched_entity **)ptr;
9173 ptr += nr_cpu_ids * sizeof(void **);
9174
9175 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
9176 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009177
9178#ifdef CONFIG_USER_SCHED
9179 root_task_group.se = (struct sched_entity **)ptr;
9180 ptr += nr_cpu_ids * sizeof(void **);
9181
9182 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
9183 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009184#endif /* CONFIG_USER_SCHED */
9185#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07009186#ifdef CONFIG_RT_GROUP_SCHED
9187 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
9188 ptr += nr_cpu_ids * sizeof(void **);
9189
9190 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009191 ptr += nr_cpu_ids * sizeof(void **);
9192
9193#ifdef CONFIG_USER_SCHED
9194 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
9195 ptr += nr_cpu_ids * sizeof(void **);
9196
9197 root_task_group.rt_rq = (struct rt_rq **)ptr;
9198 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009199#endif /* CONFIG_USER_SCHED */
9200#endif /* CONFIG_RT_GROUP_SCHED */
Rusty Russelldf7c8e82009-03-19 15:22:20 +10309201#ifdef CONFIG_CPUMASK_OFFSTACK
9202 for_each_possible_cpu(i) {
9203 per_cpu(load_balance_tmpmask, i) = (void *)ptr;
9204 ptr += cpumask_size();
9205 }
9206#endif /* CONFIG_CPUMASK_OFFSTACK */
Mike Travis434d53b2008-04-04 18:11:04 -07009207 }
Ingo Molnardd41f592007-07-09 18:51:59 +02009208
Gregory Haskins57d885f2008-01-25 21:08:18 +01009209#ifdef CONFIG_SMP
9210 init_defrootdomain();
9211#endif
9212
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009213 init_rt_bandwidth(&def_rt_bandwidth,
9214 global_rt_period(), global_rt_runtime());
9215
9216#ifdef CONFIG_RT_GROUP_SCHED
9217 init_rt_bandwidth(&init_task_group.rt_bandwidth,
9218 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009219#ifdef CONFIG_USER_SCHED
9220 init_rt_bandwidth(&root_task_group.rt_bandwidth,
9221 global_rt_period(), RUNTIME_INF);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009222#endif /* CONFIG_USER_SCHED */
9223#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009224
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009225#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009226 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02009227 INIT_LIST_HEAD(&init_task_group.children);
9228
9229#ifdef CONFIG_USER_SCHED
9230 INIT_LIST_HEAD(&root_task_group.children);
9231 init_task_group.parent = &root_task_group;
9232 list_add(&init_task_group.siblings, &root_task_group.children);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009233#endif /* CONFIG_USER_SCHED */
9234#endif /* CONFIG_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009235
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08009236 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07009237 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009238
9239 rq = cpu_rq(i);
9240 spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07009241 rq->nr_running = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02009242 rq->calc_load_active = 0;
9243 rq->calc_load_update = jiffies + LOAD_FREQ;
Ingo Molnardd41f592007-07-09 18:51:59 +02009244 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009245 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009246#ifdef CONFIG_FAIR_GROUP_SCHED
9247 init_task_group.shares = init_task_group_load;
9248 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009249#ifdef CONFIG_CGROUP_SCHED
9250 /*
9251 * How much cpu bandwidth does init_task_group get?
9252 *
9253 * In case of task-groups formed thr' the cgroup filesystem, it
9254 * gets 100% of the cpu resources in the system. This overall
9255 * system cpu resource is divided among the tasks of
9256 * init_task_group and its child task-groups in a fair manner,
9257 * based on each entity's (task or task-group's) weight
9258 * (se->load.weight).
9259 *
9260 * In other words, if init_task_group has 10 tasks of weight
9261 * 1024) and two child groups A0 and A1 (of weight 1024 each),
9262 * then A0's share of the cpu resource is:
9263 *
Ingo Molnar0d905bc2009-05-04 19:13:30 +02009264 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
Dhaval Giani354d60c2008-04-19 19:44:59 +02009265 *
9266 * We achieve this by letting init_task_group's tasks sit
9267 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
9268 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009269 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009270#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009271 root_task_group.shares = NICE_0_LOAD;
9272 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009273 /*
9274 * In case of task-groups formed thr' the user id of tasks,
9275 * init_task_group represents tasks belonging to root user.
9276 * Hence it forms a sibling of all subsequent groups formed.
9277 * In this case, init_task_group gets only a fraction of overall
9278 * system cpu resource, based on the weight assigned to root
9279 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
9280 * by letting tasks of init_task_group sit in a separate cfs_rq
9281 * (init_cfs_rq) and having one entity represent this group of
9282 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
9283 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009284 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009285 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009286 &per_cpu(init_sched_entity, i), i, 1,
9287 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009288
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009289#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02009290#endif /* CONFIG_FAIR_GROUP_SCHED */
9291
9292 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009293#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009294 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009295#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009296 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009297#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009298 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009299 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009300 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009301 &per_cpu(init_sched_rt_entity, i), i, 1,
9302 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009303#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009304#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07009305
Ingo Molnardd41f592007-07-09 18:51:59 +02009306 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
9307 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009308#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07009309 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01009310 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009311 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02009312 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009313 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07009314 rq->cpu = i;
Gregory Haskins1f11eb62008-06-04 15:04:05 -04009315 rq->online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009316 rq->migration_thread = NULL;
9317 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01009318 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009319#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01009320 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009321 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009322 }
9323
Peter Williams2dd73a42006-06-27 02:54:34 -07009324 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07009325
Avi Kivitye107be32007-07-26 13:40:43 +02009326#ifdef CONFIG_PREEMPT_NOTIFIERS
9327 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
9328#endif
9329
Christoph Lameterc9819f42006-12-10 02:20:25 -08009330#ifdef CONFIG_SMP
Carlos R. Mafra962cf362008-05-15 11:15:37 -03009331 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
Christoph Lameterc9819f42006-12-10 02:20:25 -08009332#endif
9333
Heiko Carstensb50f60c2006-07-30 03:03:52 -07009334#ifdef CONFIG_RT_MUTEXES
9335 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
9336#endif
9337
Linus Torvalds1da177e2005-04-16 15:20:36 -07009338 /*
9339 * The boot idle thread does lazy MMU switching as well:
9340 */
9341 atomic_inc(&init_mm.mm_count);
9342 enter_lazy_tlb(&init_mm, current);
9343
9344 /*
9345 * Make us the idle thread. Technically, schedule() should not be
9346 * called from this thread, however somewhere below it might be,
9347 * but because we are the idle thread, we just pick up running again
9348 * when this runqueue becomes "idle".
9349 */
9350 init_idle(current, smp_processor_id());
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02009351
9352 calc_load_update = jiffies + LOAD_FREQ;
9353
Ingo Molnardd41f592007-07-09 18:51:59 +02009354 /*
9355 * During early bootup we pretend to be a normal task:
9356 */
9357 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01009358
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10309359 /* Allocate the nohz_cpu_mask if CONFIG_CPUMASK_OFFSTACK */
Pekka Enberg4bdddf82009-06-11 08:35:27 +03009360 alloc_cpumask_var(&nohz_cpu_mask, GFP_NOWAIT);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10309361#ifdef CONFIG_SMP
Rusty Russell7d1e6a92008-11-25 02:35:09 +10309362#ifdef CONFIG_NO_HZ
Pekka Enberg4bdddf82009-06-11 08:35:27 +03009363 alloc_cpumask_var(&nohz.cpu_mask, GFP_NOWAIT);
9364 alloc_cpumask_var(&nohz.ilb_grp_nohz_mask, GFP_NOWAIT);
Rusty Russell7d1e6a92008-11-25 02:35:09 +10309365#endif
Pekka Enberg4bdddf82009-06-11 08:35:27 +03009366 alloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10309367#endif /* SMP */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10309368
Ingo Molnar0d905bc2009-05-04 19:13:30 +02009369 perf_counter_init();
9370
Ingo Molnar6892b752008-02-13 14:02:36 +01009371 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009372}
9373
9374#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
9375void __might_sleep(char *file, int line)
9376{
Ingo Molnar48f24c42006-07-03 00:25:40 -07009377#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07009378 static unsigned long prev_jiffy; /* ratelimiting */
9379
Ingo Molnaraef745f2008-08-28 11:34:43 +02009380 if ((!in_atomic() && !irqs_disabled()) ||
9381 system_state != SYSTEM_RUNNING || oops_in_progress)
9382 return;
9383 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
9384 return;
9385 prev_jiffy = jiffies;
9386
9387 printk(KERN_ERR
9388 "BUG: sleeping function called from invalid context at %s:%d\n",
9389 file, line);
9390 printk(KERN_ERR
9391 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
9392 in_atomic(), irqs_disabled(),
9393 current->pid, current->comm);
9394
9395 debug_show_held_locks(current);
9396 if (irqs_disabled())
9397 print_irqtrace_events(current);
9398 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009399#endif
9400}
9401EXPORT_SYMBOL(__might_sleep);
9402#endif
9403
9404#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02009405static void normalize_task(struct rq *rq, struct task_struct *p)
9406{
9407 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02009408
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02009409 update_rq_clock(rq);
9410 on_rq = p->se.on_rq;
9411 if (on_rq)
9412 deactivate_task(rq, p, 0);
9413 __setscheduler(rq, p, SCHED_NORMAL, 0);
9414 if (on_rq) {
9415 activate_task(rq, p, 0);
9416 resched_task(rq->curr);
9417 }
9418}
9419
Linus Torvalds1da177e2005-04-16 15:20:36 -07009420void normalize_rt_tasks(void)
9421{
Ingo Molnara0f98a12007-06-17 18:37:45 +02009422 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009423 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07009424 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009425
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01009426 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02009427 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02009428 /*
9429 * Only normalize user tasks:
9430 */
9431 if (!p->mm)
9432 continue;
9433
Ingo Molnardd41f592007-07-09 18:51:59 +02009434 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02009435#ifdef CONFIG_SCHEDSTATS
9436 p->se.wait_start = 0;
9437 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02009438 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02009439#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02009440
9441 if (!rt_task(p)) {
9442 /*
9443 * Renice negative nice level userspace
9444 * tasks back to 0:
9445 */
9446 if (TASK_NICE(p) < 0 && p->mm)
9447 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009448 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02009449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009450
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01009451 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07009452 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009453
Ingo Molnar178be792007-10-15 17:00:18 +02009454 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02009455
Ingo Molnarb29739f2006-06-27 02:54:51 -07009456 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01009457 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02009458 } while_each_thread(g, p);
9459
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01009460 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009461}
9462
9463#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07009464
9465#ifdef CONFIG_IA64
9466/*
9467 * These functions are only useful for the IA64 MCA handling.
9468 *
9469 * They can only be called when the whole system has been
9470 * stopped - every CPU needs to be quiescent, and no scheduling
9471 * activity can take place. Using them for anything else would
9472 * be a serious bug, and as a result, they aren't even visible
9473 * under any other configuration.
9474 */
9475
9476/**
9477 * curr_task - return the current task for a given cpu.
9478 * @cpu: the processor in question.
9479 *
9480 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
9481 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07009482struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07009483{
9484 return cpu_curr(cpu);
9485}
9486
9487/**
9488 * set_curr_task - set the current task for a given cpu.
9489 * @cpu: the processor in question.
9490 * @p: the task pointer to set.
9491 *
9492 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009493 * are serviced on a separate stack. It allows the architecture to switch the
9494 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07009495 * must be called with all CPU's synchronized, and interrupts disabled, the
9496 * and caller must save the original value of the current task (see
9497 * curr_task() above) and restore that value before reenabling interrupts and
9498 * re-starting the system.
9499 *
9500 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
9501 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07009502void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07009503{
9504 cpu_curr(cpu) = p;
9505}
9506
9507#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009508
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009509#ifdef CONFIG_FAIR_GROUP_SCHED
9510static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009511{
9512 int i;
9513
9514 for_each_possible_cpu(i) {
9515 if (tg->cfs_rq)
9516 kfree(tg->cfs_rq[i]);
9517 if (tg->se)
9518 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009519 }
9520
9521 kfree(tg->cfs_rq);
9522 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009523}
9524
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009525static
9526int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009527{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009528 struct cfs_rq *cfs_rq;
Li Zefaneab17222008-10-29 17:03:22 +08009529 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009530 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009531 int i;
9532
Mike Travis434d53b2008-04-04 18:11:04 -07009533 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009534 if (!tg->cfs_rq)
9535 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07009536 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009537 if (!tg->se)
9538 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009539
9540 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009541
9542 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009543 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009544
Li Zefaneab17222008-10-29 17:03:22 +08009545 cfs_rq = kzalloc_node(sizeof(struct cfs_rq),
9546 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009547 if (!cfs_rq)
9548 goto err;
9549
Li Zefaneab17222008-10-29 17:03:22 +08009550 se = kzalloc_node(sizeof(struct sched_entity),
9551 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009552 if (!se)
9553 goto err;
9554
Li Zefaneab17222008-10-29 17:03:22 +08009555 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent->se[i]);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009556 }
9557
9558 return 1;
9559
9560 err:
9561 return 0;
9562}
9563
9564static inline void register_fair_sched_group(struct task_group *tg, int cpu)
9565{
9566 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
9567 &cpu_rq(cpu)->leaf_cfs_rq_list);
9568}
9569
9570static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
9571{
9572 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
9573}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009574#else /* !CONFG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009575static inline void free_fair_sched_group(struct task_group *tg)
9576{
9577}
9578
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009579static inline
9580int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009581{
9582 return 1;
9583}
9584
9585static inline void register_fair_sched_group(struct task_group *tg, int cpu)
9586{
9587}
9588
9589static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
9590{
9591}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009592#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009593
9594#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009595static void free_rt_sched_group(struct task_group *tg)
9596{
9597 int i;
9598
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009599 destroy_rt_bandwidth(&tg->rt_bandwidth);
9600
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009601 for_each_possible_cpu(i) {
9602 if (tg->rt_rq)
9603 kfree(tg->rt_rq[i]);
9604 if (tg->rt_se)
9605 kfree(tg->rt_se[i]);
9606 }
9607
9608 kfree(tg->rt_rq);
9609 kfree(tg->rt_se);
9610}
9611
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009612static
9613int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009614{
9615 struct rt_rq *rt_rq;
Li Zefaneab17222008-10-29 17:03:22 +08009616 struct sched_rt_entity *rt_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009617 struct rq *rq;
9618 int i;
9619
Mike Travis434d53b2008-04-04 18:11:04 -07009620 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009621 if (!tg->rt_rq)
9622 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07009623 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009624 if (!tg->rt_se)
9625 goto err;
9626
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009627 init_rt_bandwidth(&tg->rt_bandwidth,
9628 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009629
9630 for_each_possible_cpu(i) {
9631 rq = cpu_rq(i);
9632
Li Zefaneab17222008-10-29 17:03:22 +08009633 rt_rq = kzalloc_node(sizeof(struct rt_rq),
9634 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009635 if (!rt_rq)
9636 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009637
Li Zefaneab17222008-10-29 17:03:22 +08009638 rt_se = kzalloc_node(sizeof(struct sched_rt_entity),
9639 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009640 if (!rt_se)
9641 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009642
Li Zefaneab17222008-10-29 17:03:22 +08009643 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent->rt_se[i]);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009644 }
9645
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009646 return 1;
9647
9648 err:
9649 return 0;
9650}
9651
9652static inline void register_rt_sched_group(struct task_group *tg, int cpu)
9653{
9654 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
9655 &cpu_rq(cpu)->leaf_rt_rq_list);
9656}
9657
9658static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
9659{
9660 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
9661}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009662#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009663static inline void free_rt_sched_group(struct task_group *tg)
9664{
9665}
9666
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009667static inline
9668int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009669{
9670 return 1;
9671}
9672
9673static inline void register_rt_sched_group(struct task_group *tg, int cpu)
9674{
9675}
9676
9677static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
9678{
9679}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009680#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009681
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009682#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009683static void free_sched_group(struct task_group *tg)
9684{
9685 free_fair_sched_group(tg);
9686 free_rt_sched_group(tg);
9687 kfree(tg);
9688}
9689
9690/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009691struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009692{
9693 struct task_group *tg;
9694 unsigned long flags;
9695 int i;
9696
9697 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
9698 if (!tg)
9699 return ERR_PTR(-ENOMEM);
9700
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009701 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009702 goto err;
9703
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009704 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009705 goto err;
9706
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009707 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009708 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009709 register_fair_sched_group(tg, i);
9710 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009711 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009712 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02009713
9714 WARN_ON(!parent); /* root should already exist */
9715
9716 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02009717 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08009718 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009719 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009720
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009721 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009722
9723err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009724 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009725 return ERR_PTR(-ENOMEM);
9726}
9727
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009728/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009729static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009730{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009731 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009732 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009733}
9734
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009735/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02009736void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009737{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009738 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009739 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009740
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009741 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009742 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009743 unregister_fair_sched_group(tg, i);
9744 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009745 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009746 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02009747 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009748 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009749
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009750 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009751 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009752}
9753
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009754/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02009755 * The caller of this function should have put the task in its new group
9756 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
9757 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009758 */
9759void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009760{
9761 int on_rq, running;
9762 unsigned long flags;
9763 struct rq *rq;
9764
9765 rq = task_rq_lock(tsk, &flags);
9766
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009767 update_rq_clock(rq);
9768
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01009769 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009770 on_rq = tsk->se.on_rq;
9771
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07009772 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009773 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07009774 if (unlikely(running))
9775 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009776
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009777 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009778
Peter Zijlstra810b3812008-02-29 15:21:01 -05009779#ifdef CONFIG_FAIR_GROUP_SCHED
9780 if (tsk->sched_class->moved_group)
9781 tsk->sched_class->moved_group(tsk);
9782#endif
9783
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07009784 if (unlikely(running))
9785 tsk->sched_class->set_curr_task(rq);
9786 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02009787 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009788
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009789 task_rq_unlock(rq, &flags);
9790}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009791#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009792
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009793#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009794static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009795{
9796 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009797 int on_rq;
9798
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009799 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01009800 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009801 dequeue_entity(cfs_rq, se, 0);
9802
9803 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02009804 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009805
Peter Zijlstra62fb1852008-02-25 17:34:02 +01009806 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009807 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009808}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01009809
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009810static void set_se_shares(struct sched_entity *se, unsigned long shares)
9811{
9812 struct cfs_rq *cfs_rq = se->cfs_rq;
9813 struct rq *rq = cfs_rq->rq;
9814 unsigned long flags;
9815
9816 spin_lock_irqsave(&rq->lock, flags);
9817 __set_se_shares(se, shares);
9818 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009819}
9820
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009821static DEFINE_MUTEX(shares_mutex);
9822
Ingo Molnar4cf86d72007-10-15 17:00:14 +02009823int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009824{
9825 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009826 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01009827
Peter Zijlstra62fb1852008-02-25 17:34:02 +01009828 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009829 * We can't change the weight of the root cgroup.
9830 */
9831 if (!tg->se[0])
9832 return -EINVAL;
9833
Peter Zijlstra18d95a22008-04-19 19:45:00 +02009834 if (shares < MIN_SHARES)
9835 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08009836 else if (shares > MAX_SHARES)
9837 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01009838
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009839 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009840 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02009841 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009842
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009843 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009844 for_each_possible_cpu(i)
9845 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02009846 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009847 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01009848
9849 /* wait for any ongoing reference to this group to finish */
9850 synchronize_sched();
9851
9852 /*
9853 * Now we are free to modify the group's share on each cpu
9854 * w/o tripping rebalance_share or load_balance_fair.
9855 */
9856 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009857 for_each_possible_cpu(i) {
9858 /*
9859 * force a rebalance
9860 */
9861 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08009862 set_se_shares(tg->se[i], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009863 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01009864
9865 /*
9866 * Enable load balance activity on this group, by inserting it back on
9867 * each cpu's rq->leaf_cfs_rq_list.
9868 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009869 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009870 for_each_possible_cpu(i)
9871 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02009872 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009873 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02009874done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009875 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009876 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009877}
9878
Dhaval Giani5cb350b2007-10-15 17:00:14 +02009879unsigned long sched_group_shares(struct task_group *tg)
9880{
9881 return tg->shares;
9882}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009883#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02009884
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009885#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009886/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009887 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009888 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009889static DEFINE_MUTEX(rt_constraints_mutex);
9890
9891static unsigned long to_ratio(u64 period, u64 runtime)
9892{
9893 if (runtime == RUNTIME_INF)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009894 return 1ULL << 20;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009895
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009896 return div64_u64(runtime << 20, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009897}
9898
Dhaval Giani521f1a242008-02-28 15:21:56 +05309899/* Must be called with tasklist_lock held */
9900static inline int tg_has_rt_tasks(struct task_group *tg)
9901{
9902 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009903
Dhaval Giani521f1a242008-02-28 15:21:56 +05309904 do_each_thread(g, p) {
9905 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
9906 return 1;
9907 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009908
Dhaval Giani521f1a242008-02-28 15:21:56 +05309909 return 0;
9910}
9911
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009912struct rt_schedulable_data {
9913 struct task_group *tg;
9914 u64 rt_period;
9915 u64 rt_runtime;
9916};
9917
9918static int tg_schedulable(struct task_group *tg, void *data)
9919{
9920 struct rt_schedulable_data *d = data;
9921 struct task_group *child;
9922 unsigned long total, sum = 0;
9923 u64 period, runtime;
9924
9925 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
9926 runtime = tg->rt_bandwidth.rt_runtime;
9927
9928 if (tg == d->tg) {
9929 period = d->rt_period;
9930 runtime = d->rt_runtime;
9931 }
9932
Peter Zijlstra98a48262009-01-14 10:56:32 +01009933#ifdef CONFIG_USER_SCHED
9934 if (tg == &root_task_group) {
9935 period = global_rt_period();
9936 runtime = global_rt_runtime();
9937 }
9938#endif
9939
Peter Zijlstra4653f802008-09-23 15:33:44 +02009940 /*
9941 * Cannot have more runtime than the period.
9942 */
9943 if (runtime > period && runtime != RUNTIME_INF)
9944 return -EINVAL;
9945
9946 /*
9947 * Ensure we don't starve existing RT tasks.
9948 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009949 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
9950 return -EBUSY;
9951
9952 total = to_ratio(period, runtime);
9953
Peter Zijlstra4653f802008-09-23 15:33:44 +02009954 /*
9955 * Nobody can have more than the global setting allows.
9956 */
9957 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
9958 return -EINVAL;
9959
9960 /*
9961 * The sum of our children's runtime should not exceed our own.
9962 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009963 list_for_each_entry_rcu(child, &tg->children, siblings) {
9964 period = ktime_to_ns(child->rt_bandwidth.rt_period);
9965 runtime = child->rt_bandwidth.rt_runtime;
9966
9967 if (child == d->tg) {
9968 period = d->rt_period;
9969 runtime = d->rt_runtime;
9970 }
9971
9972 sum += to_ratio(period, runtime);
9973 }
9974
9975 if (sum > total)
9976 return -EINVAL;
9977
9978 return 0;
9979}
9980
9981static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
9982{
9983 struct rt_schedulable_data data = {
9984 .tg = tg,
9985 .rt_period = period,
9986 .rt_runtime = runtime,
9987 };
9988
9989 return walk_tg_tree(tg_schedulable, tg_nop, &data);
9990}
9991
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009992static int tg_set_bandwidth(struct task_group *tg,
9993 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009994{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009995 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009996
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009997 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05309998 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009999 err = __rt_schedulable(tg, rt_period, rt_runtime);
10000 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +053010001 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +020010002
10003 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010004 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
10005 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +020010006
10007 for_each_possible_cpu(i) {
10008 struct rt_rq *rt_rq = tg->rt_rq[i];
10009
10010 spin_lock(&rt_rq->rt_runtime_lock);
10011 rt_rq->rt_runtime = rt_runtime;
10012 spin_unlock(&rt_rq->rt_runtime_lock);
10013 }
10014 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010015 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +053010016 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010017 mutex_unlock(&rt_constraints_mutex);
10018
10019 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010020}
10021
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010022int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
10023{
10024 u64 rt_runtime, rt_period;
10025
10026 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
10027 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
10028 if (rt_runtime_us < 0)
10029 rt_runtime = RUNTIME_INF;
10030
10031 return tg_set_bandwidth(tg, rt_period, rt_runtime);
10032}
10033
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010034long sched_group_rt_runtime(struct task_group *tg)
10035{
10036 u64 rt_runtime_us;
10037
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010038 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010039 return -1;
10040
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010041 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010042 do_div(rt_runtime_us, NSEC_PER_USEC);
10043 return rt_runtime_us;
10044}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010045
10046int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
10047{
10048 u64 rt_runtime, rt_period;
10049
10050 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
10051 rt_runtime = tg->rt_bandwidth.rt_runtime;
10052
Raistlin619b0482008-06-26 18:54:09 +020010053 if (rt_period == 0)
10054 return -EINVAL;
10055
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010056 return tg_set_bandwidth(tg, rt_period, rt_runtime);
10057}
10058
10059long sched_group_rt_period(struct task_group *tg)
10060{
10061 u64 rt_period_us;
10062
10063 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
10064 do_div(rt_period_us, NSEC_PER_USEC);
10065 return rt_period_us;
10066}
10067
10068static int sched_rt_global_constraints(void)
10069{
Peter Zijlstra4653f802008-09-23 15:33:44 +020010070 u64 runtime, period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010071 int ret = 0;
10072
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -070010073 if (sysctl_sched_rt_period <= 0)
10074 return -EINVAL;
10075
Peter Zijlstra4653f802008-09-23 15:33:44 +020010076 runtime = global_rt_runtime();
10077 period = global_rt_period();
10078
10079 /*
10080 * Sanity check on the sysctl variables.
10081 */
10082 if (runtime > period && runtime != RUNTIME_INF)
10083 return -EINVAL;
Peter Zijlstra10b612f2008-06-19 14:22:27 +020010084
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010085 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010086 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +020010087 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010088 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010089 mutex_unlock(&rt_constraints_mutex);
10090
10091 return ret;
10092}
Dhaval Giani54e99122009-02-27 15:13:54 +053010093
10094int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
10095{
10096 /* Don't accept realtime tasks when there is no way for them to run */
10097 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
10098 return 0;
10099
10100 return 1;
10101}
10102
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +020010103#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010104static int sched_rt_global_constraints(void)
10105{
Peter Zijlstraac086bc2008-04-19 19:44:58 +020010106 unsigned long flags;
10107 int i;
10108
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -070010109 if (sysctl_sched_rt_period <= 0)
10110 return -EINVAL;
10111
Peter Zijlstra60aa6052009-05-05 17:50:21 +020010112 /*
10113 * There's always some RT tasks in the root group
10114 * -- migration, kstopmachine etc..
10115 */
10116 if (sysctl_sched_rt_runtime == 0)
10117 return -EBUSY;
10118
Peter Zijlstraac086bc2008-04-19 19:44:58 +020010119 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
10120 for_each_possible_cpu(i) {
10121 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
10122
10123 spin_lock(&rt_rq->rt_runtime_lock);
10124 rt_rq->rt_runtime = global_rt_runtime();
10125 spin_unlock(&rt_rq->rt_runtime_lock);
10126 }
10127 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
10128
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010129 return 0;
10130}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +020010131#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010132
10133int sched_rt_handler(struct ctl_table *table, int write,
10134 struct file *filp, void __user *buffer, size_t *lenp,
10135 loff_t *ppos)
10136{
10137 int ret;
10138 int old_period, old_runtime;
10139 static DEFINE_MUTEX(mutex);
10140
10141 mutex_lock(&mutex);
10142 old_period = sysctl_sched_rt_period;
10143 old_runtime = sysctl_sched_rt_runtime;
10144
10145 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
10146
10147 if (!ret && write) {
10148 ret = sched_rt_global_constraints();
10149 if (ret) {
10150 sysctl_sched_rt_period = old_period;
10151 sysctl_sched_rt_runtime = old_runtime;
10152 } else {
10153 def_rt_bandwidth.rt_runtime = global_rt_runtime();
10154 def_rt_bandwidth.rt_period =
10155 ns_to_ktime(global_rt_period());
10156 }
10157 }
10158 mutex_unlock(&mutex);
10159
10160 return ret;
10161}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010162
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010163#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010164
10165/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +020010166static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010167{
Paul Menage2b01dfe2007-10-24 18:23:50 +020010168 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
10169 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010170}
10171
10172static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +020010173cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010174{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +020010175 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010176
Paul Menage2b01dfe2007-10-24 18:23:50 +020010177 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010178 /* This is early initialization for the top cgroup */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010179 return &init_task_group.css;
10180 }
10181
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +020010182 parent = cgroup_tg(cgrp->parent);
10183 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010184 if (IS_ERR(tg))
10185 return ERR_PTR(-ENOMEM);
10186
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010187 return &tg->css;
10188}
10189
Ingo Molnar41a2d6c2007-12-05 15:46:09 +010010190static void
10191cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010192{
Paul Menage2b01dfe2007-10-24 18:23:50 +020010193 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010194
10195 sched_destroy_group(tg);
10196}
10197
Ingo Molnar41a2d6c2007-12-05 15:46:09 +010010198static int
10199cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
10200 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010201{
Peter Zijlstrab68aa232008-02-13 15:45:40 +010010202#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Giani54e99122009-02-27 15:13:54 +053010203 if (!sched_rt_can_attach(cgroup_tg(cgrp), tsk))
Peter Zijlstrab68aa232008-02-13 15:45:40 +010010204 return -EINVAL;
10205#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010206 /* We don't support RT-tasks being in separate groups */
10207 if (tsk->sched_class != &fair_sched_class)
10208 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +010010209#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010210
10211 return 0;
10212}
10213
10214static void
Paul Menage2b01dfe2007-10-24 18:23:50 +020010215cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010216 struct cgroup *old_cont, struct task_struct *tsk)
10217{
10218 sched_move_task(tsk);
10219}
10220
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010221#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -070010222static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +020010223 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010224{
Paul Menage2b01dfe2007-10-24 18:23:50 +020010225 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010226}
10227
Paul Menagef4c753b2008-04-29 00:59:56 -070010228static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010229{
Paul Menage2b01dfe2007-10-24 18:23:50 +020010230 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010231
10232 return (u64) tg->shares;
10233}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +020010234#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010235
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010236#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -070010237static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -070010238 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010239{
Paul Menage06ecb272008-04-29 01:00:06 -070010240 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010241}
10242
Paul Menage06ecb272008-04-29 01:00:06 -070010243static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010244{
Paul Menage06ecb272008-04-29 01:00:06 -070010245 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010246}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010247
10248static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
10249 u64 rt_period_us)
10250{
10251 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
10252}
10253
10254static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
10255{
10256 return sched_group_rt_period(cgroup_tg(cgrp));
10257}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +020010258#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010259
Paul Menagefe5c7cc2007-10-29 21:18:11 +010010260static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010261#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +010010262 {
10263 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -070010264 .read_u64 = cpu_shares_read_u64,
10265 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +010010266 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010267#endif
10268#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010269 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010270 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -070010271 .read_s64 = cpu_rt_runtime_read,
10272 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010273 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010274 {
10275 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -070010276 .read_u64 = cpu_rt_period_read_uint,
10277 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010278 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010279#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010280};
10281
10282static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
10283{
Paul Menagefe5c7cc2007-10-29 21:18:11 +010010284 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010285}
10286
10287struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +010010288 .name = "cpu",
10289 .create = cpu_cgroup_create,
10290 .destroy = cpu_cgroup_destroy,
10291 .can_attach = cpu_cgroup_can_attach,
10292 .attach = cpu_cgroup_attach,
10293 .populate = cpu_cgroup_populate,
10294 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010295 .early_init = 1,
10296};
10297
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010298#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010299
10300#ifdef CONFIG_CGROUP_CPUACCT
10301
10302/*
10303 * CPU accounting code for task groups.
10304 *
10305 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
10306 * (balbir@in.ibm.com).
10307 */
10308
Bharata B Rao934352f2008-11-10 20:41:13 +053010309/* track cpu usage of a group of tasks and its child groups */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010310struct cpuacct {
10311 struct cgroup_subsys_state css;
10312 /* cpuusage holds pointer to a u64-type object on every cpu */
10313 u64 *cpuusage;
Bharata B Raoef12fef2009-03-31 10:02:22 +053010314 struct percpu_counter cpustat[CPUACCT_STAT_NSTATS];
Bharata B Rao934352f2008-11-10 20:41:13 +053010315 struct cpuacct *parent;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010316};
10317
10318struct cgroup_subsys cpuacct_subsys;
10319
10320/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +053010321static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010322{
Dhaval Giani32cd7562008-02-29 10:02:43 +053010323 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010324 struct cpuacct, css);
10325}
10326
10327/* return cpu accounting group to which this task belongs */
10328static inline struct cpuacct *task_ca(struct task_struct *tsk)
10329{
10330 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
10331 struct cpuacct, css);
10332}
10333
10334/* create a new cpu accounting group */
10335static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +053010336 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010337{
10338 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
Bharata B Raoef12fef2009-03-31 10:02:22 +053010339 int i;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010340
10341 if (!ca)
Bharata B Raoef12fef2009-03-31 10:02:22 +053010342 goto out;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010343
10344 ca->cpuusage = alloc_percpu(u64);
Bharata B Raoef12fef2009-03-31 10:02:22 +053010345 if (!ca->cpuusage)
10346 goto out_free_ca;
10347
10348 for (i = 0; i < CPUACCT_STAT_NSTATS; i++)
10349 if (percpu_counter_init(&ca->cpustat[i], 0))
10350 goto out_free_counters;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010351
Bharata B Rao934352f2008-11-10 20:41:13 +053010352 if (cgrp->parent)
10353 ca->parent = cgroup_ca(cgrp->parent);
10354
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010355 return &ca->css;
Bharata B Raoef12fef2009-03-31 10:02:22 +053010356
10357out_free_counters:
10358 while (--i >= 0)
10359 percpu_counter_destroy(&ca->cpustat[i]);
10360 free_percpu(ca->cpuusage);
10361out_free_ca:
10362 kfree(ca);
10363out:
10364 return ERR_PTR(-ENOMEM);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010365}
10366
10367/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +010010368static void
Dhaval Giani32cd7562008-02-29 10:02:43 +053010369cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010370{
Dhaval Giani32cd7562008-02-29 10:02:43 +053010371 struct cpuacct *ca = cgroup_ca(cgrp);
Bharata B Raoef12fef2009-03-31 10:02:22 +053010372 int i;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010373
Bharata B Raoef12fef2009-03-31 10:02:22 +053010374 for (i = 0; i < CPUACCT_STAT_NSTATS; i++)
10375 percpu_counter_destroy(&ca->cpustat[i]);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010376 free_percpu(ca->cpuusage);
10377 kfree(ca);
10378}
10379
Ken Chen720f5492008-12-15 22:02:01 -080010380static u64 cpuacct_cpuusage_read(struct cpuacct *ca, int cpu)
10381{
Rusty Russellb36128c2009-02-20 16:29:08 +090010382 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Ken Chen720f5492008-12-15 22:02:01 -080010383 u64 data;
10384
10385#ifndef CONFIG_64BIT
10386 /*
10387 * Take rq->lock to make 64-bit read safe on 32-bit platforms.
10388 */
10389 spin_lock_irq(&cpu_rq(cpu)->lock);
10390 data = *cpuusage;
10391 spin_unlock_irq(&cpu_rq(cpu)->lock);
10392#else
10393 data = *cpuusage;
10394#endif
10395
10396 return data;
10397}
10398
10399static void cpuacct_cpuusage_write(struct cpuacct *ca, int cpu, u64 val)
10400{
Rusty Russellb36128c2009-02-20 16:29:08 +090010401 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Ken Chen720f5492008-12-15 22:02:01 -080010402
10403#ifndef CONFIG_64BIT
10404 /*
10405 * Take rq->lock to make 64-bit write safe on 32-bit platforms.
10406 */
10407 spin_lock_irq(&cpu_rq(cpu)->lock);
10408 *cpuusage = val;
10409 spin_unlock_irq(&cpu_rq(cpu)->lock);
10410#else
10411 *cpuusage = val;
10412#endif
10413}
10414
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010415/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +053010416static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010417{
Dhaval Giani32cd7562008-02-29 10:02:43 +053010418 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010419 u64 totalcpuusage = 0;
10420 int i;
10421
Ken Chen720f5492008-12-15 22:02:01 -080010422 for_each_present_cpu(i)
10423 totalcpuusage += cpuacct_cpuusage_read(ca, i);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010424
10425 return totalcpuusage;
10426}
10427
Dhaval Giani0297b802008-02-29 10:02:44 +053010428static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
10429 u64 reset)
10430{
10431 struct cpuacct *ca = cgroup_ca(cgrp);
10432 int err = 0;
10433 int i;
10434
10435 if (reset) {
10436 err = -EINVAL;
10437 goto out;
10438 }
10439
Ken Chen720f5492008-12-15 22:02:01 -080010440 for_each_present_cpu(i)
10441 cpuacct_cpuusage_write(ca, i, 0);
Dhaval Giani0297b802008-02-29 10:02:44 +053010442
Dhaval Giani0297b802008-02-29 10:02:44 +053010443out:
10444 return err;
10445}
10446
Ken Chene9515c32008-12-15 22:04:15 -080010447static int cpuacct_percpu_seq_read(struct cgroup *cgroup, struct cftype *cft,
10448 struct seq_file *m)
10449{
10450 struct cpuacct *ca = cgroup_ca(cgroup);
10451 u64 percpu;
10452 int i;
10453
10454 for_each_present_cpu(i) {
10455 percpu = cpuacct_cpuusage_read(ca, i);
10456 seq_printf(m, "%llu ", (unsigned long long) percpu);
10457 }
10458 seq_printf(m, "\n");
10459 return 0;
10460}
10461
Bharata B Raoef12fef2009-03-31 10:02:22 +053010462static const char *cpuacct_stat_desc[] = {
10463 [CPUACCT_STAT_USER] = "user",
10464 [CPUACCT_STAT_SYSTEM] = "system",
10465};
10466
10467static int cpuacct_stats_show(struct cgroup *cgrp, struct cftype *cft,
10468 struct cgroup_map_cb *cb)
10469{
10470 struct cpuacct *ca = cgroup_ca(cgrp);
10471 int i;
10472
10473 for (i = 0; i < CPUACCT_STAT_NSTATS; i++) {
10474 s64 val = percpu_counter_read(&ca->cpustat[i]);
10475 val = cputime64_to_clock_t(val);
10476 cb->fill(cb, cpuacct_stat_desc[i], val);
10477 }
10478 return 0;
10479}
10480
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010481static struct cftype files[] = {
10482 {
10483 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -070010484 .read_u64 = cpuusage_read,
10485 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010486 },
Ken Chene9515c32008-12-15 22:04:15 -080010487 {
10488 .name = "usage_percpu",
10489 .read_seq_string = cpuacct_percpu_seq_read,
10490 },
Bharata B Raoef12fef2009-03-31 10:02:22 +053010491 {
10492 .name = "stat",
10493 .read_map = cpuacct_stats_show,
10494 },
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010495};
10496
Dhaval Giani32cd7562008-02-29 10:02:43 +053010497static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010498{
Dhaval Giani32cd7562008-02-29 10:02:43 +053010499 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010500}
10501
10502/*
10503 * charge this task's execution time to its accounting group.
10504 *
10505 * called with rq->lock held.
10506 */
10507static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
10508{
10509 struct cpuacct *ca;
Bharata B Rao934352f2008-11-10 20:41:13 +053010510 int cpu;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010511
Li Zefanc40c6f82009-02-26 15:40:15 +080010512 if (unlikely(!cpuacct_subsys.active))
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010513 return;
10514
Bharata B Rao934352f2008-11-10 20:41:13 +053010515 cpu = task_cpu(tsk);
Bharata B Raoa18b83b2009-03-23 10:02:53 +053010516
10517 rcu_read_lock();
10518
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010519 ca = task_ca(tsk);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010520
Bharata B Rao934352f2008-11-10 20:41:13 +053010521 for (; ca; ca = ca->parent) {
Rusty Russellb36128c2009-02-20 16:29:08 +090010522 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010523 *cpuusage += cputime;
10524 }
Bharata B Raoa18b83b2009-03-23 10:02:53 +053010525
10526 rcu_read_unlock();
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010527}
10528
Bharata B Raoef12fef2009-03-31 10:02:22 +053010529/*
10530 * Charge the system/user time to the task's accounting group.
10531 */
10532static void cpuacct_update_stats(struct task_struct *tsk,
10533 enum cpuacct_stat_index idx, cputime_t val)
10534{
10535 struct cpuacct *ca;
10536
10537 if (unlikely(!cpuacct_subsys.active))
10538 return;
10539
10540 rcu_read_lock();
10541 ca = task_ca(tsk);
10542
10543 do {
10544 percpu_counter_add(&ca->cpustat[idx], val);
10545 ca = ca->parent;
10546 } while (ca);
10547 rcu_read_unlock();
10548}
10549
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010550struct cgroup_subsys cpuacct_subsys = {
10551 .name = "cpuacct",
10552 .create = cpuacct_create,
10553 .destroy = cpuacct_destroy,
10554 .populate = cpuacct_populate,
10555 .subsys_id = cpuacct_subsys_id,
10556};
10557#endif /* CONFIG_CGROUP_CPUACCT */