blob: b537853468503cbf7bce77715665c7ce54fc6622 [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>
Ingo Molnardff06c12007-07-09 18:52:00 +020067#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020068#include <linux/pagemap.h>
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010069#include <linux/hrtimer.h>
Reynes Philippe30914a52008-03-17 16:19:05 -070070#include <linux/tick.h>
Peter Zijlstraf00b45c2008-04-19 19:45:00 +020071#include <linux/debugfs.h>
72#include <linux/ctype.h>
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +020073#include <linux/ftrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Eric Dumazet5517d862007-05-08 00:32:57 -070075#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020076#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Gregory Haskins6e0534f2008-05-12 21:21:01 +020078#include "sched_cpupri.h"
79
Steven Rostedta8d154b2009-04-10 09:36:00 -040080#define CREATE_TRACE_POINTS
Steven Rostedtad8d75f2009-04-14 19:39:12 -040081#include <trace/events/sched.h>
Steven Rostedta8d154b2009-04-10 09:36:00 -040082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/*
84 * Convert user-nice values [ -20 ... 0 ... 19 ]
85 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
86 * and back.
87 */
88#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
89#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
90#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
91
92/*
93 * 'User priority' is the nice value converted to something we
94 * can work with better when scaling various scheduler parameters,
95 * it's a [ 0 ... 39 ] range.
96 */
97#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
98#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
99#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
100
101/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100102 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100104#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200106#define NICE_0_LOAD SCHED_LOAD_SCALE
107#define NICE_0_SHIFT SCHED_LOAD_SHIFT
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * These are the 'tuning knobs' of the scheduler:
111 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200112 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * Timeslices get refilled after they expire.
114 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700116
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200117/*
118 * single value that denotes runtime == period, ie unlimited time.
119 */
120#define RUNTIME_INF ((u64)~0ULL)
121
Steven Noonanfd2ab302009-01-11 01:04:22 -0800122static void double_rq_lock(struct rq *rq1, struct rq *rq2);
123
Ingo Molnare05606d2007-07-09 18:51:59 +0200124static inline int rt_policy(int policy)
125{
Roel Kluin3f33a7c2008-05-13 23:44:11 +0200126 if (unlikely(policy == SCHED_FIFO || policy == SCHED_RR))
Ingo Molnare05606d2007-07-09 18:51:59 +0200127 return 1;
128 return 0;
129}
130
131static inline int task_has_rt_policy(struct task_struct *p)
132{
133 return rt_policy(p->policy);
134}
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200137 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200139struct rt_prio_array {
140 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
141 struct list_head queue[MAX_RT_PRIO];
142};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200144struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100145 /* nests inside the rq lock: */
146 spinlock_t rt_runtime_lock;
147 ktime_t rt_period;
148 u64 rt_runtime;
149 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200150};
151
152static struct rt_bandwidth def_rt_bandwidth;
153
154static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
155
156static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
157{
158 struct rt_bandwidth *rt_b =
159 container_of(timer, struct rt_bandwidth, rt_period_timer);
160 ktime_t now;
161 int overrun;
162 int idle = 0;
163
164 for (;;) {
165 now = hrtimer_cb_get_time(timer);
166 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
167
168 if (!overrun)
169 break;
170
171 idle = do_sched_rt_period_timer(rt_b, overrun);
172 }
173
174 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
175}
176
177static
178void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
179{
180 rt_b->rt_period = ns_to_ktime(period);
181 rt_b->rt_runtime = runtime;
182
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200183 spin_lock_init(&rt_b->rt_runtime_lock);
184
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200185 hrtimer_init(&rt_b->rt_period_timer,
186 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
187 rt_b->rt_period_timer.function = sched_rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200188}
189
Krzysztof Heltc8bfff62008-09-05 23:46:19 +0200190static inline int rt_bandwidth_enabled(void)
191{
192 return sysctl_sched_rt_runtime >= 0;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200193}
194
195static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
196{
197 ktime_t now;
198
Hiroshi Shimamotocac64d02009-02-25 09:59:26 -0800199 if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200200 return;
201
202 if (hrtimer_active(&rt_b->rt_period_timer))
203 return;
204
205 spin_lock(&rt_b->rt_runtime_lock);
206 for (;;) {
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100207 unsigned long delta;
208 ktime_t soft, hard;
209
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200210 if (hrtimer_active(&rt_b->rt_period_timer))
211 break;
212
213 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
214 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100215
216 soft = hrtimer_get_softexpires(&rt_b->rt_period_timer);
217 hard = hrtimer_get_expires(&rt_b->rt_period_timer);
218 delta = ktime_to_ns(ktime_sub(hard, soft));
219 __hrtimer_start_range_ns(&rt_b->rt_period_timer, soft, delta,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +0530220 HRTIMER_MODE_ABS_PINNED, 0);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200221 }
222 spin_unlock(&rt_b->rt_runtime_lock);
223}
224
225#ifdef CONFIG_RT_GROUP_SCHED
226static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
227{
228 hrtimer_cancel(&rt_b->rt_period_timer);
229}
230#endif
231
Heiko Carstens712555e2008-04-28 11:33:07 +0200232/*
233 * sched_domains_mutex serializes calls to arch_init_sched_domains,
234 * detach_destroy_domains and partition_sched_domains.
235 */
236static DEFINE_MUTEX(sched_domains_mutex);
237
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100238#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200239
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700240#include <linux/cgroup.h>
241
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200242struct cfs_rq;
243
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100244static LIST_HEAD(task_groups);
245
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200246/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200247struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100248#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700249 struct cgroup_subsys_state css;
250#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100251
Arun R Bharadwaj6c415b92008-12-01 20:49:05 +0530252#ifdef CONFIG_USER_SCHED
253 uid_t uid;
254#endif
255
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100256#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200257 /* schedulable entities of this group on each cpu */
258 struct sched_entity **se;
259 /* runqueue "owned" by this group on each cpu */
260 struct cfs_rq **cfs_rq;
261 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100262#endif
263
264#ifdef CONFIG_RT_GROUP_SCHED
265 struct sched_rt_entity **rt_se;
266 struct rt_rq **rt_rq;
267
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200268 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100269#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100270
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100271 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100272 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200273
274 struct task_group *parent;
275 struct list_head siblings;
276 struct list_head children;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200277};
278
Dhaval Giani354d60c2008-04-19 19:44:59 +0200279#ifdef CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200280
Arun R Bharadwaj6c415b92008-12-01 20:49:05 +0530281/* Helper function to pass uid information to create_sched_user() */
282void set_tg_uid(struct user_struct *user)
283{
284 user->tg->uid = user->uid;
285}
286
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200287/*
288 * Root task group.
Anirban Sinha84e9dab2009-08-28 22:40:43 -0700289 * Every UID task group (including init_task_group aka UID-0) will
290 * be a child to this group.
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200291 */
292struct task_group root_task_group;
293
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100294#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200295/* Default task group's sched entity on each cpu */
296static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
297/* Default task group's cfs_rq on each cpu */
Anirban Sinha84e9dab2009-08-28 22:40:43 -0700298static DEFINE_PER_CPU(struct cfs_rq, init_tg_cfs_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200299#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100300
301#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100302static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
303static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200304#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +0200305#else /* !CONFIG_USER_SCHED */
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200306#define root_task_group init_task_group
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +0200307#endif /* CONFIG_USER_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100308
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100309/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100310 * a task group's cpu shares.
311 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100312static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100313
Peter Zijlstra57310a92009-03-09 13:56:21 +0100314#ifdef CONFIG_SMP
315static int root_task_group_empty(void)
316{
317 return list_empty(&root_task_group.children);
318}
319#endif
320
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100321#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100322#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100323# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200324#else /* !CONFIG_USER_SCHED */
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100325# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200326#endif /* CONFIG_USER_SCHED */
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200327
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800328/*
Lai Jiangshan2e084782008-06-12 16:42:58 +0800329 * A weight of 0 or 1 can cause arithmetics problems.
330 * A weight of a cfs_rq is the sum of weights of which entities
331 * are queued on this cfs_rq, so a weight of a entity should not be
332 * too large, so as the shares value of a task group.
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800333 * (The default weight is 1024 - so there's no practical
334 * limitation from this.)
335 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200336#define MIN_SHARES 2
Lai Jiangshan2e084782008-06-12 16:42:58 +0800337#define MAX_SHARES (1UL << 18)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200338
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100339static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100340#endif
341
342/* Default task group.
343 * Every task in system belong to this group at bootup.
344 */
Mike Travis434d53b2008-04-04 18:11:04 -0700345struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200346
347/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200348static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200349{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200350 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200351
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100352#ifdef CONFIG_USER_SCHED
David Howellsc69e8d92008-11-14 10:39:19 +1100353 rcu_read_lock();
354 tg = __task_cred(p)->user->tg;
355 rcu_read_unlock();
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100356#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700357 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
358 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200359#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100360 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200361#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200362 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200363}
364
365/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100366static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200367{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100368#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100369 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
370 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100371#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100372
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100373#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100374 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
375 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100376#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200377}
378
379#else
380
Peter Zijlstra57310a92009-03-09 13:56:21 +0100381#ifdef CONFIG_SMP
382static int root_task_group_empty(void)
383{
384 return 1;
385}
386#endif
387
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100388static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Peter Zijlstra83378262008-06-27 13:41:37 +0200389static inline struct task_group *task_group(struct task_struct *p)
390{
391 return NULL;
392}
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200393
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100394#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200395
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200396/* CFS-related fields in a runqueue */
397struct cfs_rq {
398 struct load_weight load;
399 unsigned long nr_running;
400
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200401 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200402 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200403
404 struct rb_root tasks_timeline;
405 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200406
407 struct list_head tasks;
408 struct list_head *balance_iterator;
409
410 /*
411 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200412 * It is set to NULL otherwise (i.e when none are currently running).
413 */
Peter Zijlstra47932412008-11-04 21:25:09 +0100414 struct sched_entity *curr, *next, *last;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200415
Peter Zijlstra5ac5c4d2008-11-10 10:46:32 +0100416 unsigned int nr_spread_over;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200417
Ingo Molnar62160e32007-10-15 17:00:03 +0200418#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200419 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
420
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100421 /*
422 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200423 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
424 * (like users, containers etc.)
425 *
426 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
427 * list is used during load balance.
428 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100429 struct list_head leaf_cfs_rq_list;
430 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200431
432#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200433 /*
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200434 * the part of load.weight contributed by tasks
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200435 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200436 unsigned long task_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200437
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200438 /*
439 * h_load = weight * f(tg)
440 *
441 * Where f(tg) is the recursive weight fraction assigned to
442 * this group.
443 */
444 unsigned long h_load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200445
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200446 /*
447 * this cpu's part of tg->shares
448 */
449 unsigned long shares;
Peter Zijlstraf1d239f2008-06-27 13:41:38 +0200450
451 /*
452 * load.weight at the time we set shares
453 */
454 unsigned long rq_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200455#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200456#endif
457};
458
459/* Real-Time classes' related field in a runqueue: */
460struct rt_rq {
461 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100462 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100463#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -0500464 struct {
465 int curr; /* highest queued rt task prio */
Gregory Haskins398a1532009-01-14 09:10:04 -0500466#ifdef CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -0500467 int next; /* next highest */
Gregory Haskins398a1532009-01-14 09:10:04 -0500468#endif
Gregory Haskinse864c492008-12-29 09:39:49 -0500469 } highest_prio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100470#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100471#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100472 unsigned long rt_nr_migratory;
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200473 unsigned long rt_nr_total;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100474 int overloaded;
Gregory Haskins917b6272008-12-29 09:39:53 -0500475 struct plist_head pushable_tasks;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100476#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100477 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100478 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200479 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100480 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200481 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100482
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100483#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100484 unsigned long rt_nr_boosted;
485
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100486 struct rq *rq;
487 struct list_head leaf_rt_rq_list;
488 struct task_group *tg;
489 struct sched_rt_entity *rt_se;
490#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200491};
492
Gregory Haskins57d885f2008-01-25 21:08:18 +0100493#ifdef CONFIG_SMP
494
495/*
496 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100497 * variables. Each exclusive cpuset essentially defines an island domain by
498 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100499 * exclusive cpuset is created, we also create and attach a new root-domain
500 * object.
501 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100502 */
503struct root_domain {
504 atomic_t refcount;
Rusty Russellc6c49272008-11-25 02:35:05 +1030505 cpumask_var_t span;
506 cpumask_var_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100507
Ingo Molnar0eab9142008-01-25 21:08:19 +0100508 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100509 * The "RT overload" flag: it gets set if a CPU has more than
510 * one runnable RT task.
511 */
Rusty Russellc6c49272008-11-25 02:35:05 +1030512 cpumask_var_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100513 atomic_t rto_count;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200514#ifdef CONFIG_SMP
515 struct cpupri cpupri;
516#endif
Vaidyanathan Srinivasan7a09b1a2008-12-18 23:26:22 +0530517#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
518 /*
519 * Preferred wake up cpu nominated by sched_mc balance that will be
520 * used when most cpus are idle in the system indicating overall very
521 * low system utilisation. Triggered at POWERSAVINGS_BALANCE_WAKEUP(2)
522 */
523 unsigned int sched_mc_preferred_wakeup_cpu;
524#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +0100525};
526
Gregory Haskinsdc938522008-01-25 21:08:26 +0100527/*
528 * By default the system creates a single root-domain with all cpus as
529 * members (mimicking the global state we have today).
530 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100531static struct root_domain def_root_domain;
532
533#endif
534
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200535/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 * This is the main, per-CPU runqueue data structure.
537 *
538 * Locking rule: those places that want to lock multiple runqueues
539 * (such as the load balancing or the thread migration code), lock
540 * acquire operations must be ordered by ascending &runqueue.
541 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700542struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200543 /* runqueue lock: */
544 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 /*
547 * nr_running and cpu_load should be in the same cacheline because
548 * remote CPUs use both these fields when doing load calculation.
549 */
550 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200551 #define CPU_LOAD_IDX_MAX 5
552 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700553#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200554 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700555 unsigned char in_nohz_recently;
556#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200557 /* capture load from *all* tasks on this cpu: */
558 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200559 unsigned long nr_load_updates;
560 u64 nr_switches;
Paul Mackerras23a185c2009-02-09 22:42:47 +1100561 u64 nr_migrations_in;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200562
563 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100564 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100565
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200566#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200567 /* list of leaf cfs_rq on this cpu: */
568 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100569#endif
570#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100571 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 /*
575 * This is part of a global counter where only the total sum
576 * over all CPUs matters. A task can increase this counter on
577 * one CPU and if it got migrated afterwards it may decrease
578 * it on another CPU. Always updated under the runqueue lock:
579 */
580 unsigned long nr_uninterruptible;
581
Ingo Molnar36c8b582006-07-03 00:25:41 -0700582 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800583 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200585
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200586 u64 clock;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 atomic_t nr_iowait;
589
590#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100591 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 struct sched_domain *sd;
593
Henrik Austada0a522c2009-02-13 20:35:45 +0100594 unsigned char idle_at_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 /* For active balancing */
Gregory Haskins3f029d32009-07-29 11:08:47 -0400596 int post_schedule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 int active_balance;
598 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200599 /* cpu of this runqueue: */
600 int cpu;
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400601 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Peter Zijlstraa8a51d52008-06-27 13:41:26 +0200603 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Ingo Molnar36c8b582006-07-03 00:25:41 -0700605 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 struct list_head migration_queue;
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200607
608 u64 rt_avg;
609 u64 age_stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610#endif
611
Thomas Gleixnerdce48a82009-04-11 10:43:41 +0200612 /* calc_load related fields */
613 unsigned long calc_load_update;
614 long calc_load_active;
615
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100616#ifdef CONFIG_SCHED_HRTICK
Peter Zijlstra31656512008-07-18 18:01:23 +0200617#ifdef CONFIG_SMP
618 int hrtick_csd_pending;
619 struct call_single_data hrtick_csd;
620#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100621 struct hrtimer hrtick_timer;
622#endif
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624#ifdef CONFIG_SCHEDSTATS
625 /* latency stats */
626 struct sched_info rq_sched_info;
Ken Chen9c2c4802008-12-16 23:41:22 -0800627 unsigned long long rq_cpu_time;
628 /* could above be rq->cfs_rq.exec_clock + rq->rt_rq.rt_runtime ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200631 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200634 unsigned int sched_switch;
635 unsigned int sched_count;
636 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200639 unsigned int ttwu_count;
640 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200641
642 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200643 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644#endif
645};
646
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700647static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Peter Zijlstra15afe092008-09-20 23:38:02 +0200649static inline void check_preempt_curr(struct rq *rq, struct task_struct *p, int sync)
Ingo Molnardd41f592007-07-09 18:51:59 +0200650{
Peter Zijlstra15afe092008-09-20 23:38:02 +0200651 rq->curr->sched_class->check_preempt_curr(rq, p, sync);
Ingo Molnardd41f592007-07-09 18:51:59 +0200652}
653
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700654static inline int cpu_of(struct rq *rq)
655{
656#ifdef CONFIG_SMP
657 return rq->cpu;
658#else
659 return 0;
660#endif
661}
662
Ingo Molnar20d315d2007-07-09 18:51:58 +0200663/*
Nick Piggin674311d2005-06-25 14:57:27 -0700664 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700665 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700666 *
667 * The domain tree of any CPU may only be accessed from within
668 * preempt-disabled sections.
669 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700670#define for_each_domain(cpu, __sd) \
671 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
674#define this_rq() (&__get_cpu_var(runqueues))
675#define task_rq(p) cpu_rq(task_cpu(p))
676#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
Hitoshi Mitake54d35f22009-06-29 14:44:57 +0900677#define raw_rq() (&__raw_get_cpu_var(runqueues))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Ingo Molnaraa9c4c02008-12-17 14:10:57 +0100679inline void update_rq_clock(struct rq *rq)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200680{
681 rq->clock = sched_clock_cpu(cpu_of(rq));
682}
683
Ingo Molnare436d802007-07-19 21:28:35 +0200684/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200685 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
686 */
687#ifdef CONFIG_SCHED_DEBUG
688# define const_debug __read_mostly
689#else
690# define const_debug static const
691#endif
692
Ingo Molnar017730c2008-05-12 21:20:52 +0200693/**
694 * runqueue_is_locked
695 *
696 * Returns true if the current cpu runqueue is locked.
697 * This interface allows printk to be called with the runqueue lock
698 * held and know whether or not it is OK to wake up the klogd.
699 */
700int runqueue_is_locked(void)
701{
702 int cpu = get_cpu();
703 struct rq *rq = cpu_rq(cpu);
704 int ret;
705
706 ret = spin_is_locked(&rq->lock);
707 put_cpu();
708 return ret;
709}
710
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200711/*
712 * Debugging: various feature bits
713 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200714
715#define SCHED_FEAT(name, enabled) \
716 __SCHED_FEAT_##name ,
717
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200718enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200719#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200720};
721
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200722#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200723
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200724#define SCHED_FEAT(name, enabled) \
725 (1UL << __SCHED_FEAT_##name) * enabled |
726
727const_debug unsigned int sysctl_sched_features =
728#include "sched_features.h"
729 0;
730
731#undef SCHED_FEAT
732
733#ifdef CONFIG_SCHED_DEBUG
734#define SCHED_FEAT(name, enabled) \
735 #name ,
736
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700737static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200738#include "sched_features.h"
739 NULL
740};
741
742#undef SCHED_FEAT
743
Li Zefan34f3a812008-10-30 15:23:32 +0800744static int sched_feat_show(struct seq_file *m, void *v)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200745{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200746 int i;
747
748 for (i = 0; sched_feat_names[i]; i++) {
Li Zefan34f3a812008-10-30 15:23:32 +0800749 if (!(sysctl_sched_features & (1UL << i)))
750 seq_puts(m, "NO_");
751 seq_printf(m, "%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200752 }
Li Zefan34f3a812008-10-30 15:23:32 +0800753 seq_puts(m, "\n");
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200754
Li Zefan34f3a812008-10-30 15:23:32 +0800755 return 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200756}
757
758static ssize_t
759sched_feat_write(struct file *filp, const char __user *ubuf,
760 size_t cnt, loff_t *ppos)
761{
762 char buf[64];
763 char *cmp = buf;
764 int neg = 0;
765 int i;
766
767 if (cnt > 63)
768 cnt = 63;
769
770 if (copy_from_user(&buf, ubuf, cnt))
771 return -EFAULT;
772
773 buf[cnt] = 0;
774
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200775 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200776 neg = 1;
777 cmp += 3;
778 }
779
780 for (i = 0; sched_feat_names[i]; i++) {
781 int len = strlen(sched_feat_names[i]);
782
783 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
784 if (neg)
785 sysctl_sched_features &= ~(1UL << i);
786 else
787 sysctl_sched_features |= (1UL << i);
788 break;
789 }
790 }
791
792 if (!sched_feat_names[i])
793 return -EINVAL;
794
795 filp->f_pos += cnt;
796
797 return cnt;
798}
799
Li Zefan34f3a812008-10-30 15:23:32 +0800800static int sched_feat_open(struct inode *inode, struct file *filp)
801{
802 return single_open(filp, sched_feat_show, NULL);
803}
804
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200805static struct file_operations sched_feat_fops = {
Li Zefan34f3a812008-10-30 15:23:32 +0800806 .open = sched_feat_open,
807 .write = sched_feat_write,
808 .read = seq_read,
809 .llseek = seq_lseek,
810 .release = single_release,
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200811};
812
813static __init int sched_init_debug(void)
814{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200815 debugfs_create_file("sched_features", 0644, NULL, NULL,
816 &sched_feat_fops);
817
818 return 0;
819}
820late_initcall(sched_init_debug);
821
822#endif
823
824#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200825
826/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100827 * Number of tasks to iterate in a single balance run.
828 * Limited because this is done with IRQs disabled.
829 */
830const_debug unsigned int sysctl_sched_nr_migrate = 32;
831
832/*
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200833 * ratelimit for updating the group shares.
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200834 * default: 0.25ms
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200835 */
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200836unsigned int sysctl_sched_shares_ratelimit = 250000;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200837
838/*
Peter Zijlstraffda12a2008-10-17 19:27:02 +0200839 * Inject some fuzzyness into changing the per-cpu group shares
840 * this avoids remote rq-locks at the expense of fairness.
841 * default: 4
842 */
843unsigned int sysctl_sched_shares_thresh = 4;
844
845/*
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200846 * period over which we average the RT time consumption, measured
847 * in ms.
848 *
849 * default: 1s
850 */
851const_debug unsigned int sysctl_sched_time_avg = MSEC_PER_SEC;
852
853/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100854 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100855 * default: 1s
856 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100857unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100858
Ingo Molnar6892b752008-02-13 14:02:36 +0100859static __read_mostly int scheduler_running;
860
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100861/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100862 * part of the period that we allow rt tasks to run in us.
863 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100864 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100865int sysctl_sched_rt_runtime = 950000;
866
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200867static inline u64 global_rt_period(void)
868{
869 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
870}
871
872static inline u64 global_rt_runtime(void)
873{
roel kluine26873b2008-07-22 16:51:15 -0400874 if (sysctl_sched_rt_runtime < 0)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200875 return RUNTIME_INF;
876
877 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
878}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700881# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700883#ifndef finish_arch_switch
884# define finish_arch_switch(prev) do { } while (0)
885#endif
886
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100887static inline int task_current(struct rq *rq, struct task_struct *p)
888{
889 return rq->curr == p;
890}
891
Nick Piggin4866cde2005-06-25 14:57:23 -0700892#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700893static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700894{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100895 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700896}
897
Ingo Molnar70b97a72006-07-03 00:25:42 -0700898static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700899{
900}
901
Ingo Molnar70b97a72006-07-03 00:25:42 -0700902static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700903{
Ingo Molnarda04c032005-09-13 11:17:59 +0200904#ifdef CONFIG_DEBUG_SPINLOCK
905 /* this is a valid case when another task releases the spinlock */
906 rq->lock.owner = current;
907#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700908 /*
909 * If we are tracking spinlock dependencies then we have to
910 * fix up the runqueue lock - which gets 'carried over' from
911 * prev into current:
912 */
913 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
914
Nick Piggin4866cde2005-06-25 14:57:23 -0700915 spin_unlock_irq(&rq->lock);
916}
917
918#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700919static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700920{
921#ifdef CONFIG_SMP
922 return p->oncpu;
923#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100924 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700925#endif
926}
927
Ingo Molnar70b97a72006-07-03 00:25:42 -0700928static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700929{
930#ifdef CONFIG_SMP
931 /*
932 * We can optimise this out completely for !SMP, because the
933 * SMP rebalancing from interrupt is the only thing that cares
934 * here.
935 */
936 next->oncpu = 1;
937#endif
938#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
939 spin_unlock_irq(&rq->lock);
940#else
941 spin_unlock(&rq->lock);
942#endif
943}
944
Ingo Molnar70b97a72006-07-03 00:25:42 -0700945static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700946{
947#ifdef CONFIG_SMP
948 /*
949 * After ->oncpu is cleared, the task can be moved to a different CPU.
950 * We must ensure this doesn't happen until the switch is completely
951 * finished.
952 */
953 smp_wmb();
954 prev->oncpu = 0;
955#endif
956#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
957 local_irq_enable();
958#endif
959}
960#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700963 * __task_rq_lock - lock the runqueue a given task resides on.
964 * Must be called interrupts disabled.
965 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700966static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700967 __acquires(rq->lock)
968{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200969 for (;;) {
970 struct rq *rq = task_rq(p);
971 spin_lock(&rq->lock);
972 if (likely(rq == task_rq(p)))
973 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700974 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700975 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700976}
977
978/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100980 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 * explicitly disabling preemption.
982 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700983static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 __acquires(rq->lock)
985{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700986 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Andi Kleen3a5c3592007-10-15 17:00:14 +0200988 for (;;) {
989 local_irq_save(*flags);
990 rq = task_rq(p);
991 spin_lock(&rq->lock);
992 if (likely(rq == task_rq(p)))
993 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
Oleg Nesterovad474ca2008-11-10 15:39:30 +0100998void task_rq_unlock_wait(struct task_struct *p)
999{
1000 struct rq *rq = task_rq(p);
1001
1002 smp_mb(); /* spin-unlock-wait is not a full memory barrier */
1003 spin_unlock_wait(&rq->lock);
1004}
1005
Alexey Dobriyana9957442007-10-15 17:00:13 +02001006static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001007 __releases(rq->lock)
1008{
1009 spin_unlock(&rq->lock);
1010}
1011
Ingo Molnar70b97a72006-07-03 00:25:42 -07001012static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 __releases(rq->lock)
1014{
1015 spin_unlock_irqrestore(&rq->lock, *flags);
1016}
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -08001019 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001021static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 __acquires(rq->lock)
1023{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001024 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 local_irq_disable();
1027 rq = this_rq();
1028 spin_lock(&rq->lock);
1029
1030 return rq;
1031}
1032
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001033#ifdef CONFIG_SCHED_HRTICK
1034/*
1035 * Use HR-timers to deliver accurate preemption points.
1036 *
1037 * Its all a bit involved since we cannot program an hrt while holding the
1038 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1039 * reschedule event.
1040 *
1041 * When we get rescheduled we reprogram the hrtick_timer outside of the
1042 * rq->lock.
1043 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001044
1045/*
1046 * Use hrtick when:
1047 * - enabled by features
1048 * - hrtimer is actually high res
1049 */
1050static inline int hrtick_enabled(struct rq *rq)
1051{
1052 if (!sched_feat(HRTICK))
1053 return 0;
Ingo Molnarba420592008-07-20 11:02:06 +02001054 if (!cpu_active(cpu_of(rq)))
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001055 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001056 return hrtimer_is_hres_active(&rq->hrtick_timer);
1057}
1058
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001059static void hrtick_clear(struct rq *rq)
1060{
1061 if (hrtimer_active(&rq->hrtick_timer))
1062 hrtimer_cancel(&rq->hrtick_timer);
1063}
1064
1065/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001066 * High-resolution timer tick.
1067 * Runs from hardirq context with interrupts disabled.
1068 */
1069static enum hrtimer_restart hrtick(struct hrtimer *timer)
1070{
1071 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1072
1073 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1074
1075 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001076 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001077 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1078 spin_unlock(&rq->lock);
1079
1080 return HRTIMER_NORESTART;
1081}
1082
Rabin Vincent95e904c2008-05-11 05:55:33 +05301083#ifdef CONFIG_SMP
Peter Zijlstra31656512008-07-18 18:01:23 +02001084/*
1085 * called from hardirq (IPI) context
1086 */
1087static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001088{
Peter Zijlstra31656512008-07-18 18:01:23 +02001089 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001090
Peter Zijlstra31656512008-07-18 18:01:23 +02001091 spin_lock(&rq->lock);
1092 hrtimer_restart(&rq->hrtick_timer);
1093 rq->hrtick_csd_pending = 0;
1094 spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001095}
1096
Peter Zijlstra31656512008-07-18 18:01:23 +02001097/*
1098 * Called to set the hrtick timer state.
1099 *
1100 * called with rq->lock held and irqs disabled
1101 */
1102static void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001103{
Peter Zijlstra31656512008-07-18 18:01:23 +02001104 struct hrtimer *timer = &rq->hrtick_timer;
1105 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001106
Arjan van de Vencc584b22008-09-01 15:02:30 -07001107 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +02001108
1109 if (rq == this_rq()) {
1110 hrtimer_restart(timer);
1111 } else if (!rq->hrtick_csd_pending) {
Peter Zijlstra6e275632009-02-25 13:59:48 +01001112 __smp_call_function_single(cpu_of(rq), &rq->hrtick_csd, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +02001113 rq->hrtick_csd_pending = 1;
1114 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001115}
1116
1117static int
1118hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1119{
1120 int cpu = (int)(long)hcpu;
1121
1122 switch (action) {
1123 case CPU_UP_CANCELED:
1124 case CPU_UP_CANCELED_FROZEN:
1125 case CPU_DOWN_PREPARE:
1126 case CPU_DOWN_PREPARE_FROZEN:
1127 case CPU_DEAD:
1128 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +02001129 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001130 return NOTIFY_OK;
1131 }
1132
1133 return NOTIFY_DONE;
1134}
1135
Rakib Mullickfa748202008-09-22 14:55:45 -07001136static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001137{
1138 hotcpu_notifier(hotplug_hrtick, 0);
1139}
Peter Zijlstra31656512008-07-18 18:01:23 +02001140#else
1141/*
1142 * Called to set the hrtick timer state.
1143 *
1144 * called with rq->lock held and irqs disabled
1145 */
1146static void hrtick_start(struct rq *rq, u64 delay)
1147{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001148 __hrtimer_start_range_ns(&rq->hrtick_timer, ns_to_ktime(delay), 0,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +05301149 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +02001150}
1151
Andrew Morton006c75f2008-09-22 14:55:46 -07001152static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +02001153{
1154}
Rabin Vincent95e904c2008-05-11 05:55:33 +05301155#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001156
1157static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001158{
Peter Zijlstra31656512008-07-18 18:01:23 +02001159#ifdef CONFIG_SMP
1160 rq->hrtick_csd_pending = 0;
1161
1162 rq->hrtick_csd.flags = 0;
1163 rq->hrtick_csd.func = __hrtick_start;
1164 rq->hrtick_csd.info = rq;
1165#endif
1166
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001167 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1168 rq->hrtick_timer.function = hrtick;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001169}
Andrew Morton006c75f2008-09-22 14:55:46 -07001170#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001171static inline void hrtick_clear(struct rq *rq)
1172{
1173}
1174
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001175static inline void init_rq_hrtick(struct rq *rq)
1176{
1177}
1178
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001179static inline void init_hrtick(void)
1180{
1181}
Andrew Morton006c75f2008-09-22 14:55:46 -07001182#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001183
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001184/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001185 * resched_task - mark a task 'to be rescheduled now'.
1186 *
1187 * On UP this means the setting of the need_resched flag, on SMP it
1188 * might also involve a cross-CPU call to trigger the scheduler on
1189 * the target CPU.
1190 */
1191#ifdef CONFIG_SMP
1192
1193#ifndef tsk_is_polling
1194#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1195#endif
1196
Peter Zijlstra31656512008-07-18 18:01:23 +02001197static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001198{
1199 int cpu;
1200
1201 assert_spin_locked(&task_rq(p)->lock);
1202
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001203 if (test_tsk_need_resched(p))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001204 return;
1205
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001206 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001207
1208 cpu = task_cpu(p);
1209 if (cpu == smp_processor_id())
1210 return;
1211
1212 /* NEED_RESCHED must be visible before we test polling */
1213 smp_mb();
1214 if (!tsk_is_polling(p))
1215 smp_send_reschedule(cpu);
1216}
1217
1218static void resched_cpu(int cpu)
1219{
1220 struct rq *rq = cpu_rq(cpu);
1221 unsigned long flags;
1222
1223 if (!spin_trylock_irqsave(&rq->lock, flags))
1224 return;
1225 resched_task(cpu_curr(cpu));
1226 spin_unlock_irqrestore(&rq->lock, flags);
1227}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001228
1229#ifdef CONFIG_NO_HZ
1230/*
1231 * When add_timer_on() enqueues a timer into the timer wheel of an
1232 * idle CPU then this timer might expire before the next timer event
1233 * which is scheduled to wake up that CPU. In case of a completely
1234 * idle system the next event might even be infinite time into the
1235 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1236 * leaves the inner idle loop so the newly added timer is taken into
1237 * account when the CPU goes back to idle and evaluates the timer
1238 * wheel for the next timer event.
1239 */
1240void wake_up_idle_cpu(int cpu)
1241{
1242 struct rq *rq = cpu_rq(cpu);
1243
1244 if (cpu == smp_processor_id())
1245 return;
1246
1247 /*
1248 * This is safe, as this function is called with the timer
1249 * wheel base lock of (cpu) held. When the CPU is on the way
1250 * to idle and has not yet set rq->curr to idle then it will
1251 * be serialized on the timer wheel base lock and take the new
1252 * timer into account automatically.
1253 */
1254 if (rq->curr != rq->idle)
1255 return;
1256
1257 /*
1258 * We can set TIF_RESCHED on the idle task of the other CPU
1259 * lockless. The worst case is that the other CPU runs the
1260 * idle task through an additional NOOP schedule()
1261 */
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001262 set_tsk_need_resched(rq->idle);
Thomas Gleixner06d83082008-03-22 09:20:24 +01001263
1264 /* NEED_RESCHED must be visible before we test polling */
1265 smp_mb();
1266 if (!tsk_is_polling(rq->idle))
1267 smp_send_reschedule(cpu);
1268}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001269#endif /* CONFIG_NO_HZ */
Thomas Gleixner06d83082008-03-22 09:20:24 +01001270
Peter Zijlstrae9e92502009-09-01 10:34:37 +02001271static u64 sched_avg_period(void)
1272{
1273 return (u64)sysctl_sched_time_avg * NSEC_PER_MSEC / 2;
1274}
1275
1276static void sched_avg_update(struct rq *rq)
1277{
1278 s64 period = sched_avg_period();
1279
1280 while ((s64)(rq->clock - rq->age_stamp) > period) {
1281 rq->age_stamp += period;
1282 rq->rt_avg /= 2;
1283 }
1284}
1285
1286static void sched_rt_avg_update(struct rq *rq, u64 rt_delta)
1287{
1288 rq->rt_avg += rt_delta;
1289 sched_avg_update(rq);
1290}
1291
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001292#else /* !CONFIG_SMP */
Peter Zijlstra31656512008-07-18 18:01:23 +02001293static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001294{
1295 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001296 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001297}
Peter Zijlstrae9e92502009-09-01 10:34:37 +02001298
1299static void sched_rt_avg_update(struct rq *rq, u64 rt_delta)
1300{
1301}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001302#endif /* CONFIG_SMP */
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001303
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001304#if BITS_PER_LONG == 32
1305# define WMULT_CONST (~0UL)
1306#else
1307# define WMULT_CONST (1UL << 32)
1308#endif
1309
1310#define WMULT_SHIFT 32
1311
Ingo Molnar194081e2007-08-09 11:16:51 +02001312/*
1313 * Shift right and round:
1314 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001315#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001316
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001317/*
1318 * delta *= weight / lw
1319 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001320static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001321calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1322 struct load_weight *lw)
1323{
1324 u64 tmp;
1325
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001326 if (!lw->inv_weight) {
1327 if (BITS_PER_LONG > 32 && unlikely(lw->weight >= WMULT_CONST))
1328 lw->inv_weight = 1;
1329 else
1330 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)
1331 / (lw->weight+1);
1332 }
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001333
1334 tmp = (u64)delta_exec * weight;
1335 /*
1336 * Check whether we'd overflow the 64-bit multiplication:
1337 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001338 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001339 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001340 WMULT_SHIFT/2);
1341 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001342 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001343
Ingo Molnarecf691d2007-08-02 17:41:40 +02001344 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001345}
1346
Ingo Molnar10919852007-10-15 17:00:04 +02001347static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001348{
1349 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001350 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001351}
1352
Ingo Molnar10919852007-10-15 17:00:04 +02001353static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001354{
1355 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001356 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001357}
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001360 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1361 * of tasks with abnormal "nice" values across CPUs the contribution that
1362 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001363 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001364 * scaled version of the new time slice allocation that they receive on time
1365 * slice expiry etc.
1366 */
1367
Peter Zijlstracce7ade2009-01-15 14:53:37 +01001368#define WEIGHT_IDLEPRIO 3
1369#define WMULT_IDLEPRIO 1431655765
Ingo Molnardd41f592007-07-09 18:51:59 +02001370
1371/*
1372 * Nice levels are multiplicative, with a gentle 10% change for every
1373 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1374 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1375 * that remained on nice 0.
1376 *
1377 * The "10% effect" is relative and cumulative: from _any_ nice level,
1378 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001379 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1380 * If a task goes up by ~10% and another task goes down by ~10% then
1381 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001382 */
1383static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001384 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1385 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1386 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1387 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1388 /* 0 */ 1024, 820, 655, 526, 423,
1389 /* 5 */ 335, 272, 215, 172, 137,
1390 /* 10 */ 110, 87, 70, 56, 45,
1391 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001392};
1393
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001394/*
1395 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1396 *
1397 * In cases where the weight does not change often, we can use the
1398 * precalculated inverse to speed up arithmetics by turning divisions
1399 * into multiplications:
1400 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001401static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001402 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1403 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1404 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1405 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1406 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1407 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1408 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1409 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001410};
Peter Williams2dd73a42006-06-27 02:54:34 -07001411
Ingo Molnardd41f592007-07-09 18:51:59 +02001412static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1413
1414/*
1415 * runqueue iterator, to support SMP load-balancing between different
1416 * scheduling classes, without having to expose their internal data
1417 * structures to the load-balancing proper:
1418 */
1419struct rq_iterator {
1420 void *arg;
1421 struct task_struct *(*start)(void *);
1422 struct task_struct *(*next)(void *);
1423};
1424
Peter Williamse1d14842007-10-24 18:23:51 +02001425#ifdef CONFIG_SMP
1426static unsigned long
1427balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1428 unsigned long max_load_move, struct sched_domain *sd,
1429 enum cpu_idle_type idle, int *all_pinned,
1430 int *this_best_prio, struct rq_iterator *iterator);
1431
1432static int
1433iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1434 struct sched_domain *sd, enum cpu_idle_type idle,
1435 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001436#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001437
Bharata B Raoef12fef2009-03-31 10:02:22 +05301438/* Time spent by the tasks of the cpu accounting group executing in ... */
1439enum cpuacct_stat_index {
1440 CPUACCT_STAT_USER, /* ... user mode */
1441 CPUACCT_STAT_SYSTEM, /* ... kernel mode */
1442
1443 CPUACCT_STAT_NSTATS,
1444};
1445
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001446#ifdef CONFIG_CGROUP_CPUACCT
1447static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
Bharata B Raoef12fef2009-03-31 10:02:22 +05301448static void cpuacct_update_stats(struct task_struct *tsk,
1449 enum cpuacct_stat_index idx, cputime_t val);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001450#else
1451static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
Bharata B Raoef12fef2009-03-31 10:02:22 +05301452static inline void cpuacct_update_stats(struct task_struct *tsk,
1453 enum cpuacct_stat_index idx, cputime_t val) {}
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001454#endif
1455
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001456static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1457{
1458 update_load_add(&rq->load, load);
1459}
1460
1461static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1462{
1463 update_load_sub(&rq->load, load);
1464}
1465
Ingo Molnar7940ca32008-08-19 13:40:47 +02001466#if (defined(CONFIG_SMP) && defined(CONFIG_FAIR_GROUP_SCHED)) || defined(CONFIG_RT_GROUP_SCHED)
Peter Zijlstraeb755802008-08-19 12:33:05 +02001467typedef int (*tg_visitor)(struct task_group *, void *);
1468
1469/*
1470 * Iterate the full tree, calling @down when first entering a node and @up when
1471 * leaving it for the final time.
1472 */
1473static int walk_tg_tree(tg_visitor down, tg_visitor up, void *data)
1474{
1475 struct task_group *parent, *child;
1476 int ret;
1477
1478 rcu_read_lock();
1479 parent = &root_task_group;
1480down:
1481 ret = (*down)(parent, data);
1482 if (ret)
1483 goto out_unlock;
1484 list_for_each_entry_rcu(child, &parent->children, siblings) {
1485 parent = child;
1486 goto down;
1487
1488up:
1489 continue;
1490 }
1491 ret = (*up)(parent, data);
1492 if (ret)
1493 goto out_unlock;
1494
1495 child = parent;
1496 parent = parent->parent;
1497 if (parent)
1498 goto up;
1499out_unlock:
1500 rcu_read_unlock();
1501
1502 return ret;
1503}
1504
1505static int tg_nop(struct task_group *tg, void *data)
1506{
1507 return 0;
1508}
1509#endif
1510
Gregory Haskinse7693a32008-01-25 21:08:09 +01001511#ifdef CONFIG_SMP
1512static unsigned long source_load(int cpu, int type);
1513static unsigned long target_load(int cpu, int type);
Gregory Haskinse7693a32008-01-25 21:08:09 +01001514static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001515
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001516static unsigned long cpu_avg_load_per_task(int cpu)
1517{
1518 struct rq *rq = cpu_rq(cpu);
Ingo Molnaraf6d5962008-11-29 20:45:15 +01001519 unsigned long nr_running = ACCESS_ONCE(rq->nr_running);
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001520
Steven Rostedt4cd42622008-11-26 21:04:24 -05001521 if (nr_running)
1522 rq->avg_load_per_task = rq->load.weight / nr_running;
Balbir Singha2d47772008-11-12 16:19:00 +05301523 else
1524 rq->avg_load_per_task = 0;
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001525
1526 return rq->avg_load_per_task;
1527}
1528
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001529#ifdef CONFIG_FAIR_GROUP_SCHED
1530
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001531struct update_shares_data {
1532 unsigned long rq_weight[NR_CPUS];
1533};
1534
1535static DEFINE_PER_CPU(struct update_shares_data, update_shares_data);
1536
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001537static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1538
1539/*
1540 * Calculate and set the cpu's group shares.
1541 */
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001542static void update_group_shares_cpu(struct task_group *tg, int cpu,
1543 unsigned long sd_shares,
1544 unsigned long sd_rq_weight,
1545 struct update_shares_data *usd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001546{
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001547 unsigned long shares, rq_weight;
Peter Zijlstraa5004272009-07-27 14:04:49 +02001548 int boost = 0;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001549
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001550 rq_weight = usd->rq_weight[cpu];
Peter Zijlstraa5004272009-07-27 14:04:49 +02001551 if (!rq_weight) {
1552 boost = 1;
1553 rq_weight = NICE_0_LOAD;
1554 }
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001555
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001556 /*
Peter Zijlstraa8af7242009-08-21 13:58:54 +02001557 * \Sum_j shares_j * rq_weight_i
1558 * shares_i = -----------------------------
1559 * \Sum_j rq_weight_j
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001560 */
Ken Chenec4e0e22008-11-18 22:41:57 -08001561 shares = (sd_shares * rq_weight) / sd_rq_weight;
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001562 shares = clamp_t(unsigned long, shares, MIN_SHARES, MAX_SHARES);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001563
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001564 if (abs(shares - tg->se[cpu]->load.weight) >
1565 sysctl_sched_shares_thresh) {
1566 struct rq *rq = cpu_rq(cpu);
1567 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001568
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001569 spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001570 tg->cfs_rq[cpu]->rq_weight = boost ? 0 : rq_weight;
Peter Zijlstraa5004272009-07-27 14:04:49 +02001571 tg->cfs_rq[cpu]->shares = boost ? 0 : shares;
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001572 __set_se_shares(tg->se[cpu], shares);
1573 spin_unlock_irqrestore(&rq->lock, flags);
1574 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001575}
1576
1577/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001578 * Re-compute the task group their per cpu shares over the given domain.
1579 * This needs to be done in a bottom-up fashion because the rq weight of a
1580 * parent group depends on the shares of its child groups.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001581 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001582static int tg_shares_up(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001583{
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001584 unsigned long weight, rq_weight = 0, shares = 0;
1585 struct update_shares_data *usd;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001586 struct sched_domain *sd = data;
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001587 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001588 int i;
1589
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001590 if (!tg->se[0])
1591 return 0;
1592
1593 local_irq_save(flags);
1594 usd = &__get_cpu_var(update_shares_data);
1595
Rusty Russell758b2cd2008-11-25 02:35:04 +10301596 for_each_cpu(i, sched_domain_span(sd)) {
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001597 weight = tg->cfs_rq[i]->load.weight;
1598 usd->rq_weight[i] = weight;
1599
Ken Chenec4e0e22008-11-18 22:41:57 -08001600 /*
1601 * If there are currently no tasks on the cpu pretend there
1602 * is one of average load so that when a new task gets to
1603 * run here it will not get delayed by group starvation.
1604 */
Ken Chenec4e0e22008-11-18 22:41:57 -08001605 if (!weight)
1606 weight = NICE_0_LOAD;
1607
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001608 rq_weight += weight;
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001609 shares += tg->cfs_rq[i]->shares;
1610 }
1611
1612 if ((!shares && rq_weight) || shares > tg->shares)
1613 shares = tg->shares;
1614
1615 if (!sd->parent || !(sd->parent->flags & SD_LOAD_BALANCE))
1616 shares = tg->shares;
1617
Peter Zijlstraa8af7242009-08-21 13:58:54 +02001618 for_each_cpu(i, sched_domain_span(sd))
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001619 update_group_shares_cpu(tg, i, shares, rq_weight, usd);
1620
1621 local_irq_restore(flags);
Peter Zijlstraeb755802008-08-19 12:33:05 +02001622
1623 return 0;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001624}
1625
1626/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001627 * Compute the cpu's hierarchical load factor for each task group.
1628 * This needs to be done in a top-down fashion because the load of a child
1629 * group is a fraction of its parents load.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001630 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001631static int tg_load_down(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001632{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001633 unsigned long load;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001634 long cpu = (long)data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001635
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001636 if (!tg->parent) {
1637 load = cpu_rq(cpu)->load.weight;
1638 } else {
1639 load = tg->parent->cfs_rq[cpu]->h_load;
1640 load *= tg->cfs_rq[cpu]->shares;
1641 load /= tg->parent->cfs_rq[cpu]->load.weight + 1;
1642 }
1643
1644 tg->cfs_rq[cpu]->h_load = load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001645
Peter Zijlstraeb755802008-08-19 12:33:05 +02001646 return 0;
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001647}
1648
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001649static void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001650{
Peter Zijlstrae7097152009-06-03 15:41:20 +02001651 s64 elapsed;
1652 u64 now;
1653
1654 if (root_task_group_empty())
1655 return;
1656
1657 now = cpu_clock(raw_smp_processor_id());
1658 elapsed = now - sd->last_update;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001659
1660 if (elapsed >= (s64)(u64)sysctl_sched_shares_ratelimit) {
1661 sd->last_update = now;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001662 walk_tg_tree(tg_nop, tg_shares_up, sd);
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001663 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001664}
1665
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001666static void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1667{
Peter Zijlstrae7097152009-06-03 15:41:20 +02001668 if (root_task_group_empty())
1669 return;
1670
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001671 spin_unlock(&rq->lock);
1672 update_shares(sd);
1673 spin_lock(&rq->lock);
1674}
1675
Peter Zijlstraeb755802008-08-19 12:33:05 +02001676static void update_h_load(long cpu)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001677{
Peter Zijlstrae7097152009-06-03 15:41:20 +02001678 if (root_task_group_empty())
1679 return;
1680
Peter Zijlstraeb755802008-08-19 12:33:05 +02001681 walk_tg_tree(tg_load_down, tg_nop, (void *)cpu);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001682}
1683
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001684#else
1685
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001686static inline void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001687{
1688}
1689
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001690static inline void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1691{
1692}
1693
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001694#endif
1695
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001696#ifdef CONFIG_PREEMPT
1697
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001698/*
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001699 * fair double_lock_balance: Safely acquires both rq->locks in a fair
1700 * way at the expense of forcing extra atomic operations in all
1701 * invocations. This assures that the double_lock is acquired using the
1702 * same underlying policy as the spinlock_t on this architecture, which
1703 * reduces latency compared to the unfair variant below. However, it
1704 * also adds more overhead and therefore may reduce throughput.
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001705 */
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001706static inline int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
1707 __releases(this_rq->lock)
1708 __acquires(busiest->lock)
1709 __acquires(this_rq->lock)
1710{
1711 spin_unlock(&this_rq->lock);
1712 double_rq_lock(this_rq, busiest);
1713
1714 return 1;
1715}
1716
1717#else
1718/*
1719 * Unfair double_lock_balance: Optimizes throughput at the expense of
1720 * latency by eliminating extra atomic operations when the locks are
1721 * already in proper order on entry. This favors lower cpu-ids and will
1722 * grant the double lock to lower cpus over higher ids under contention,
1723 * regardless of entry order into the function.
1724 */
1725static int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001726 __releases(this_rq->lock)
1727 __acquires(busiest->lock)
1728 __acquires(this_rq->lock)
1729{
1730 int ret = 0;
1731
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001732 if (unlikely(!spin_trylock(&busiest->lock))) {
1733 if (busiest < this_rq) {
1734 spin_unlock(&this_rq->lock);
1735 spin_lock(&busiest->lock);
1736 spin_lock_nested(&this_rq->lock, SINGLE_DEPTH_NESTING);
1737 ret = 1;
1738 } else
1739 spin_lock_nested(&busiest->lock, SINGLE_DEPTH_NESTING);
1740 }
1741 return ret;
1742}
1743
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001744#endif /* CONFIG_PREEMPT */
1745
1746/*
1747 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1748 */
1749static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
1750{
1751 if (unlikely(!irqs_disabled())) {
1752 /* printk() doesn't work good under rq->lock */
1753 spin_unlock(&this_rq->lock);
1754 BUG_ON(1);
1755 }
1756
1757 return _double_lock_balance(this_rq, busiest);
1758}
1759
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001760static inline void double_unlock_balance(struct rq *this_rq, struct rq *busiest)
1761 __releases(busiest->lock)
1762{
1763 spin_unlock(&busiest->lock);
1764 lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_);
1765}
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001766#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001767
1768#ifdef CONFIG_FAIR_GROUP_SCHED
1769static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1770{
Vegard Nossum30432092008-06-27 21:35:50 +02001771#ifdef CONFIG_SMP
Ingo Molnar34e83e82008-06-27 15:42:36 +02001772 cfs_rq->shares = shares;
1773#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001774}
1775#endif
1776
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02001777static void calc_load_account_active(struct rq *this_rq);
1778
Ingo Molnardd41f592007-07-09 18:51:59 +02001779#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001780#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001781#include "sched_fair.c"
1782#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001783#ifdef CONFIG_SCHED_DEBUG
1784# include "sched_debug.c"
1785#endif
1786
1787#define sched_class_highest (&rt_sched_class)
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001788#define for_each_class(class) \
1789 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001790
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001791static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001792{
1793 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001794}
1795
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001796static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001797{
1798 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001799}
1800
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001801static void set_load_weight(struct task_struct *p)
1802{
1803 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001804 p->se.load.weight = prio_to_weight[0] * 2;
1805 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1806 return;
1807 }
1808
1809 /*
1810 * SCHED_IDLE tasks get minimal weight:
1811 */
1812 if (p->policy == SCHED_IDLE) {
1813 p->se.load.weight = WEIGHT_IDLEPRIO;
1814 p->se.load.inv_weight = WMULT_IDLEPRIO;
1815 return;
1816 }
1817
1818 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1819 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001820}
1821
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001822static void update_avg(u64 *avg, u64 sample)
1823{
1824 s64 diff = sample - *avg;
1825 *avg += diff >> 3;
1826}
1827
Ingo Molnar8159f872007-08-09 11:16:49 +02001828static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001829{
Peter Zijlstra831451a2009-01-14 12:39:18 +01001830 if (wakeup)
1831 p->se.start_runtime = p->se.sum_exec_runtime;
1832
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001833 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001834 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001835 p->se.on_rq = 1;
1836}
1837
Ingo Molnar69be72c2007-08-09 11:16:49 +02001838static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001839{
Peter Zijlstra831451a2009-01-14 12:39:18 +01001840 if (sleep) {
1841 if (p->se.last_wakeup) {
1842 update_avg(&p->se.avg_overlap,
1843 p->se.sum_exec_runtime - p->se.last_wakeup);
1844 p->se.last_wakeup = 0;
1845 } else {
1846 update_avg(&p->se.avg_wakeup,
1847 sysctl_sched_wakeup_granularity);
1848 }
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001849 }
1850
Ankita Garg46ac22b2008-07-01 14:30:06 +05301851 sched_info_dequeued(p);
Ingo Molnarf02231e2007-08-09 11:16:48 +02001852 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001853 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001854}
1855
1856/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001857 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001858 */
Ingo Molnar14531182007-07-09 18:51:59 +02001859static inline int __normal_prio(struct task_struct *p)
1860{
Ingo Molnardd41f592007-07-09 18:51:59 +02001861 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001862}
1863
1864/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001865 * Calculate the expected normal priority: i.e. priority
1866 * without taking RT-inheritance into account. Might be
1867 * boosted by interactivity modifiers. Changes upon fork,
1868 * setprio syscalls, and whenever the interactivity
1869 * estimator recalculates.
1870 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001871static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001872{
1873 int prio;
1874
Ingo Molnare05606d2007-07-09 18:51:59 +02001875 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001876 prio = MAX_RT_PRIO-1 - p->rt_priority;
1877 else
1878 prio = __normal_prio(p);
1879 return prio;
1880}
1881
1882/*
1883 * Calculate the current priority, i.e. the priority
1884 * taken into account by the scheduler. This value might
1885 * be boosted by RT tasks, or might be boosted by
1886 * interactivity modifiers. Will be RT if the task got
1887 * RT-boosted. If not then it returns p->normal_prio.
1888 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001889static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001890{
1891 p->normal_prio = normal_prio(p);
1892 /*
1893 * If we are RT tasks or we were boosted to RT priority,
1894 * keep the priority unchanged. Otherwise, update priority
1895 * to the normal priority:
1896 */
1897 if (!rt_prio(p->prio))
1898 return p->normal_prio;
1899 return p->prio;
1900}
1901
1902/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001903 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001905static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001907 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001908 rq->nr_uninterruptible--;
1909
Ingo Molnar8159f872007-08-09 11:16:49 +02001910 enqueue_task(rq, p, wakeup);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001911 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912}
1913
1914/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 * deactivate_task - remove a task from the runqueue.
1916 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001917static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001919 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001920 rq->nr_uninterruptible++;
1921
Ingo Molnar69be72c2007-08-09 11:16:49 +02001922 dequeue_task(rq, p, sleep);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001923 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924}
1925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926/**
1927 * task_curr - is this task currently executing on a CPU?
1928 * @p: the task in question.
1929 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001930inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931{
1932 return cpu_curr(task_cpu(p)) == p;
1933}
1934
Ingo Molnardd41f592007-07-09 18:51:59 +02001935static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1936{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001937 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001938#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001939 /*
1940 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1941 * successfuly executed on another CPU. We must ensure that updates of
1942 * per-task data have been completed by this moment.
1943 */
1944 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001945 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001946#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001947}
1948
Steven Rostedtcb469842008-01-25 21:08:22 +01001949static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1950 const struct sched_class *prev_class,
1951 int oldprio, int running)
1952{
1953 if (prev_class != p->sched_class) {
1954 if (prev_class->switched_from)
1955 prev_class->switched_from(rq, p, running);
1956 p->sched_class->switched_to(rq, p, running);
1957 } else
1958 p->sched_class->prio_changed(rq, p, oldprio, running);
1959}
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001962
Thomas Gleixnere958b362008-06-04 23:22:32 +02001963/* Used instead of source_load when we know the type == 0 */
1964static unsigned long weighted_cpuload(const int cpu)
1965{
1966 return cpu_rq(cpu)->load.weight;
1967}
1968
Ingo Molnarcc367732007-10-15 17:00:18 +02001969/*
1970 * Is this task likely cache-hot:
1971 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001972static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001973task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1974{
1975 s64 delta;
1976
Ingo Molnarf540a602008-03-15 17:10:34 +01001977 /*
1978 * Buddy candidates are cache hot:
1979 */
Peter Zijlstra47932412008-11-04 21:25:09 +01001980 if (sched_feat(CACHE_HOT_BUDDY) &&
1981 (&p->se == cfs_rq_of(&p->se)->next ||
1982 &p->se == cfs_rq_of(&p->se)->last))
Ingo Molnarf540a602008-03-15 17:10:34 +01001983 return 1;
1984
Ingo Molnarcc367732007-10-15 17:00:18 +02001985 if (p->sched_class != &fair_sched_class)
1986 return 0;
1987
Ingo Molnar6bc16652007-10-15 17:00:18 +02001988 if (sysctl_sched_migration_cost == -1)
1989 return 1;
1990 if (sysctl_sched_migration_cost == 0)
1991 return 0;
1992
Ingo Molnarcc367732007-10-15 17:00:18 +02001993 delta = now - p->se.exec_start;
1994
1995 return delta < (s64)sysctl_sched_migration_cost;
1996}
1997
1998
Ingo Molnardd41f592007-07-09 18:51:59 +02001999void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02002000{
Ingo Molnardd41f592007-07-09 18:51:59 +02002001 int old_cpu = task_cpu(p);
2002 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002003 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
2004 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02002005 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002006
2007 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002008
Mathieu Desnoyersde1d7282009-05-05 16:49:59 +08002009 trace_sched_migrate_task(p, new_cpu);
Peter Zijlstracbc34ed2008-12-10 08:08:22 +01002010
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002011#ifdef CONFIG_SCHEDSTATS
2012 if (p->se.wait_start)
2013 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002014 if (p->se.sleep_start)
2015 p->se.sleep_start -= clock_offset;
2016 if (p->se.block_start)
2017 p->se.block_start -= clock_offset;
Ingo Molnar6c594c22008-12-14 12:34:15 +01002018#endif
Ingo Molnarcc367732007-10-15 17:00:18 +02002019 if (old_cpu != new_cpu) {
Ingo Molnar6c594c22008-12-14 12:34:15 +01002020 p->se.nr_migrations++;
Paul Mackerras23a185c2009-02-09 22:42:47 +11002021 new_rq->nr_migrations_in++;
Ingo Molnar6c594c22008-12-14 12:34:15 +01002022#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002023 if (task_hot(p, old_rq->clock, NULL))
2024 schedstat_inc(p, se.nr_forced2_migrations);
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002025#endif
Peter Zijlstrae5289d42009-06-19 13:22:51 +02002026 perf_swcounter_event(PERF_COUNT_SW_CPU_MIGRATIONS,
2027 1, 1, NULL, 0);
Ingo Molnar6c594c22008-12-14 12:34:15 +01002028 }
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002029 p->se.vruntime -= old_cfsrq->min_vruntime -
2030 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02002031
2032 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02002033}
2034
Ingo Molnar70b97a72006-07-03 00:25:42 -07002035struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Ingo Molnar36c8b582006-07-03 00:25:41 -07002038 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 int dest_cpu;
2040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002042};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044/*
2045 * The task's runqueue lock must be held.
2046 * Returns true if you have to wait for migration thread.
2047 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002048static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002049migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002051 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 /*
2054 * If the task is not on a runqueue (and not running), then
2055 * it is sufficient to simply update the task's cpu field.
2056 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002057 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 set_task_cpu(p, dest_cpu);
2059 return 0;
2060 }
2061
2062 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 req->task = p;
2064 req->dest_cpu = dest_cpu;
2065 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 return 1;
2068}
2069
2070/*
Markus Metzgera26b89f2009-04-03 16:43:34 +02002071 * wait_task_context_switch - wait for a thread to complete at least one
2072 * context switch.
2073 *
2074 * @p must not be current.
2075 */
2076void wait_task_context_switch(struct task_struct *p)
2077{
2078 unsigned long nvcsw, nivcsw, flags;
2079 int running;
2080 struct rq *rq;
2081
2082 nvcsw = p->nvcsw;
2083 nivcsw = p->nivcsw;
2084 for (;;) {
2085 /*
2086 * The runqueue is assigned before the actual context
2087 * switch. We need to take the runqueue lock.
2088 *
2089 * We could check initially without the lock but it is
2090 * very likely that we need to take the lock in every
2091 * iteration.
2092 */
2093 rq = task_rq_lock(p, &flags);
2094 running = task_running(rq, p);
2095 task_rq_unlock(rq, &flags);
2096
2097 if (likely(!running))
2098 break;
2099 /*
2100 * The switch count is incremented before the actual
2101 * context switch. We thus wait for two switches to be
2102 * sure at least one completed.
2103 */
2104 if ((p->nvcsw - nvcsw) > 1)
2105 break;
2106 if ((p->nivcsw - nivcsw) > 1)
2107 break;
2108
2109 cpu_relax();
2110 }
2111}
2112
2113/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 * wait_task_inactive - wait for a thread to unschedule.
2115 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07002116 * If @match_state is nonzero, it's the @p->state value just checked and
2117 * not expected to change. If it changes, i.e. @p might have woken up,
2118 * then return zero. When we succeed in waiting for @p to be off its CPU,
2119 * we return a positive number (its total switch count). If a second call
2120 * a short while later returns the same number, the caller can be sure that
2121 * @p has remained unscheduled the whole time.
2122 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 * The caller must ensure that the task *will* unschedule sometime soon,
2124 * else this function might spin for a *long* time. This function can't
2125 * be called with interrupts off, or it may introduce deadlock with
2126 * smp_call_function() if an IPI is sent by the same process we are
2127 * waiting to become inactive.
2128 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002129unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
2131 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002132 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002133 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002134 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Andi Kleen3a5c3592007-10-15 17:00:14 +02002136 for (;;) {
2137 /*
2138 * We do the initial early heuristics without holding
2139 * any task-queue locks at all. We'll only try to get
2140 * the runqueue lock when things look like they will
2141 * work out!
2142 */
2143 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002144
Andi Kleen3a5c3592007-10-15 17:00:14 +02002145 /*
2146 * If the task is actively running on another CPU
2147 * still, just relax and busy-wait without holding
2148 * any locks.
2149 *
2150 * NOTE! Since we don't hold any locks, it's not
2151 * even sure that "rq" stays as the right runqueue!
2152 * But we don't care, since "task_running()" will
2153 * return false if the runqueue has changed and p
2154 * is actually now running somewhere else!
2155 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002156 while (task_running(rq, p)) {
2157 if (match_state && unlikely(p->state != match_state))
2158 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02002159 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07002160 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002161
Andi Kleen3a5c3592007-10-15 17:00:14 +02002162 /*
2163 * Ok, time to look more closely! We need the rq
2164 * lock now, to be *sure*. If we're wrong, we'll
2165 * just go back and repeat.
2166 */
2167 rq = task_rq_lock(p, &flags);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002168 trace_sched_wait_task(rq, p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002169 running = task_running(rq, p);
2170 on_rq = p->se.on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002171 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07002172 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07002173 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Andi Kleen3a5c3592007-10-15 17:00:14 +02002174 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002175
Andi Kleen3a5c3592007-10-15 17:00:14 +02002176 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07002177 * If it changed from the expected state, bail out now.
2178 */
2179 if (unlikely(!ncsw))
2180 break;
2181
2182 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02002183 * Was it really running after all now that we
2184 * checked with the proper locks actually held?
2185 *
2186 * Oops. Go back and try again..
2187 */
2188 if (unlikely(running)) {
2189 cpu_relax();
2190 continue;
2191 }
2192
2193 /*
2194 * It's not enough that it's not actively running,
2195 * it must be off the runqueue _entirely_, and not
2196 * preempted!
2197 *
Luis Henriques80dd99b2009-03-16 19:58:09 +00002198 * So if it was still runnable (but just not actively
Andi Kleen3a5c3592007-10-15 17:00:14 +02002199 * running right now), it's preempted, and we should
2200 * yield - it could be a while.
2201 */
2202 if (unlikely(on_rq)) {
2203 schedule_timeout_uninterruptible(1);
2204 continue;
2205 }
2206
2207 /*
2208 * Ahh, all good. It wasn't running, and it wasn't
2209 * runnable, which means that it will never become
2210 * running in the future either. We're all done!
2211 */
2212 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07002214
2215 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216}
2217
2218/***
2219 * kick_process - kick a running thread to enter/exit the kernel
2220 * @p: the to-be-kicked thread
2221 *
2222 * Cause a process which is running on another CPU to enter
2223 * kernel-mode, without any delay. (to get signals handled.)
2224 *
2225 * NOTE: this function doesnt have to take the runqueue lock,
2226 * because all it wants to ensure is that the remote task enters
2227 * the kernel. If the IPI races and the task has been migrated
2228 * to another CPU then no harm is done and the purpose has been
2229 * achieved as well.
2230 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002231void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
2233 int cpu;
2234
2235 preempt_disable();
2236 cpu = task_cpu(p);
2237 if ((cpu != smp_processor_id()) && task_curr(p))
2238 smp_send_reschedule(cpu);
2239 preempt_enable();
2240}
Rusty Russellb43e3522009-06-12 22:27:00 -06002241EXPORT_SYMBOL_GPL(kick_process);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
2243/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002244 * Return a low guess at the load of a migration-source cpu weighted
2245 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 *
2247 * We want to under-estimate the load of migration sources, to
2248 * balance conservatively.
2249 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002250static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002251{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002252 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002253 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002254
Peter Zijlstra93b75212008-06-27 13:41:33 +02002255 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002256 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002257
Ingo Molnardd41f592007-07-09 18:51:59 +02002258 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259}
2260
2261/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002262 * Return a high guess at the load of a migration-target cpu weighted
2263 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002265static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002266{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002267 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002268 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002269
Peter Zijlstra93b75212008-06-27 13:41:33 +02002270 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002271 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002272
Ingo Molnardd41f592007-07-09 18:51:59 +02002273 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002274}
2275
2276/*
Nick Piggin147cbb42005-06-25 14:57:19 -07002277 * find_idlest_group finds and returns the least busy CPU group within the
2278 * domain.
2279 */
2280static struct sched_group *
2281find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2282{
2283 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2284 unsigned long min_load = ULONG_MAX, this_load = 0;
2285 int load_idx = sd->forkexec_idx;
2286 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2287
2288 do {
2289 unsigned long load, avg_load;
2290 int local_group;
2291 int i;
2292
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002293 /* Skip over this group if it has no CPUs allowed */
Rusty Russell758b2cd2008-11-25 02:35:04 +10302294 if (!cpumask_intersects(sched_group_cpus(group),
2295 &p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002296 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002297
Rusty Russell758b2cd2008-11-25 02:35:04 +10302298 local_group = cpumask_test_cpu(this_cpu,
2299 sched_group_cpus(group));
Nick Piggin147cbb42005-06-25 14:57:19 -07002300
2301 /* Tally up the load of all CPUs in the group */
2302 avg_load = 0;
2303
Rusty Russell758b2cd2008-11-25 02:35:04 +10302304 for_each_cpu(i, sched_group_cpus(group)) {
Nick Piggin147cbb42005-06-25 14:57:19 -07002305 /* Bias balancing toward cpus of our domain */
2306 if (local_group)
2307 load = source_load(i, load_idx);
2308 else
2309 load = target_load(i, load_idx);
2310
2311 avg_load += load;
2312 }
2313
2314 /* Adjust by relative CPU power of the group */
Peter Zijlstra18a38852009-09-01 10:34:39 +02002315 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
Nick Piggin147cbb42005-06-25 14:57:19 -07002316
2317 if (local_group) {
2318 this_load = avg_load;
2319 this = group;
2320 } else if (avg_load < min_load) {
2321 min_load = avg_load;
2322 idlest = group;
2323 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002324 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002325
2326 if (!idlest || 100*this_load < imbalance*min_load)
2327 return NULL;
2328 return idlest;
2329}
2330
2331/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002332 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002333 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002334static int
Rusty Russell758b2cd2008-11-25 02:35:04 +10302335find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07002336{
2337 unsigned long load, min_load = ULONG_MAX;
2338 int idlest = -1;
2339 int i;
2340
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002341 /* Traverse only the allowed CPUs */
Rusty Russell758b2cd2008-11-25 02:35:04 +10302342 for_each_cpu_and(i, sched_group_cpus(group), &p->cpus_allowed) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002343 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002344
2345 if (load < min_load || (load == min_load && i == this_cpu)) {
2346 min_load = load;
2347 idlest = i;
2348 }
2349 }
2350
2351 return idlest;
2352}
2353
Nick Piggin476d1392005-06-25 14:57:29 -07002354/*
2355 * sched_balance_self: balance the current task (running on cpu) in domains
2356 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2357 * SD_BALANCE_EXEC.
2358 *
2359 * Balance, ie. select the least loaded group.
2360 *
2361 * Returns the target CPU number, or the same CPU if no balancing is needed.
2362 *
2363 * preempt must be disabled.
2364 */
2365static int sched_balance_self(int cpu, int flag)
2366{
2367 struct task_struct *t = current;
2368 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002369
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002370 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002371 /*
2372 * If power savings logic is enabled for a domain, stop there.
2373 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002374 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2375 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002376 if (tmp->flags & flag)
2377 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002378 }
Nick Piggin476d1392005-06-25 14:57:29 -07002379
Peter Zijlstra039a1c42008-06-27 13:41:25 +02002380 if (sd)
2381 update_shares(sd);
2382
Nick Piggin476d1392005-06-25 14:57:29 -07002383 while (sd) {
Nick Piggin476d1392005-06-25 14:57:29 -07002384 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002385 int new_cpu, weight;
2386
2387 if (!(sd->flags & flag)) {
2388 sd = sd->child;
2389 continue;
2390 }
Nick Piggin476d1392005-06-25 14:57:29 -07002391
Nick Piggin476d1392005-06-25 14:57:29 -07002392 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002393 if (!group) {
2394 sd = sd->child;
2395 continue;
2396 }
Nick Piggin476d1392005-06-25 14:57:29 -07002397
Rusty Russell758b2cd2008-11-25 02:35:04 +10302398 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002399 if (new_cpu == -1 || new_cpu == cpu) {
2400 /* Now try balancing at a lower domain level of cpu */
2401 sd = sd->child;
2402 continue;
2403 }
Nick Piggin476d1392005-06-25 14:57:29 -07002404
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002405 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002406 cpu = new_cpu;
Rusty Russell758b2cd2008-11-25 02:35:04 +10302407 weight = cpumask_weight(sched_domain_span(sd));
Nick Piggin476d1392005-06-25 14:57:29 -07002408 sd = NULL;
Nick Piggin476d1392005-06-25 14:57:29 -07002409 for_each_domain(cpu, tmp) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302410 if (weight <= cpumask_weight(sched_domain_span(tmp)))
Nick Piggin476d1392005-06-25 14:57:29 -07002411 break;
2412 if (tmp->flags & flag)
2413 sd = tmp;
2414 }
2415 /* while loop will break here if sd == NULL */
2416 }
2417
2418 return cpu;
2419}
2420
2421#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
Thomas Gleixner0793a612008-12-04 20:12:29 +01002423/**
2424 * task_oncpu_function_call - call a function on the cpu on which a task runs
2425 * @p: the task to evaluate
2426 * @func: the function to be called
2427 * @info: the function call argument
2428 *
2429 * Calls the function @func when the task is currently running. This might
2430 * be on the current CPU, which just calls the function directly
2431 */
2432void task_oncpu_function_call(struct task_struct *p,
2433 void (*func) (void *info), void *info)
2434{
2435 int cpu;
2436
2437 preempt_disable();
2438 cpu = task_cpu(p);
2439 if (task_curr(p))
2440 smp_call_function_single(cpu, func, info, 1);
2441 preempt_enable();
2442}
2443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444/***
2445 * try_to_wake_up - wake up a thread
2446 * @p: the to-be-woken-up thread
2447 * @state: the mask of task states that can be woken
2448 * @sync: do a synchronous wakeup?
2449 *
2450 * Put it on the run-queue if it's not already there. The "current"
2451 * thread is always on the run-queue (except when the actual
2452 * re-schedule is in progress), and as such you're allowed to do
2453 * the simpler "current->state = TASK_RUNNING" to mark yourself
2454 * runnable without the overhead of this.
2455 *
2456 * returns failure only if the task is already active.
2457 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002458static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
Ingo Molnarcc367732007-10-15 17:00:18 +02002460 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 unsigned long flags;
2462 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002463 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Ingo Molnarb85d0662008-03-16 20:03:22 +01002465 if (!sched_feat(SYNC_WAKEUPS))
2466 sync = 0;
2467
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002468#ifdef CONFIG_SMP
Peter Zijlstra57310a92009-03-09 13:56:21 +01002469 if (sched_feat(LB_WAKEUP_UPDATE) && !root_task_group_empty()) {
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002470 struct sched_domain *sd;
2471
2472 this_cpu = raw_smp_processor_id();
2473 cpu = task_cpu(p);
2474
2475 for_each_domain(this_cpu, sd) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302476 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002477 update_shares(sd);
2478 break;
2479 }
2480 }
2481 }
2482#endif
2483
Linus Torvalds04e2f172008-02-23 18:05:03 -08002484 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 rq = task_rq_lock(p, &flags);
Mike Galbraith03e89e42008-12-16 08:45:30 +01002486 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 old_state = p->state;
2488 if (!(old_state & state))
2489 goto out;
2490
Ingo Molnardd41f592007-07-09 18:51:59 +02002491 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 goto out_running;
2493
2494 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002495 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 this_cpu = smp_processor_id();
2497
2498#ifdef CONFIG_SMP
2499 if (unlikely(task_running(rq, p)))
2500 goto out_activate;
2501
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002502 cpu = p->sched_class->select_task_rq(p, sync);
2503 if (cpu != orig_cpu) {
2504 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 task_rq_unlock(rq, &flags);
2506 /* might preempt at this point */
2507 rq = task_rq_lock(p, &flags);
2508 old_state = p->state;
2509 if (!(old_state & state))
2510 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002511 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 goto out_running;
2513
2514 this_cpu = smp_processor_id();
2515 cpu = task_cpu(p);
2516 }
2517
Gregory Haskinse7693a32008-01-25 21:08:09 +01002518#ifdef CONFIG_SCHEDSTATS
2519 schedstat_inc(rq, ttwu_count);
2520 if (cpu == this_cpu)
2521 schedstat_inc(rq, ttwu_local);
2522 else {
2523 struct sched_domain *sd;
2524 for_each_domain(this_cpu, sd) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302525 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Gregory Haskinse7693a32008-01-25 21:08:09 +01002526 schedstat_inc(sd, ttwu_wake_remote);
2527 break;
2528 }
2529 }
2530 }
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002531#endif /* CONFIG_SCHEDSTATS */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533out_activate:
2534#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002535 schedstat_inc(p, se.nr_wakeups);
2536 if (sync)
2537 schedstat_inc(p, se.nr_wakeups_sync);
2538 if (orig_cpu != cpu)
2539 schedstat_inc(p, se.nr_wakeups_migrate);
2540 if (cpu == this_cpu)
2541 schedstat_inc(p, se.nr_wakeups_local);
2542 else
2543 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnardd41f592007-07-09 18:51:59 +02002544 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 success = 1;
2546
Peter Zijlstra831451a2009-01-14 12:39:18 +01002547 /*
2548 * Only attribute actual wakeups done by this task.
2549 */
2550 if (!in_interrupt()) {
2551 struct sched_entity *se = &current->se;
2552 u64 sample = se->sum_exec_runtime;
2553
2554 if (se->last_wakeup)
2555 sample -= se->last_wakeup;
2556 else
2557 sample -= se->start_runtime;
2558 update_avg(&se->avg_wakeup, sample);
2559
2560 se->last_wakeup = se->sum_exec_runtime;
2561 }
2562
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563out_running:
Peter Zijlstra468a15b2008-12-16 08:07:03 +01002564 trace_sched_wakeup(rq, p, success);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002565 check_preempt_curr(rq, p, sync);
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002566
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002568#ifdef CONFIG_SMP
2569 if (p->sched_class->task_wake_up)
2570 p->sched_class->task_wake_up(rq, p);
2571#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572out:
2573 task_rq_unlock(rq, &flags);
2574
2575 return success;
2576}
2577
David Howells50fa6102009-04-28 15:01:38 +01002578/**
2579 * wake_up_process - Wake up a specific process
2580 * @p: The process to be woken up.
2581 *
2582 * Attempt to wake up the nominated process and move it to the set of runnable
2583 * processes. Returns 1 if the process was woken up, 0 if it was already
2584 * running.
2585 *
2586 * It may be assumed that this function implies a write memory barrier before
2587 * changing the task state if and only if any tasks are woken up.
2588 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002589int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002591 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593EXPORT_SYMBOL(wake_up_process);
2594
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002595int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
2597 return try_to_wake_up(p, state, 0);
2598}
2599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600/*
2601 * Perform scheduler related setup for a newly forked process p.
2602 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002603 *
2604 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002606static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607{
Ingo Molnardd41f592007-07-09 18:51:59 +02002608 p->se.exec_start = 0;
2609 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002610 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01002611 p->se.nr_migrations = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002612 p->se.last_wakeup = 0;
2613 p->se.avg_overlap = 0;
Peter Zijlstra831451a2009-01-14 12:39:18 +01002614 p->se.start_runtime = 0;
2615 p->se.avg_wakeup = sysctl_sched_wakeup_granularity;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002616
2617#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi77935272009-07-09 13:57:20 +02002618 p->se.wait_start = 0;
2619 p->se.wait_max = 0;
2620 p->se.wait_count = 0;
2621 p->se.wait_sum = 0;
2622
2623 p->se.sleep_start = 0;
2624 p->se.sleep_max = 0;
2625 p->se.sum_sleep_runtime = 0;
2626
2627 p->se.block_start = 0;
2628 p->se.block_max = 0;
2629 p->se.exec_max = 0;
2630 p->se.slice_max = 0;
2631
2632 p->se.nr_migrations_cold = 0;
2633 p->se.nr_failed_migrations_affine = 0;
2634 p->se.nr_failed_migrations_running = 0;
2635 p->se.nr_failed_migrations_hot = 0;
2636 p->se.nr_forced_migrations = 0;
2637 p->se.nr_forced2_migrations = 0;
2638
2639 p->se.nr_wakeups = 0;
2640 p->se.nr_wakeups_sync = 0;
2641 p->se.nr_wakeups_migrate = 0;
2642 p->se.nr_wakeups_local = 0;
2643 p->se.nr_wakeups_remote = 0;
2644 p->se.nr_wakeups_affine = 0;
2645 p->se.nr_wakeups_affine_attempts = 0;
2646 p->se.nr_wakeups_passive = 0;
2647 p->se.nr_wakeups_idle = 0;
2648
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002649#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002650
Peter Zijlstrafa717062008-01-25 21:08:27 +01002651 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002652 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002653 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002654
Avi Kivitye107be32007-07-26 13:40:43 +02002655#ifdef CONFIG_PREEMPT_NOTIFIERS
2656 INIT_HLIST_HEAD(&p->preempt_notifiers);
2657#endif
2658
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 /*
2660 * We mark the process as running here, but have not actually
2661 * inserted it onto the runqueue yet. This guarantees that
2662 * nobody will actually run it, and a signal or other external
2663 * event cannot wake it up and insert it on the runqueue either.
2664 */
2665 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002666}
2667
2668/*
2669 * fork()/clone()-time setup:
2670 */
2671void sched_fork(struct task_struct *p, int clone_flags)
2672{
2673 int cpu = get_cpu();
2674
2675 __sched_fork(p);
2676
2677#ifdef CONFIG_SMP
2678 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2679#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002680 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002681
2682 /*
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002683 * Make sure we do not leak PI boosting priority to the child.
Ingo Molnarb29739f2006-06-27 02:54:51 -07002684 */
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002685 p->prio = current->normal_prio;
Lennart Poetteringca94c442009-06-15 17:17:47 +02002686
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002687 /*
2688 * Revert to default priority/policy on fork if requested.
2689 */
2690 if (unlikely(p->sched_reset_on_fork)) {
2691 if (p->policy == SCHED_FIFO || p->policy == SCHED_RR)
2692 p->policy = SCHED_NORMAL;
2693
2694 if (p->normal_prio < DEFAULT_PRIO)
2695 p->prio = DEFAULT_PRIO;
2696
Mike Galbraith6c697bd2009-06-17 10:48:02 +02002697 if (PRIO_TO_NICE(p->static_prio) < 0) {
2698 p->static_prio = NICE_TO_PRIO(0);
2699 set_load_weight(p);
2700 }
2701
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002702 /*
2703 * We don't need the reset flag anymore after the fork. It has
2704 * fulfilled its duty:
2705 */
2706 p->sched_reset_on_fork = 0;
2707 }
Lennart Poetteringca94c442009-06-15 17:17:47 +02002708
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002709 if (!rt_prio(p->prio))
2710 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002711
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002712#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002713 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002714 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002716#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002717 p->oncpu = 0;
2718#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002720 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002721 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05002723 plist_node_init(&p->pushable_tasks, MAX_PRIO);
2724
Nick Piggin476d1392005-06-25 14:57:29 -07002725 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726}
2727
2728/*
2729 * wake_up_new_task - wake up a newly created task for the first time.
2730 *
2731 * This function will do some initial scheduler statistics housekeeping
2732 * that must be done for every newly created context, then puts the task
2733 * on the runqueue and wakes it.
2734 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002735void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
2737 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002738 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
2740 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002742 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
2744 p->prio = effective_prio(p);
2745
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002746 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002747 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002750 * Let the scheduling class do new task startup
2751 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002753 p->sched_class->task_new(rq, p);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02002754 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 }
Ingo Molnarc71dd422008-12-19 01:09:51 +01002756 trace_sched_wakeup_new(rq, p, 1);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002757 check_preempt_curr(rq, p, 0);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002758#ifdef CONFIG_SMP
2759 if (p->sched_class->task_wake_up)
2760 p->sched_class->task_wake_up(rq, p);
2761#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002762 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763}
2764
Avi Kivitye107be32007-07-26 13:40:43 +02002765#ifdef CONFIG_PREEMPT_NOTIFIERS
2766
2767/**
Luis Henriques80dd99b2009-03-16 19:58:09 +00002768 * preempt_notifier_register - tell me when current is being preempted & rescheduled
Randy Dunlap421cee22007-07-31 00:37:50 -07002769 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002770 */
2771void preempt_notifier_register(struct preempt_notifier *notifier)
2772{
2773 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2774}
2775EXPORT_SYMBOL_GPL(preempt_notifier_register);
2776
2777/**
2778 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002779 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002780 *
2781 * This is safe to call from within a preemption notifier.
2782 */
2783void preempt_notifier_unregister(struct preempt_notifier *notifier)
2784{
2785 hlist_del(&notifier->link);
2786}
2787EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2788
2789static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2790{
2791 struct preempt_notifier *notifier;
2792 struct hlist_node *node;
2793
2794 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2795 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2796}
2797
2798static void
2799fire_sched_out_preempt_notifiers(struct task_struct *curr,
2800 struct task_struct *next)
2801{
2802 struct preempt_notifier *notifier;
2803 struct hlist_node *node;
2804
2805 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2806 notifier->ops->sched_out(notifier, next);
2807}
2808
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002809#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002810
2811static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2812{
2813}
2814
2815static void
2816fire_sched_out_preempt_notifiers(struct task_struct *curr,
2817 struct task_struct *next)
2818{
2819}
2820
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002821#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002824 * prepare_task_switch - prepare to switch tasks
2825 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002826 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002827 * @next: the task we are going to switch to.
2828 *
2829 * This is called with the rq lock held and interrupts off. It must
2830 * be paired with a subsequent finish_task_switch after the context
2831 * switch.
2832 *
2833 * prepare_task_switch sets up locking and calls architecture specific
2834 * hooks.
2835 */
Avi Kivitye107be32007-07-26 13:40:43 +02002836static inline void
2837prepare_task_switch(struct rq *rq, struct task_struct *prev,
2838 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002839{
Avi Kivitye107be32007-07-26 13:40:43 +02002840 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002841 prepare_lock_switch(rq, next);
2842 prepare_arch_switch(next);
2843}
2844
2845/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002847 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 * @prev: the thread we just switched away from.
2849 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002850 * finish_task_switch must be called after the context switch, paired
2851 * with a prepare_task_switch call before the context switch.
2852 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2853 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 *
2855 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002856 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 * with the lock held can cause deadlocks; see schedule() for
2858 * details.)
2859 */
Gregory Haskins3f029d32009-07-29 11:08:47 -04002860static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 __releases(rq->lock)
2862{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002864 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866 rq->prev_mm = NULL;
2867
2868 /*
2869 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002870 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002871 * schedule one last time. The schedule call will never return, and
2872 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002873 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 * still held, otherwise prev could be scheduled on another cpu, die
2875 * there before we look at prev->state, and then the reference would
2876 * be dropped twice.
2877 * Manfred Spraul <manfred@colorfullife.com>
2878 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002879 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002880 finish_arch_switch(prev);
Thomas Gleixner0793a612008-12-04 20:12:29 +01002881 perf_counter_task_sched_in(current, cpu_of(rq));
Nick Piggin4866cde2005-06-25 14:57:23 -07002882 finish_lock_switch(rq, prev);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002883
Avi Kivitye107be32007-07-26 13:40:43 +02002884 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 if (mm)
2886 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002887 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002888 /*
2889 * Remove function-return probe instances associated with this
2890 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002891 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002892 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895}
2896
Gregory Haskins3f029d32009-07-29 11:08:47 -04002897#ifdef CONFIG_SMP
2898
2899/* assumes rq->lock is held */
2900static inline void pre_schedule(struct rq *rq, struct task_struct *prev)
2901{
2902 if (prev->sched_class->pre_schedule)
2903 prev->sched_class->pre_schedule(rq, prev);
2904}
2905
2906/* rq->lock is NOT held, but preemption is disabled */
2907static inline void post_schedule(struct rq *rq)
2908{
2909 if (rq->post_schedule) {
2910 unsigned long flags;
2911
2912 spin_lock_irqsave(&rq->lock, flags);
2913 if (rq->curr->sched_class->post_schedule)
2914 rq->curr->sched_class->post_schedule(rq);
2915 spin_unlock_irqrestore(&rq->lock, flags);
2916
2917 rq->post_schedule = 0;
2918 }
2919}
2920
2921#else
2922
2923static inline void pre_schedule(struct rq *rq, struct task_struct *p)
2924{
2925}
2926
2927static inline void post_schedule(struct rq *rq)
2928{
2929}
2930
2931#endif
2932
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933/**
2934 * schedule_tail - first thing a freshly forked thread must call.
2935 * @prev: the thread we just switched away from.
2936 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002937asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 __releases(rq->lock)
2939{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002940 struct rq *rq = this_rq();
2941
Gregory Haskins3f029d32009-07-29 11:08:47 -04002942 finish_task_switch(rq, prev);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002943
Gregory Haskins3f029d32009-07-29 11:08:47 -04002944 /*
2945 * FIXME: do we need to worry about rq being invalidated by the
2946 * task_switch?
2947 */
2948 post_schedule(rq);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002949
Nick Piggin4866cde2005-06-25 14:57:23 -07002950#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2951 /* In this case, finish_task_switch does not reenable preemption */
2952 preempt_enable();
2953#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002955 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956}
2957
2958/*
2959 * context_switch - switch to the new MM and the new
2960 * thread's register state.
2961 */
Gregory Haskins3f029d32009-07-29 11:08:47 -04002962static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002963context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002964 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965{
Ingo Molnardd41f592007-07-09 18:51:59 +02002966 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
Avi Kivitye107be32007-07-26 13:40:43 +02002968 prepare_task_switch(rq, prev, next);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002969 trace_sched_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002970 mm = next->mm;
2971 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002972 /*
2973 * For paravirt, this is coupled with an exit in switch_to to
2974 * combine the page table reload and the switch backend into
2975 * one hypercall.
2976 */
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08002977 arch_start_context_switch(prev);
Zachary Amsden9226d122007-02-13 13:26:21 +01002978
Ingo Molnardd41f592007-07-09 18:51:59 +02002979 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 next->active_mm = oldmm;
2981 atomic_inc(&oldmm->mm_count);
2982 enter_lazy_tlb(oldmm, next);
2983 } else
2984 switch_mm(oldmm, mm, next);
2985
Ingo Molnardd41f592007-07-09 18:51:59 +02002986 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 rq->prev_mm = oldmm;
2989 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002990 /*
2991 * Since the runqueue lock will be released by the next
2992 * task (which is an invalid locking op but in the case
2993 * of the scheduler it's an obvious special-case), so we
2994 * do an early lockdep release here:
2995 */
2996#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002997 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002998#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
3000 /* Here we just switch the register state and the stack. */
3001 switch_to(prev, next, prev);
3002
Ingo Molnardd41f592007-07-09 18:51:59 +02003003 barrier();
3004 /*
3005 * this_rq must be evaluated again because prev may have moved
3006 * CPUs since it called schedule(), thus the 'rq' on its stack
3007 * frame will be invalid.
3008 */
Gregory Haskins3f029d32009-07-29 11:08:47 -04003009 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010}
3011
3012/*
3013 * nr_running, nr_uninterruptible and nr_context_switches:
3014 *
3015 * externally visible scheduler statistics: current number of runnable
3016 * threads, current number of uninterruptible-sleeping threads, total
3017 * number of context switches performed since bootup.
3018 */
3019unsigned long nr_running(void)
3020{
3021 unsigned long i, sum = 0;
3022
3023 for_each_online_cpu(i)
3024 sum += cpu_rq(i)->nr_running;
3025
3026 return sum;
3027}
3028
3029unsigned long nr_uninterruptible(void)
3030{
3031 unsigned long i, sum = 0;
3032
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003033 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 sum += cpu_rq(i)->nr_uninterruptible;
3035
3036 /*
3037 * Since we read the counters lockless, it might be slightly
3038 * inaccurate. Do not allow it to go below zero though:
3039 */
3040 if (unlikely((long)sum < 0))
3041 sum = 0;
3042
3043 return sum;
3044}
3045
3046unsigned long long nr_context_switches(void)
3047{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07003048 int i;
3049 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003051 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 sum += cpu_rq(i)->nr_switches;
3053
3054 return sum;
3055}
3056
3057unsigned long nr_iowait(void)
3058{
3059 unsigned long i, sum = 0;
3060
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003061 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 sum += atomic_read(&cpu_rq(i)->nr_iowait);
3063
3064 return sum;
3065}
3066
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003067/* Variables and functions for calc_load */
3068static atomic_long_t calc_load_tasks;
3069static unsigned long calc_load_update;
3070unsigned long avenrun[3];
3071EXPORT_SYMBOL(avenrun);
3072
Thomas Gleixner2d024942009-05-02 20:08:52 +02003073/**
3074 * get_avenrun - get the load average array
3075 * @loads: pointer to dest load array
3076 * @offset: offset to add
3077 * @shift: shift count to shift the result left
3078 *
3079 * These values are estimates at best, so no need for locking.
3080 */
3081void get_avenrun(unsigned long *loads, unsigned long offset, int shift)
3082{
3083 loads[0] = (avenrun[0] + offset) << shift;
3084 loads[1] = (avenrun[1] + offset) << shift;
3085 loads[2] = (avenrun[2] + offset) << shift;
3086}
3087
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003088static unsigned long
3089calc_load(unsigned long load, unsigned long exp, unsigned long active)
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08003090{
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003091 load *= exp;
3092 load += active * (FIXED_1 - exp);
3093 return load >> FSHIFT;
3094}
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08003095
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003096/*
3097 * calc_load - update the avenrun load estimates 10 ticks after the
3098 * CPUs have updated calc_load_tasks.
3099 */
3100void calc_global_load(void)
3101{
3102 unsigned long upd = calc_load_update + 10;
3103 long active;
3104
3105 if (time_before(jiffies, upd))
3106 return;
3107
3108 active = atomic_long_read(&calc_load_tasks);
3109 active = active > 0 ? active * FIXED_1 : 0;
3110
3111 avenrun[0] = calc_load(avenrun[0], EXP_1, active);
3112 avenrun[1] = calc_load(avenrun[1], EXP_5, active);
3113 avenrun[2] = calc_load(avenrun[2], EXP_15, active);
3114
3115 calc_load_update += LOAD_FREQ;
3116}
3117
3118/*
3119 * Either called from update_cpu_load() or from a cpu going idle
3120 */
3121static void calc_load_account_active(struct rq *this_rq)
3122{
3123 long nr_active, delta;
3124
3125 nr_active = this_rq->nr_running;
3126 nr_active += (long) this_rq->nr_uninterruptible;
3127
3128 if (nr_active != this_rq->calc_load_active) {
3129 delta = nr_active - this_rq->calc_load_active;
3130 this_rq->calc_load_active = nr_active;
3131 atomic_long_add(delta, &calc_load_tasks);
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08003132 }
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08003133}
3134
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135/*
Paul Mackerras23a185c2009-02-09 22:42:47 +11003136 * Externally visible per-cpu scheduler statistics:
Paul Mackerras23a185c2009-02-09 22:42:47 +11003137 * cpu_nr_migrations(cpu) - number of migrations into that cpu
3138 */
Paul Mackerras23a185c2009-02-09 22:42:47 +11003139u64 cpu_nr_migrations(int cpu)
3140{
3141 return cpu_rq(cpu)->nr_migrations_in;
3142}
3143
3144/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003145 * Update rq->cpu_load[] statistics. This function is usually called every
3146 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07003147 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003148static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003149{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02003150 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02003151 int i, scale;
3152
3153 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02003154
3155 /* Update our load: */
3156 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
3157 unsigned long old_load, new_load;
3158
3159 /* scale is effectively 1 << i now, and >> i divides by scale */
3160
3161 old_load = this_rq->cpu_load[i];
3162 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02003163 /*
3164 * Round up the averaging division if load is increasing. This
3165 * prevents us from getting stuck on 9 if the load is 10, for
3166 * example.
3167 */
3168 if (new_load > old_load)
3169 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003170 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
3171 }
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003172
3173 if (time_after_eq(jiffies, this_rq->calc_load_update)) {
3174 this_rq->calc_load_update += LOAD_FREQ;
3175 calc_load_account_active(this_rq);
3176 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003177}
3178
Ingo Molnardd41f592007-07-09 18:51:59 +02003179#ifdef CONFIG_SMP
3180
Ingo Molnar48f24c42006-07-03 00:25:40 -07003181/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 * double_rq_lock - safely lock two runqueues
3183 *
3184 * Note this does not disable interrupts like task_rq_lock,
3185 * you need to do so manually before calling.
3186 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003187static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 __acquires(rq1->lock)
3189 __acquires(rq2->lock)
3190{
Kirill Korotaev054b9102006-12-10 02:20:11 -08003191 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 if (rq1 == rq2) {
3193 spin_lock(&rq1->lock);
3194 __acquire(rq2->lock); /* Fake it out ;) */
3195 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003196 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 spin_lock(&rq1->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02003198 spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 } else {
3200 spin_lock(&rq2->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02003201 spin_lock_nested(&rq1->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 }
3203 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003204 update_rq_clock(rq1);
3205 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206}
3207
3208/*
3209 * double_rq_unlock - safely unlock two runqueues
3210 *
3211 * Note this does not restore interrupts like task_rq_unlock,
3212 * you need to do so manually after calling.
3213 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003214static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 __releases(rq1->lock)
3216 __releases(rq2->lock)
3217{
3218 spin_unlock(&rq1->lock);
3219 if (rq1 != rq2)
3220 spin_unlock(&rq2->lock);
3221 else
3222 __release(rq2->lock);
3223}
3224
3225/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 * If dest_cpu is allowed for this process, migrate the task to it.
3227 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003228 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 * the cpu_allowed mask is restored.
3230 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003231static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003233 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003235 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
3237 rq = task_rq_lock(p, &flags);
Rusty Russell96f874e2008-11-25 02:35:14 +10303238 if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed)
Max Krasnyanskye761b772008-07-15 04:43:49 -07003239 || unlikely(!cpu_active(dest_cpu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 goto out;
3241
3242 /* force the process onto the specified CPU */
3243 if (migrate_task(p, dest_cpu, &req)) {
3244 /* Need to wait for migration thread (might exit: take ref). */
3245 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003246
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 get_task_struct(mt);
3248 task_rq_unlock(rq, &flags);
3249 wake_up_process(mt);
3250 put_task_struct(mt);
3251 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07003252
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 return;
3254 }
3255out:
3256 task_rq_unlock(rq, &flags);
3257}
3258
3259/*
Nick Piggin476d1392005-06-25 14:57:29 -07003260 * sched_exec - execve() is a valuable balancing opportunity, because at
3261 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 */
3263void sched_exec(void)
3264{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003266 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003268 if (new_cpu != this_cpu)
3269 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270}
3271
3272/*
3273 * pull_task - move a task from a remote runqueue to the local runqueue.
3274 * Both runqueues must be locked.
3275 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003276static void pull_task(struct rq *src_rq, struct task_struct *p,
3277 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003279 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003281 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 /*
3283 * Note that idle threads have a prio of MAX_PRIO, for this test
3284 * to be always true for them.
3285 */
Peter Zijlstra15afe092008-09-20 23:38:02 +02003286 check_preempt_curr(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287}
3288
3289/*
3290 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
3291 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003292static
Ingo Molnar70b97a72006-07-03 00:25:42 -07003293int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003294 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003295 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296{
Luis Henriques708dc512009-03-16 19:59:02 +00003297 int tsk_cache_hot = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 /*
3299 * We do not migrate tasks that are:
3300 * 1) running (obviously), or
3301 * 2) cannot be migrated to this CPU due to cpus_allowed, or
3302 * 3) are cache-hot on their current CPU.
3303 */
Rusty Russell96f874e2008-11-25 02:35:14 +10303304 if (!cpumask_test_cpu(this_cpu, &p->cpus_allowed)) {
Ingo Molnarcc367732007-10-15 17:00:18 +02003305 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003307 }
Nick Piggin81026792005-06-25 14:57:07 -07003308 *all_pinned = 0;
3309
Ingo Molnarcc367732007-10-15 17:00:18 +02003310 if (task_running(rq, p)) {
3311 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07003312 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Ingo Molnarda84d962007-10-15 17:00:18 +02003315 /*
3316 * Aggressive migration if:
3317 * 1) task is cache cold, or
3318 * 2) too many balance attempts have failed.
3319 */
3320
Luis Henriques708dc512009-03-16 19:59:02 +00003321 tsk_cache_hot = task_hot(p, rq->clock, sd);
3322 if (!tsk_cache_hot ||
3323 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003324#ifdef CONFIG_SCHEDSTATS
Luis Henriques708dc512009-03-16 19:59:02 +00003325 if (tsk_cache_hot) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003326 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02003327 schedstat_inc(p, se.nr_forced_migrations);
3328 }
Ingo Molnarda84d962007-10-15 17:00:18 +02003329#endif
3330 return 1;
3331 }
3332
Luis Henriques708dc512009-03-16 19:59:02 +00003333 if (tsk_cache_hot) {
Ingo Molnarcc367732007-10-15 17:00:18 +02003334 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02003335 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 return 1;
3338}
3339
Peter Williamse1d14842007-10-24 18:23:51 +02003340static unsigned long
3341balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3342 unsigned long max_load_move, struct sched_domain *sd,
3343 enum cpu_idle_type idle, int *all_pinned,
3344 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003345{
Peter Zijlstra051c6762008-06-27 13:41:31 +02003346 int loops = 0, pulled = 0, pinned = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02003347 struct task_struct *p;
3348 long rem_load_move = max_load_move;
3349
Peter Williamse1d14842007-10-24 18:23:51 +02003350 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003351 goto out;
3352
3353 pinned = 1;
3354
3355 /*
3356 * Start the load-balancing iterator:
3357 */
3358 p = iterator->start(iterator->arg);
3359next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003360 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003361 goto out;
Peter Zijlstra051c6762008-06-27 13:41:31 +02003362
3363 if ((p->se.load.weight >> 1) > rem_load_move ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003364 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003365 p = iterator->next(iterator->arg);
3366 goto next;
3367 }
3368
3369 pull_task(busiest, p, this_rq, this_cpu);
3370 pulled++;
3371 rem_load_move -= p->se.load.weight;
3372
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003373#ifdef CONFIG_PREEMPT
3374 /*
3375 * NEWIDLE balancing is a source of latency, so preemptible kernels
3376 * will stop after the first task is pulled to minimize the critical
3377 * section.
3378 */
3379 if (idle == CPU_NEWLY_IDLE)
3380 goto out;
3381#endif
3382
Ingo Molnardd41f592007-07-09 18:51:59 +02003383 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003384 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003385 */
Peter Williamse1d14842007-10-24 18:23:51 +02003386 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003387 if (p->prio < *this_best_prio)
3388 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003389 p = iterator->next(iterator->arg);
3390 goto next;
3391 }
3392out:
3393 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003394 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003395 * so we can safely collect pull_task() stats here rather than
3396 * inside pull_task().
3397 */
3398 schedstat_add(sd, lb_gained[idle], pulled);
3399
3400 if (all_pinned)
3401 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003402
3403 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003404}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003405
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406/*
Peter Williams43010652007-08-09 11:16:46 +02003407 * move_tasks tries to move up to max_load_move weighted load from busiest to
3408 * this_rq, as part of a balancing operation within domain "sd".
3409 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 *
3411 * Called with both runqueues locked.
3412 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003413static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003414 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003415 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003416 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003418 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003419 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003420 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
Ingo Molnardd41f592007-07-09 18:51:59 +02003422 do {
Peter Williams43010652007-08-09 11:16:46 +02003423 total_load_moved +=
3424 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003425 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003426 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003427 class = class->next;
Gregory Haskinsc4acb2c2008-06-27 14:29:55 -06003428
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003429#ifdef CONFIG_PREEMPT
3430 /*
3431 * NEWIDLE balancing is a source of latency, so preemptible
3432 * kernels will stop after the first task is pulled to minimize
3433 * the critical section.
3434 */
Gregory Haskinsc4acb2c2008-06-27 14:29:55 -06003435 if (idle == CPU_NEWLY_IDLE && this_rq->nr_running)
3436 break;
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003437#endif
Peter Williams43010652007-08-09 11:16:46 +02003438 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
Peter Williams43010652007-08-09 11:16:46 +02003440 return total_load_moved > 0;
3441}
3442
Peter Williamse1d14842007-10-24 18:23:51 +02003443static int
3444iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3445 struct sched_domain *sd, enum cpu_idle_type idle,
3446 struct rq_iterator *iterator)
3447{
3448 struct task_struct *p = iterator->start(iterator->arg);
3449 int pinned = 0;
3450
3451 while (p) {
3452 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3453 pull_task(busiest, p, this_rq, this_cpu);
3454 /*
3455 * Right now, this is only the second place pull_task()
3456 * is called, so we can safely collect pull_task()
3457 * stats here rather than inside pull_task().
3458 */
3459 schedstat_inc(sd, lb_gained[idle]);
3460
3461 return 1;
3462 }
3463 p = iterator->next(iterator->arg);
3464 }
3465
3466 return 0;
3467}
3468
Peter Williams43010652007-08-09 11:16:46 +02003469/*
3470 * move_one_task tries to move exactly one task from busiest to this_rq, as
3471 * part of active balancing operations within "domain".
3472 * Returns 1 if successful and 0 otherwise.
3473 *
3474 * Called with both runqueues locked.
3475 */
3476static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3477 struct sched_domain *sd, enum cpu_idle_type idle)
3478{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003479 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003480
Hiroshi Shimamotocde7e5ca2009-08-18 13:01:01 +09003481 for_each_class(class) {
Peter Williamse1d14842007-10-24 18:23:51 +02003482 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003483 return 1;
Hiroshi Shimamotocde7e5ca2009-08-18 13:01:01 +09003484 }
Peter Williams43010652007-08-09 11:16:46 +02003485
3486 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487}
Gautham R Shenoy67bb6c02009-03-25 14:43:35 +05303488/********** Helpers for find_busiest_group ************************/
Randy Dunlapd5ac5372009-03-28 21:52:47 -07003489/*
Gautham R Shenoy222d6562009-03-25 14:43:56 +05303490 * sd_lb_stats - Structure to store the statistics of a sched_domain
3491 * during load balancing.
3492 */
3493struct sd_lb_stats {
3494 struct sched_group *busiest; /* Busiest group in this sd */
3495 struct sched_group *this; /* Local group in this sd */
3496 unsigned long total_load; /* Total load of all groups in sd */
3497 unsigned long total_pwr; /* Total power of all groups in sd */
3498 unsigned long avg_load; /* Average load across all groups in sd */
3499
3500 /** Statistics of this group */
3501 unsigned long this_load;
3502 unsigned long this_load_per_task;
3503 unsigned long this_nr_running;
3504
3505 /* Statistics of the busiest group */
3506 unsigned long max_load;
3507 unsigned long busiest_load_per_task;
3508 unsigned long busiest_nr_running;
3509
3510 int group_imb; /* Is there imbalance in this sd */
3511#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3512 int power_savings_balance; /* Is powersave balance needed for this sd */
3513 struct sched_group *group_min; /* Least loaded group in sd */
3514 struct sched_group *group_leader; /* Group which relieves group_min */
3515 unsigned long min_load_per_task; /* load_per_task in group_min */
3516 unsigned long leader_nr_running; /* Nr running of group_leader */
3517 unsigned long min_nr_running; /* Nr running of group_min */
3518#endif
3519};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
3521/*
Gautham R Shenoy381be782009-03-25 14:43:46 +05303522 * sg_lb_stats - stats of a sched_group required for load_balancing
3523 */
3524struct sg_lb_stats {
3525 unsigned long avg_load; /*Avg load across the CPUs of the group */
3526 unsigned long group_load; /* Total load over the CPUs of the group */
3527 unsigned long sum_nr_running; /* Nr tasks running in the group */
3528 unsigned long sum_weighted_load; /* Weighted load of group's tasks */
3529 unsigned long group_capacity;
3530 int group_imb; /* Is there an imbalance in the group ? */
3531};
3532
3533/**
Gautham R Shenoy67bb6c02009-03-25 14:43:35 +05303534 * group_first_cpu - Returns the first cpu in the cpumask of a sched_group.
3535 * @group: The group whose first cpu is to be returned.
3536 */
3537static inline unsigned int group_first_cpu(struct sched_group *group)
3538{
3539 return cpumask_first(sched_group_cpus(group));
3540}
3541
3542/**
3543 * get_sd_load_idx - Obtain the load index for a given sched domain.
3544 * @sd: The sched_domain whose load_idx is to be obtained.
3545 * @idle: The Idle status of the CPU for whose sd load_icx is obtained.
3546 */
3547static inline int get_sd_load_idx(struct sched_domain *sd,
3548 enum cpu_idle_type idle)
3549{
3550 int load_idx;
3551
3552 switch (idle) {
3553 case CPU_NOT_IDLE:
3554 load_idx = sd->busy_idx;
3555 break;
3556
3557 case CPU_NEWLY_IDLE:
3558 load_idx = sd->newidle_idx;
3559 break;
3560 default:
3561 load_idx = sd->idle_idx;
3562 break;
3563 }
3564
3565 return load_idx;
3566}
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303567
3568
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303569#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3570/**
3571 * init_sd_power_savings_stats - Initialize power savings statistics for
3572 * the given sched_domain, during load balancing.
3573 *
3574 * @sd: Sched domain whose power-savings statistics are to be initialized.
3575 * @sds: Variable containing the statistics for sd.
3576 * @idle: Idle status of the CPU at which we're performing load-balancing.
3577 */
3578static inline void init_sd_power_savings_stats(struct sched_domain *sd,
3579 struct sd_lb_stats *sds, enum cpu_idle_type idle)
3580{
3581 /*
3582 * Busy processors will not participate in power savings
3583 * balance.
3584 */
3585 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
3586 sds->power_savings_balance = 0;
3587 else {
3588 sds->power_savings_balance = 1;
3589 sds->min_nr_running = ULONG_MAX;
3590 sds->leader_nr_running = 0;
3591 }
3592}
3593
3594/**
3595 * update_sd_power_savings_stats - Update the power saving stats for a
3596 * sched_domain while performing load balancing.
3597 *
3598 * @group: sched_group belonging to the sched_domain under consideration.
3599 * @sds: Variable containing the statistics of the sched_domain
3600 * @local_group: Does group contain the CPU for which we're performing
3601 * load balancing ?
3602 * @sgs: Variable containing the statistics of the group.
3603 */
3604static inline void update_sd_power_savings_stats(struct sched_group *group,
3605 struct sd_lb_stats *sds, int local_group, struct sg_lb_stats *sgs)
3606{
3607
3608 if (!sds->power_savings_balance)
3609 return;
3610
3611 /*
3612 * If the local group is idle or completely loaded
3613 * no need to do power savings balance at this domain
3614 */
3615 if (local_group && (sds->this_nr_running >= sgs->group_capacity ||
3616 !sds->this_nr_running))
3617 sds->power_savings_balance = 0;
3618
3619 /*
3620 * If a group is already running at full capacity or idle,
3621 * don't include that group in power savings calculations
3622 */
3623 if (!sds->power_savings_balance ||
3624 sgs->sum_nr_running >= sgs->group_capacity ||
3625 !sgs->sum_nr_running)
3626 return;
3627
3628 /*
3629 * Calculate the group which has the least non-idle load.
3630 * This is the group from where we need to pick up the load
3631 * for saving power
3632 */
3633 if ((sgs->sum_nr_running < sds->min_nr_running) ||
3634 (sgs->sum_nr_running == sds->min_nr_running &&
3635 group_first_cpu(group) > group_first_cpu(sds->group_min))) {
3636 sds->group_min = group;
3637 sds->min_nr_running = sgs->sum_nr_running;
3638 sds->min_load_per_task = sgs->sum_weighted_load /
3639 sgs->sum_nr_running;
3640 }
3641
3642 /*
3643 * Calculate the group which is almost near its
3644 * capacity but still has some space to pick up some load
3645 * from other group and save more power
3646 */
Gautham R Shenoyd899a782009-09-02 16:59:10 +05303647 if (sgs->sum_nr_running + 1 > sgs->group_capacity)
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303648 return;
3649
3650 if (sgs->sum_nr_running > sds->leader_nr_running ||
3651 (sgs->sum_nr_running == sds->leader_nr_running &&
3652 group_first_cpu(group) < group_first_cpu(sds->group_leader))) {
3653 sds->group_leader = group;
3654 sds->leader_nr_running = sgs->sum_nr_running;
3655 }
3656}
3657
3658/**
Randy Dunlapd5ac5372009-03-28 21:52:47 -07003659 * check_power_save_busiest_group - see if there is potential for some power-savings balance
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303660 * @sds: Variable containing the statistics of the sched_domain
3661 * under consideration.
3662 * @this_cpu: Cpu at which we're currently performing load-balancing.
3663 * @imbalance: Variable to store the imbalance.
3664 *
Randy Dunlapd5ac5372009-03-28 21:52:47 -07003665 * Description:
3666 * Check if we have potential to perform some power-savings balance.
3667 * If yes, set the busiest group to be the least loaded group in the
3668 * sched_domain, so that it's CPUs can be put to idle.
3669 *
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303670 * Returns 1 if there is potential to perform power-savings balance.
3671 * Else returns 0.
3672 */
3673static inline int check_power_save_busiest_group(struct sd_lb_stats *sds,
3674 int this_cpu, unsigned long *imbalance)
3675{
3676 if (!sds->power_savings_balance)
3677 return 0;
3678
3679 if (sds->this != sds->group_leader ||
3680 sds->group_leader == sds->group_min)
3681 return 0;
3682
3683 *imbalance = sds->min_load_per_task;
3684 sds->busiest = sds->group_min;
3685
3686 if (sched_mc_power_savings >= POWERSAVINGS_BALANCE_WAKEUP) {
3687 cpu_rq(this_cpu)->rd->sched_mc_preferred_wakeup_cpu =
3688 group_first_cpu(sds->group_leader);
3689 }
3690
3691 return 1;
3692
3693}
3694#else /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
3695static inline void init_sd_power_savings_stats(struct sched_domain *sd,
3696 struct sd_lb_stats *sds, enum cpu_idle_type idle)
3697{
3698 return;
3699}
3700
3701static inline void update_sd_power_savings_stats(struct sched_group *group,
3702 struct sd_lb_stats *sds, int local_group, struct sg_lb_stats *sgs)
3703{
3704 return;
3705}
3706
3707static inline int check_power_save_busiest_group(struct sd_lb_stats *sds,
3708 int this_cpu, unsigned long *imbalance)
3709{
3710 return 0;
3711}
3712#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
3713
Peter Zijlstrae9e92502009-09-01 10:34:37 +02003714unsigned long __weak arch_scale_smt_power(struct sched_domain *sd, int cpu)
Peter Zijlstraab292302009-09-01 10:34:36 +02003715{
3716 unsigned long weight = cpumask_weight(sched_domain_span(sd));
3717 unsigned long smt_gain = sd->smt_gain;
3718
3719 smt_gain /= weight;
3720
3721 return smt_gain;
3722}
3723
Peter Zijlstrae9e92502009-09-01 10:34:37 +02003724unsigned long scale_rt_power(int cpu)
3725{
3726 struct rq *rq = cpu_rq(cpu);
3727 u64 total, available;
3728
3729 sched_avg_update(rq);
3730
3731 total = sched_avg_period() + (rq->clock - rq->age_stamp);
3732 available = total - rq->rt_avg;
3733
3734 if (unlikely((s64)total < SCHED_LOAD_SCALE))
3735 total = SCHED_LOAD_SCALE;
3736
3737 total >>= SCHED_LOAD_SHIFT;
3738
3739 return div_u64(available, total);
3740}
3741
Peter Zijlstraab292302009-09-01 10:34:36 +02003742static void update_cpu_power(struct sched_domain *sd, int cpu)
3743{
3744 unsigned long weight = cpumask_weight(sched_domain_span(sd));
3745 unsigned long power = SCHED_LOAD_SCALE;
3746 struct sched_group *sdg = sd->groups;
Peter Zijlstraab292302009-09-01 10:34:36 +02003747
3748 /* here we could scale based on cpufreq */
3749
3750 if ((sd->flags & SD_SHARE_CPUPOWER) && weight > 1) {
Peter Zijlstrae9e92502009-09-01 10:34:37 +02003751 power *= arch_scale_smt_power(sd, cpu);
Peter Zijlstraab292302009-09-01 10:34:36 +02003752 power >>= SCHED_LOAD_SHIFT;
3753 }
3754
Peter Zijlstrae9e92502009-09-01 10:34:37 +02003755 power *= scale_rt_power(cpu);
3756 power >>= SCHED_LOAD_SHIFT;
3757
3758 if (!power)
3759 power = 1;
Peter Zijlstraab292302009-09-01 10:34:36 +02003760
Peter Zijlstra18a38852009-09-01 10:34:39 +02003761 sdg->cpu_power = power;
Peter Zijlstraab292302009-09-01 10:34:36 +02003762}
3763
3764static void update_group_power(struct sched_domain *sd, int cpu)
Peter Zijlstracc9fba72009-09-01 10:34:34 +02003765{
3766 struct sched_domain *child = sd->child;
3767 struct sched_group *group, *sdg = sd->groups;
Peter Zijlstracc9fba72009-09-01 10:34:34 +02003768
3769 if (!child) {
Peter Zijlstraab292302009-09-01 10:34:36 +02003770 update_cpu_power(sd, cpu);
Peter Zijlstracc9fba72009-09-01 10:34:34 +02003771 return;
3772 }
3773
Peter Zijlstra18a38852009-09-01 10:34:39 +02003774 sdg->cpu_power = 0;
Peter Zijlstracc9fba72009-09-01 10:34:34 +02003775
3776 group = child->groups;
3777 do {
Peter Zijlstra18a38852009-09-01 10:34:39 +02003778 sdg->cpu_power += group->cpu_power;
Peter Zijlstracc9fba72009-09-01 10:34:34 +02003779 group = group->next;
3780 } while (group != child->groups);
Peter Zijlstracc9fba72009-09-01 10:34:34 +02003781}
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303782
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303783/**
3784 * update_sg_lb_stats - Update sched_group's statistics for load balancing.
3785 * @group: sched_group whose statistics are to be updated.
3786 * @this_cpu: Cpu for which load balance is currently performed.
3787 * @idle: Idle status of this_cpu
3788 * @load_idx: Load index of sched_domain of this_cpu for load calc.
3789 * @sd_idle: Idle status of the sched_domain containing group.
3790 * @local_group: Does group contain this_cpu.
3791 * @cpus: Set of cpus considered for load balancing.
3792 * @balance: Should we balance.
3793 * @sgs: variable to hold the statistics for this group.
3794 */
Peter Zijlstracc9fba72009-09-01 10:34:34 +02003795static inline void update_sg_lb_stats(struct sched_domain *sd,
3796 struct sched_group *group, int this_cpu,
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303797 enum cpu_idle_type idle, int load_idx, int *sd_idle,
3798 int local_group, const struct cpumask *cpus,
3799 int *balance, struct sg_lb_stats *sgs)
3800{
3801 unsigned long load, max_cpu_load, min_cpu_load;
3802 int i;
3803 unsigned int balance_cpu = -1, first_idle_cpu = 0;
3804 unsigned long sum_avg_load_per_task;
3805 unsigned long avg_load_per_task;
3806
Peter Zijlstracc9fba72009-09-01 10:34:34 +02003807 if (local_group) {
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303808 balance_cpu = group_first_cpu(group);
Peter Zijlstracc9fba72009-09-01 10:34:34 +02003809 if (balance_cpu == this_cpu)
Peter Zijlstraab292302009-09-01 10:34:36 +02003810 update_group_power(sd, this_cpu);
Peter Zijlstracc9fba72009-09-01 10:34:34 +02003811 }
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303812
3813 /* Tally up the load of all CPUs in the group */
3814 sum_avg_load_per_task = avg_load_per_task = 0;
3815 max_cpu_load = 0;
3816 min_cpu_load = ~0UL;
3817
3818 for_each_cpu_and(i, sched_group_cpus(group), cpus) {
3819 struct rq *rq = cpu_rq(i);
3820
3821 if (*sd_idle && rq->nr_running)
3822 *sd_idle = 0;
3823
3824 /* Bias balancing toward cpus of our domain */
3825 if (local_group) {
3826 if (idle_cpu(i) && !first_idle_cpu) {
3827 first_idle_cpu = 1;
3828 balance_cpu = i;
3829 }
3830
3831 load = target_load(i, load_idx);
3832 } else {
3833 load = source_load(i, load_idx);
3834 if (load > max_cpu_load)
3835 max_cpu_load = load;
3836 if (min_cpu_load > load)
3837 min_cpu_load = load;
3838 }
3839
3840 sgs->group_load += load;
3841 sgs->sum_nr_running += rq->nr_running;
3842 sgs->sum_weighted_load += weighted_cpuload(i);
3843
3844 sum_avg_load_per_task += cpu_avg_load_per_task(i);
3845 }
3846
3847 /*
3848 * First idle cpu or the first cpu(busiest) in this sched group
3849 * is eligible for doing load balancing at this and above
3850 * domains. In the newly idle case, we will allow all the cpu's
3851 * to do the newly idle load balance.
3852 */
3853 if (idle != CPU_NEWLY_IDLE && local_group &&
3854 balance_cpu != this_cpu && balance) {
3855 *balance = 0;
3856 return;
3857 }
3858
3859 /* Adjust by relative CPU power of the group */
Peter Zijlstra18a38852009-09-01 10:34:39 +02003860 sgs->avg_load = (sgs->group_load * SCHED_LOAD_SCALE) / group->cpu_power;
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303861
3862
3863 /*
3864 * Consider the group unbalanced when the imbalance is larger
3865 * than the average weight of two tasks.
3866 *
3867 * APZ: with cgroup the avg task weight can vary wildly and
3868 * might not be a suitable number - should we keep a
3869 * normalized nr_running number somewhere that negates
3870 * the hierarchy?
3871 */
Peter Zijlstra18a38852009-09-01 10:34:39 +02003872 avg_load_per_task = (sum_avg_load_per_task * SCHED_LOAD_SCALE) /
3873 group->cpu_power;
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303874
3875 if ((max_cpu_load - min_cpu_load) > 2*avg_load_per_task)
3876 sgs->group_imb = 1;
3877
Peter Zijlstrabdb94aa2009-09-01 10:34:38 +02003878 sgs->group_capacity =
Peter Zijlstra18a38852009-09-01 10:34:39 +02003879 DIV_ROUND_CLOSEST(group->cpu_power, SCHED_LOAD_SCALE);
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303880}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303882/**
3883 * update_sd_lb_stats - Update sched_group's statistics for load balancing.
3884 * @sd: sched_domain whose statistics are to be updated.
3885 * @this_cpu: Cpu for which load balance is currently performed.
3886 * @idle: Idle status of this_cpu
3887 * @sd_idle: Idle status of the sched_domain containing group.
3888 * @cpus: Set of cpus considered for load balancing.
3889 * @balance: Should we balance.
3890 * @sds: variable to hold the statistics for this sched_domain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 */
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303892static inline void update_sd_lb_stats(struct sched_domain *sd, int this_cpu,
3893 enum cpu_idle_type idle, int *sd_idle,
3894 const struct cpumask *cpus, int *balance,
3895 struct sd_lb_stats *sds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896{
Peter Zijlstrab5d978e2009-09-01 10:34:33 +02003897 struct sched_domain *child = sd->child;
Gautham R Shenoy222d6562009-03-25 14:43:56 +05303898 struct sched_group *group = sd->groups;
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303899 struct sg_lb_stats sgs;
Peter Zijlstrab5d978e2009-09-01 10:34:33 +02003900 int load_idx, prefer_sibling = 0;
3901
3902 if (child && child->flags & SD_PREFER_SIBLING)
3903 prefer_sibling = 1;
Gautham R Shenoy222d6562009-03-25 14:43:56 +05303904
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303905 init_sd_power_savings_stats(sd, sds, idle);
Gautham R Shenoy67bb6c02009-03-25 14:43:35 +05303906 load_idx = get_sd_load_idx(sd, idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
3908 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 int local_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910
Rusty Russell758b2cd2008-11-25 02:35:04 +10303911 local_group = cpumask_test_cpu(this_cpu,
3912 sched_group_cpus(group));
Gautham R Shenoy381be782009-03-25 14:43:46 +05303913 memset(&sgs, 0, sizeof(sgs));
Peter Zijlstracc9fba72009-09-01 10:34:34 +02003914 update_sg_lb_stats(sd, group, this_cpu, idle, load_idx, sd_idle,
Gautham R Shenoy1f8c5532009-03-25 14:43:51 +05303915 local_group, cpus, balance, &sgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303917 if (local_group && balance && !(*balance))
3918 return;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003919
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303920 sds->total_load += sgs.group_load;
Peter Zijlstra18a38852009-09-01 10:34:39 +02003921 sds->total_pwr += group->cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Peter Zijlstrab5d978e2009-09-01 10:34:33 +02003923 /*
3924 * In case the child domain prefers tasks go to siblings
3925 * first, lower the group capacity to one so that we'll try
3926 * and move all the excess tasks away.
3927 */
3928 if (prefer_sibling)
Peter Zijlstrabdb94aa2009-09-01 10:34:38 +02003929 sgs.group_capacity = min(sgs.group_capacity, 1UL);
Peter Zijlstrab5d978e2009-09-01 10:34:33 +02003930
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 if (local_group) {
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303932 sds->this_load = sgs.avg_load;
3933 sds->this = group;
3934 sds->this_nr_running = sgs.sum_nr_running;
3935 sds->this_load_per_task = sgs.sum_weighted_load;
3936 } else if (sgs.avg_load > sds->max_load &&
Gautham R Shenoy381be782009-03-25 14:43:46 +05303937 (sgs.sum_nr_running > sgs.group_capacity ||
3938 sgs.group_imb)) {
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303939 sds->max_load = sgs.avg_load;
3940 sds->busiest = group;
3941 sds->busiest_nr_running = sgs.sum_nr_running;
3942 sds->busiest_load_per_task = sgs.sum_weighted_load;
3943 sds->group_imb = sgs.group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003945
Gautham R Shenoyc071df12009-03-25 14:44:22 +05303946 update_sd_power_savings_stats(group, sds, local_group, &sgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 group = group->next;
3948 } while (group != sd->groups);
Gautham R Shenoy37abe192009-03-25 14:44:01 +05303949}
Gautham R Shenoy2e6f44a2009-03-25 14:44:06 +05303950
3951/**
3952 * fix_small_imbalance - Calculate the minor imbalance that exists
Gautham R Shenoydbc523a2009-03-25 14:44:12 +05303953 * amongst the groups of a sched_domain, during
3954 * load balancing.
Gautham R Shenoy2e6f44a2009-03-25 14:44:06 +05303955 * @sds: Statistics of the sched_domain whose imbalance is to be calculated.
3956 * @this_cpu: The cpu at whose sched_domain we're performing load-balance.
3957 * @imbalance: Variable to store the imbalance.
3958 */
3959static inline void fix_small_imbalance(struct sd_lb_stats *sds,
3960 int this_cpu, unsigned long *imbalance)
3961{
3962 unsigned long tmp, pwr_now = 0, pwr_move = 0;
3963 unsigned int imbn = 2;
3964
3965 if (sds->this_nr_running) {
3966 sds->this_load_per_task /= sds->this_nr_running;
3967 if (sds->busiest_load_per_task >
3968 sds->this_load_per_task)
3969 imbn = 1;
3970 } else
3971 sds->this_load_per_task =
3972 cpu_avg_load_per_task(this_cpu);
3973
3974 if (sds->max_load - sds->this_load + sds->busiest_load_per_task >=
3975 sds->busiest_load_per_task * imbn) {
3976 *imbalance = sds->busiest_load_per_task;
3977 return;
3978 }
3979
3980 /*
3981 * OK, we don't have enough imbalance to justify moving tasks,
3982 * however we may be able to increase total CPU power used by
3983 * moving them.
3984 */
3985
Peter Zijlstra18a38852009-09-01 10:34:39 +02003986 pwr_now += sds->busiest->cpu_power *
Gautham R Shenoy2e6f44a2009-03-25 14:44:06 +05303987 min(sds->busiest_load_per_task, sds->max_load);
Peter Zijlstra18a38852009-09-01 10:34:39 +02003988 pwr_now += sds->this->cpu_power *
Gautham R Shenoy2e6f44a2009-03-25 14:44:06 +05303989 min(sds->this_load_per_task, sds->this_load);
3990 pwr_now /= SCHED_LOAD_SCALE;
3991
3992 /* Amount of load we'd subtract */
Peter Zijlstra18a38852009-09-01 10:34:39 +02003993 tmp = (sds->busiest_load_per_task * SCHED_LOAD_SCALE) /
3994 sds->busiest->cpu_power;
Gautham R Shenoy2e6f44a2009-03-25 14:44:06 +05303995 if (sds->max_load > tmp)
Peter Zijlstra18a38852009-09-01 10:34:39 +02003996 pwr_move += sds->busiest->cpu_power *
Gautham R Shenoy2e6f44a2009-03-25 14:44:06 +05303997 min(sds->busiest_load_per_task, sds->max_load - tmp);
3998
3999 /* Amount of load we'd add */
Peter Zijlstra18a38852009-09-01 10:34:39 +02004000 if (sds->max_load * sds->busiest->cpu_power <
Gautham R Shenoy2e6f44a2009-03-25 14:44:06 +05304001 sds->busiest_load_per_task * SCHED_LOAD_SCALE)
Peter Zijlstra18a38852009-09-01 10:34:39 +02004002 tmp = (sds->max_load * sds->busiest->cpu_power) /
4003 sds->this->cpu_power;
Gautham R Shenoy2e6f44a2009-03-25 14:44:06 +05304004 else
Peter Zijlstra18a38852009-09-01 10:34:39 +02004005 tmp = (sds->busiest_load_per_task * SCHED_LOAD_SCALE) /
4006 sds->this->cpu_power;
4007 pwr_move += sds->this->cpu_power *
Gautham R Shenoy2e6f44a2009-03-25 14:44:06 +05304008 min(sds->this_load_per_task, sds->this_load + tmp);
4009 pwr_move /= SCHED_LOAD_SCALE;
4010
4011 /* Move if we gain throughput */
4012 if (pwr_move > pwr_now)
4013 *imbalance = sds->busiest_load_per_task;
4014}
Gautham R Shenoydbc523a2009-03-25 14:44:12 +05304015
4016/**
4017 * calculate_imbalance - Calculate the amount of imbalance present within the
4018 * groups of a given sched_domain during load balance.
4019 * @sds: statistics of the sched_domain whose imbalance is to be calculated.
4020 * @this_cpu: Cpu for which currently load balance is being performed.
4021 * @imbalance: The variable to store the imbalance.
4022 */
4023static inline void calculate_imbalance(struct sd_lb_stats *sds, int this_cpu,
4024 unsigned long *imbalance)
4025{
4026 unsigned long max_pull;
4027 /*
4028 * In the presence of smp nice balancing, certain scenarios can have
4029 * max load less than avg load(as we skip the groups at or below
4030 * its cpu_power, while calculating max_load..)
4031 */
4032 if (sds->max_load < sds->avg_load) {
4033 *imbalance = 0;
4034 return fix_small_imbalance(sds, this_cpu, imbalance);
4035 }
4036
4037 /* Don't want to pull so many tasks that a group would go idle */
4038 max_pull = min(sds->max_load - sds->avg_load,
4039 sds->max_load - sds->busiest_load_per_task);
4040
4041 /* How much load to actually move to equalise the imbalance */
Peter Zijlstra18a38852009-09-01 10:34:39 +02004042 *imbalance = min(max_pull * sds->busiest->cpu_power,
4043 (sds->avg_load - sds->this_load) * sds->this->cpu_power)
Gautham R Shenoydbc523a2009-03-25 14:44:12 +05304044 / SCHED_LOAD_SCALE;
4045
4046 /*
4047 * if *imbalance is less than the average load per runnable task
4048 * there is no gaurantee that any tasks will be moved so we'll have
4049 * a think about bumping its value to force at least one task to be
4050 * moved
4051 */
4052 if (*imbalance < sds->busiest_load_per_task)
4053 return fix_small_imbalance(sds, this_cpu, imbalance);
4054
4055}
Gautham R Shenoy37abe192009-03-25 14:44:01 +05304056/******* find_busiest_group() helpers end here *********************/
4057
Gautham R Shenoyb7bb4c92009-03-25 14:44:27 +05304058/**
4059 * find_busiest_group - Returns the busiest group within the sched_domain
4060 * if there is an imbalance. If there isn't an imbalance, and
4061 * the user has opted for power-savings, it returns a group whose
4062 * CPUs can be put to idle by rebalancing those tasks elsewhere, if
4063 * such a group exists.
4064 *
4065 * Also calculates the amount of weighted load which should be moved
4066 * to restore balance.
4067 *
4068 * @sd: The sched_domain whose busiest group is to be returned.
4069 * @this_cpu: The cpu for which load balancing is currently being performed.
4070 * @imbalance: Variable which stores amount of weighted load which should
4071 * be moved to restore balance/put a group to idle.
4072 * @idle: The idle status of this_cpu.
4073 * @sd_idle: The idleness of sd
4074 * @cpus: The set of CPUs under consideration for load-balancing.
4075 * @balance: Pointer to a variable indicating if this_cpu
4076 * is the appropriate cpu to perform load balancing at this_level.
4077 *
4078 * Returns: - the busiest group if imbalance exists.
4079 * - If no imbalance and user has opted for power-savings balance,
4080 * return the least loaded group whose CPUs can be
4081 * put to idle by rebalancing its tasks onto our group.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 */
4083static struct sched_group *
4084find_busiest_group(struct sched_domain *sd, int this_cpu,
4085 unsigned long *imbalance, enum cpu_idle_type idle,
4086 int *sd_idle, const struct cpumask *cpus, int *balance)
4087{
Gautham R Shenoy37abe192009-03-25 14:44:01 +05304088 struct sd_lb_stats sds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Gautham R Shenoy37abe192009-03-25 14:44:01 +05304090 memset(&sds, 0, sizeof(sds));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
Gautham R Shenoy37abe192009-03-25 14:44:01 +05304092 /*
4093 * Compute the various statistics relavent for load balancing at
4094 * this level.
4095 */
4096 update_sd_lb_stats(sd, this_cpu, idle, sd_idle, cpus,
4097 balance, &sds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098
Gautham R Shenoyb7bb4c92009-03-25 14:44:27 +05304099 /* Cases where imbalance does not exist from POV of this_cpu */
4100 /* 1) this_cpu is not the appropriate cpu to perform load balancing
4101 * at this level.
4102 * 2) There is no busy sibling group to pull from.
4103 * 3) This group is the busiest group.
4104 * 4) This group is more busy than the avg busieness at this
4105 * sched_domain.
4106 * 5) The imbalance is within the specified limit.
4107 * 6) Any rebalance would lead to ping-pong
4108 */
Gautham R Shenoy37abe192009-03-25 14:44:01 +05304109 if (balance && !(*balance))
4110 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111
Gautham R Shenoyb7bb4c92009-03-25 14:44:27 +05304112 if (!sds.busiest || sds.busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 goto out_balanced;
4114
Gautham R Shenoyb7bb4c92009-03-25 14:44:27 +05304115 if (sds.this_load >= sds.max_load)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 goto out_balanced;
4117
Gautham R Shenoy222d6562009-03-25 14:43:56 +05304118 sds.avg_load = (SCHED_LOAD_SCALE * sds.total_load) / sds.total_pwr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
Gautham R Shenoyb7bb4c92009-03-25 14:44:27 +05304120 if (sds.this_load >= sds.avg_load)
4121 goto out_balanced;
4122
4123 if (100 * sds.max_load <= sd->imbalance_pct * sds.this_load)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 goto out_balanced;
4125
Gautham R Shenoy222d6562009-03-25 14:43:56 +05304126 sds.busiest_load_per_task /= sds.busiest_nr_running;
4127 if (sds.group_imb)
4128 sds.busiest_load_per_task =
4129 min(sds.busiest_load_per_task, sds.avg_load);
Ken Chen908a7c12007-10-17 16:55:11 +02004130
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 /*
4132 * We're trying to get all the cpus to the average_load, so we don't
4133 * want to push ourselves above the average load, nor do we wish to
4134 * reduce the max loaded cpu below the average load, as either of these
4135 * actions would just result in more rebalancing later, and ping-pong
4136 * tasks around. Thus we look for the minimum possible imbalance.
4137 * Negative imbalances (*we* are more loaded than anyone else) will
4138 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004139 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 * appear as very large values with unsigned longs.
4141 */
Gautham R Shenoy222d6562009-03-25 14:43:56 +05304142 if (sds.max_load <= sds.busiest_load_per_task)
Peter Williams2dd73a42006-06-27 02:54:34 -07004143 goto out_balanced;
4144
Gautham R Shenoydbc523a2009-03-25 14:44:12 +05304145 /* Looks like there is an imbalance. Compute it */
4146 calculate_imbalance(&sds, this_cpu, imbalance);
Gautham R Shenoy222d6562009-03-25 14:43:56 +05304147 return sds.busiest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148
4149out_balanced:
Gautham R Shenoyc071df12009-03-25 14:44:22 +05304150 /*
4151 * There is no obvious imbalance. But check if we can do some balancing
4152 * to save power.
4153 */
4154 if (check_power_save_busiest_group(&sds, this_cpu, imbalance))
4155 return sds.busiest;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004156ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157 *imbalance = 0;
4158 return NULL;
4159}
4160
Peter Zijlstrabdb94aa2009-09-01 10:34:38 +02004161static struct sched_group *group_of(int cpu)
4162{
4163 struct sched_domain *sd = rcu_dereference(cpu_rq(cpu)->sd);
4164
4165 if (!sd)
4166 return NULL;
4167
4168 return sd->groups;
4169}
4170
4171static unsigned long power_of(int cpu)
4172{
4173 struct sched_group *group = group_of(cpu);
4174
4175 if (!group)
4176 return SCHED_LOAD_SCALE;
4177
Peter Zijlstra18a38852009-09-01 10:34:39 +02004178 return group->cpu_power;
Peter Zijlstrabdb94aa2009-09-01 10:34:38 +02004179}
4180
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181/*
4182 * find_busiest_queue - find the busiest runqueue among the cpus in group.
4183 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004184static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004185find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Rusty Russell96f874e2008-11-25 02:35:14 +10304186 unsigned long imbalance, const struct cpumask *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004188 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07004189 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 int i;
4191
Rusty Russell758b2cd2008-11-25 02:35:04 +10304192 for_each_cpu(i, sched_group_cpus(group)) {
Peter Zijlstrabdb94aa2009-09-01 10:34:38 +02004193 unsigned long power = power_of(i);
4194 unsigned long capacity = DIV_ROUND_CLOSEST(power, SCHED_LOAD_SCALE);
Ingo Molnardd41f592007-07-09 18:51:59 +02004195 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004196
Rusty Russell96f874e2008-11-25 02:35:14 +10304197 if (!cpumask_test_cpu(i, cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004198 continue;
4199
Ingo Molnar48f24c42006-07-03 00:25:40 -07004200 rq = cpu_rq(i);
Peter Zijlstrabdb94aa2009-09-01 10:34:38 +02004201 wl = weighted_cpuload(i) * SCHED_LOAD_SCALE;
4202 wl /= power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203
Peter Zijlstrabdb94aa2009-09-01 10:34:38 +02004204 if (capacity && rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07004205 continue;
4206
Ingo Molnardd41f592007-07-09 18:51:59 +02004207 if (wl > max_load) {
4208 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004209 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 }
4211 }
4212
4213 return busiest;
4214}
4215
4216/*
Nick Piggin77391d72005-06-25 14:57:30 -07004217 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
4218 * so long as it is large enough.
4219 */
4220#define MAX_PINNED_INTERVAL 512
4221
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304222/* Working cpumask for load_balance and load_balance_newidle. */
4223static DEFINE_PER_CPU(cpumask_var_t, load_balance_tmpmask);
4224
Nick Piggin77391d72005-06-25 14:57:30 -07004225/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 * Check this_cpu to ensure it is balanced within domain. Attempt to move
4227 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004229static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004230 struct sched_domain *sd, enum cpu_idle_type idle,
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304231 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232{
Peter Williams43010652007-08-09 11:16:46 +02004233 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004236 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004237 unsigned long flags;
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304238 struct cpumask *cpus = __get_cpu_var(load_balance_tmpmask);
Nick Piggin5969fe02005-09-10 00:26:19 -07004239
Rusty Russell96f874e2008-11-25 02:35:14 +10304240 cpumask_setall(cpus);
Mike Travis7c16ec52008-04-04 18:11:11 -07004241
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004242 /*
4243 * When power savings policy is enabled for the parent domain, idle
4244 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02004245 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004246 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004247 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004248 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004249 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07004250 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251
Ingo Molnar2d723762007-10-15 17:00:12 +02004252 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004254redo:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02004255 update_shares(sd);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004256 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07004257 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004258
Chen, Kenneth W06066712006-12-10 02:20:35 -08004259 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004260 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004261
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 if (!group) {
4263 schedstat_inc(sd, lb_nobusyg[idle]);
4264 goto out_balanced;
4265 }
4266
Mike Travis7c16ec52008-04-04 18:11:11 -07004267 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 if (!busiest) {
4269 schedstat_inc(sd, lb_nobusyq[idle]);
4270 goto out_balanced;
4271 }
4272
Nick Piggindb935db2005-06-25 14:57:11 -07004273 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
4275 schedstat_add(sd, lb_imbalance[idle], imbalance);
4276
Peter Williams43010652007-08-09 11:16:46 +02004277 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 if (busiest->nr_running > 1) {
4279 /*
4280 * Attempt to move tasks. If find_busiest_group has found
4281 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02004282 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 * correctly treated as an imbalance.
4284 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004285 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07004286 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02004287 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07004288 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07004289 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004290 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07004291
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004292 /*
4293 * some other cpu did the load balance for us.
4294 */
Peter Williams43010652007-08-09 11:16:46 +02004295 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004296 resched_cpu(this_cpu);
4297
Nick Piggin81026792005-06-25 14:57:07 -07004298 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004299 if (unlikely(all_pinned)) {
Rusty Russell96f874e2008-11-25 02:35:14 +10304300 cpumask_clear_cpu(cpu_of(busiest), cpus);
4301 if (!cpumask_empty(cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004302 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07004303 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 }
Nick Piggin81026792005-06-25 14:57:07 -07004306
Peter Williams43010652007-08-09 11:16:46 +02004307 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 schedstat_inc(sd, lb_failed[idle]);
4309 sd->nr_balance_failed++;
4310
4311 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004313 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004314
4315 /* don't kick the migration_thread, if the curr
4316 * task on busiest cpu can't be moved to this_cpu
4317 */
Rusty Russell96f874e2008-11-25 02:35:14 +10304318 if (!cpumask_test_cpu(this_cpu,
4319 &busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004320 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004321 all_pinned = 1;
4322 goto out_one_pinned;
4323 }
4324
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 if (!busiest->active_balance) {
4326 busiest->active_balance = 1;
4327 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07004328 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08004330 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07004331 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 wake_up_process(busiest->migration_thread);
4333
4334 /*
4335 * We've kicked active balancing, reset the failure
4336 * counter.
4337 */
Nick Piggin39507452005-06-25 14:57:09 -07004338 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 }
Nick Piggin81026792005-06-25 14:57:07 -07004340 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 sd->nr_balance_failed = 0;
4342
Nick Piggin81026792005-06-25 14:57:07 -07004343 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 /* We were unbalanced, so reset the balancing interval */
4345 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07004346 } else {
4347 /*
4348 * If we've begun active balancing, start to back off. This
4349 * case may not be covered by the all_pinned logic if there
4350 * is only 1 task on the busy runqueue (because we don't call
4351 * move_tasks).
4352 */
4353 if (sd->balance_interval < sd->max_interval)
4354 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 }
4356
Peter Williams43010652007-08-09 11:16:46 +02004357 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004358 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004359 ld_moved = -1;
4360
4361 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362
4363out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364 schedstat_inc(sd, lb_balanced[idle]);
4365
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004366 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004367
4368out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07004370 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
4371 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 sd->balance_interval *= 2;
4373
Ingo Molnar48f24c42006-07-03 00:25:40 -07004374 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004375 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004376 ld_moved = -1;
4377 else
4378 ld_moved = 0;
4379out:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02004380 if (ld_moved)
4381 update_shares(sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004382 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383}
4384
4385/*
4386 * Check this_cpu to ensure it is balanced within domain. Attempt to move
4387 * tasks if there is an imbalance.
4388 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004389 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 * this_rq is locked.
4391 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07004392static int
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304393load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394{
4395 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004396 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02004398 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07004399 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02004400 int all_pinned = 0;
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304401 struct cpumask *cpus = __get_cpu_var(load_balance_tmpmask);
Mike Travis7c16ec52008-04-04 18:11:11 -07004402
Rusty Russell96f874e2008-11-25 02:35:14 +10304403 cpumask_setall(cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07004404
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004405 /*
4406 * When power savings policy is enabled for the parent domain, idle
4407 * sibling can pick up load irrespective of busy siblings. In this case,
4408 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004409 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004410 */
4411 if (sd->flags & SD_SHARE_CPUPOWER &&
4412 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07004413 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414
Ingo Molnar2d723762007-10-15 17:00:12 +02004415 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004416redo:
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02004417 update_shares_locked(this_rq, sd);
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004418 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07004419 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004421 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004422 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 }
4424
Mike Travis7c16ec52008-04-04 18:11:11 -07004425 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07004426 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004427 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004428 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 }
4430
Nick Piggindb935db2005-06-25 14:57:11 -07004431 BUG_ON(busiest == this_rq);
4432
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004433 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07004434
Peter Williams43010652007-08-09 11:16:46 +02004435 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07004436 if (busiest->nr_running > 1) {
4437 /* Attempt to move tasks */
4438 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02004439 /* this_rq->clock is already updated */
4440 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02004441 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02004442 imbalance, sd, CPU_NEWLY_IDLE,
4443 &all_pinned);
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02004444 double_unlock_balance(this_rq, busiest);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004445
Suresh Siddha969bb4e2007-07-19 21:28:35 +02004446 if (unlikely(all_pinned)) {
Rusty Russell96f874e2008-11-25 02:35:14 +10304447 cpumask_clear_cpu(cpu_of(busiest), cpus);
4448 if (!cpumask_empty(cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07004449 goto redo;
4450 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07004451 }
4452
Peter Williams43010652007-08-09 11:16:46 +02004453 if (!ld_moved) {
Vaidyanathan Srinivasan36dffab2008-12-20 10:06:38 +05304454 int active_balance = 0;
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05304455
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004456 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004457 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
4458 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07004459 return -1;
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05304460
4461 if (sched_mc_power_savings < POWERSAVINGS_BALANCE_WAKEUP)
4462 return -1;
4463
4464 if (sd->nr_balance_failed++ < 2)
4465 return -1;
4466
4467 /*
4468 * The only task running in a non-idle cpu can be moved to this
4469 * cpu in an attempt to completely freeup the other CPU
4470 * package. The same method used to move task in load_balance()
4471 * have been extended for load_balance_newidle() to speedup
4472 * consolidation at sched_mc=POWERSAVINGS_BALANCE_WAKEUP (2)
4473 *
4474 * The package power saving logic comes from
4475 * find_busiest_group(). If there are no imbalance, then
4476 * f_b_g() will return NULL. However when sched_mc={1,2} then
4477 * f_b_g() will select a group from which a running task may be
4478 * pulled to this cpu in order to make the other package idle.
4479 * If there is no opportunity to make a package idle and if
4480 * there are no imbalance, then f_b_g() will return NULL and no
4481 * action will be taken in load_balance_newidle().
4482 *
4483 * Under normal task pull operation due to imbalance, there
4484 * will be more than one task in the source run queue and
4485 * move_tasks() will succeed. ld_moved will be true and this
4486 * active balance code will not be triggered.
4487 */
4488
4489 /* Lock busiest in correct order while this_rq is held */
4490 double_lock_balance(this_rq, busiest);
4491
4492 /*
4493 * don't kick the migration_thread, if the curr
4494 * task on busiest cpu can't be moved to this_cpu
4495 */
Mike Travis6ca09df2008-12-31 18:08:45 -08004496 if (!cpumask_test_cpu(this_cpu, &busiest->curr->cpus_allowed)) {
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05304497 double_unlock_balance(this_rq, busiest);
4498 all_pinned = 1;
4499 return ld_moved;
4500 }
4501
4502 if (!busiest->active_balance) {
4503 busiest->active_balance = 1;
4504 busiest->push_cpu = this_cpu;
4505 active_balance = 1;
4506 }
4507
4508 double_unlock_balance(this_rq, busiest);
Peter Zijlstrada8d5082009-01-07 15:28:57 +01004509 /*
4510 * Should not call ttwu while holding a rq->lock
4511 */
4512 spin_unlock(&this_rq->lock);
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05304513 if (active_balance)
4514 wake_up_process(busiest->migration_thread);
Peter Zijlstrada8d5082009-01-07 15:28:57 +01004515 spin_lock(&this_rq->lock);
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05304516
Nick Piggin5969fe02005-09-10 00:26:19 -07004517 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004518 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02004520 update_shares_locked(this_rq, sd);
Peter Williams43010652007-08-09 11:16:46 +02004521 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004522
4523out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004524 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004525 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07004526 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07004527 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004528 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004529
Nick Piggin16cfb1c2005-06-25 14:57:08 -07004530 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531}
4532
4533/*
4534 * idle_balance is called by schedule() if this_cpu is about to become
4535 * idle. Attempts to pull tasks from other CPUs.
4536 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004537static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538{
4539 struct sched_domain *sd;
Vaidyanathan Srinivasanefbe0272008-12-08 20:52:49 +05304540 int pulled_task = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02004541 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542
4543 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07004544 unsigned long interval;
4545
4546 if (!(sd->flags & SD_LOAD_BALANCE))
4547 continue;
4548
4549 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07004550 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07004551 pulled_task = load_balance_newidle(this_cpu, this_rq,
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304552 sd);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07004553
4554 interval = msecs_to_jiffies(sd->balance_interval);
4555 if (time_after(next_balance, sd->last_balance + interval))
4556 next_balance = sd->last_balance + interval;
4557 if (pulled_task)
4558 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004560 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004561 /*
4562 * We are going idle. next_balance may be set based on
4563 * a busy processor. So reset next_balance.
4564 */
4565 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02004566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567}
4568
4569/*
4570 * active_load_balance is run by migration threads. It pushes running tasks
4571 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
4572 * running on each physical CPU where possible, and avoids physical /
4573 * logical imbalances.
4574 *
4575 * Called with busiest_rq locked.
4576 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004577static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578{
Nick Piggin39507452005-06-25 14:57:09 -07004579 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004580 struct sched_domain *sd;
4581 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07004582
Ingo Molnar48f24c42006-07-03 00:25:40 -07004583 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07004584 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07004585 return;
4586
4587 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588
4589 /*
Nick Piggin39507452005-06-25 14:57:09 -07004590 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004591 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07004592 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 */
Nick Piggin39507452005-06-25 14:57:09 -07004594 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595
Nick Piggin39507452005-06-25 14:57:09 -07004596 /* move a task from busiest_rq to target_rq */
4597 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02004598 update_rq_clock(busiest_rq);
4599 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
Nick Piggin39507452005-06-25 14:57:09 -07004601 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07004602 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07004603 if ((sd->flags & SD_LOAD_BALANCE) &&
Rusty Russell758b2cd2008-11-25 02:35:04 +10304604 cpumask_test_cpu(busiest_cpu, sched_domain_span(sd)))
Nick Piggin39507452005-06-25 14:57:09 -07004605 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07004606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
Ingo Molnar48f24c42006-07-03 00:25:40 -07004608 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004609 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610
Peter Williams43010652007-08-09 11:16:46 +02004611 if (move_one_task(target_rq, target_cpu, busiest_rq,
4612 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07004613 schedstat_inc(sd, alb_pushed);
4614 else
4615 schedstat_inc(sd, alb_failed);
4616 }
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02004617 double_unlock_balance(busiest_rq, target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618}
4619
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004620#ifdef CONFIG_NO_HZ
4621static struct {
4622 atomic_t load_balancer;
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304623 cpumask_var_t cpu_mask;
Gautham R Shenoyf711f602009-04-14 10:25:30 +05304624 cpumask_var_t ilb_grp_nohz_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004625} nohz ____cacheline_aligned = {
4626 .load_balancer = ATOMIC_INIT(-1),
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004627};
4628
Arun R Bharadwajeea08f32009-04-16 12:16:41 +05304629int get_nohz_load_balancer(void)
4630{
4631 return atomic_read(&nohz.load_balancer);
4632}
4633
Gautham R Shenoyf711f602009-04-14 10:25:30 +05304634#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
4635/**
4636 * lowest_flag_domain - Return lowest sched_domain containing flag.
4637 * @cpu: The cpu whose lowest level of sched domain is to
4638 * be returned.
4639 * @flag: The flag to check for the lowest sched_domain
4640 * for the given cpu.
4641 *
4642 * Returns the lowest sched_domain of a cpu which contains the given flag.
4643 */
4644static inline struct sched_domain *lowest_flag_domain(int cpu, int flag)
4645{
4646 struct sched_domain *sd;
4647
4648 for_each_domain(cpu, sd)
4649 if (sd && (sd->flags & flag))
4650 break;
4651
4652 return sd;
4653}
4654
4655/**
4656 * for_each_flag_domain - Iterates over sched_domains containing the flag.
4657 * @cpu: The cpu whose domains we're iterating over.
4658 * @sd: variable holding the value of the power_savings_sd
4659 * for cpu.
4660 * @flag: The flag to filter the sched_domains to be iterated.
4661 *
4662 * Iterates over all the scheduler domains for a given cpu that has the 'flag'
4663 * set, starting from the lowest sched_domain to the highest.
4664 */
4665#define for_each_flag_domain(cpu, sd, flag) \
4666 for (sd = lowest_flag_domain(cpu, flag); \
4667 (sd && (sd->flags & flag)); sd = sd->parent)
4668
4669/**
4670 * is_semi_idle_group - Checks if the given sched_group is semi-idle.
4671 * @ilb_group: group to be checked for semi-idleness
4672 *
4673 * Returns: 1 if the group is semi-idle. 0 otherwise.
4674 *
4675 * We define a sched_group to be semi idle if it has atleast one idle-CPU
4676 * and atleast one non-idle CPU. This helper function checks if the given
4677 * sched_group is semi-idle or not.
4678 */
4679static inline int is_semi_idle_group(struct sched_group *ilb_group)
4680{
4681 cpumask_and(nohz.ilb_grp_nohz_mask, nohz.cpu_mask,
4682 sched_group_cpus(ilb_group));
4683
4684 /*
4685 * A sched_group is semi-idle when it has atleast one busy cpu
4686 * and atleast one idle cpu.
4687 */
4688 if (cpumask_empty(nohz.ilb_grp_nohz_mask))
4689 return 0;
4690
4691 if (cpumask_equal(nohz.ilb_grp_nohz_mask, sched_group_cpus(ilb_group)))
4692 return 0;
4693
4694 return 1;
4695}
4696/**
4697 * find_new_ilb - Finds the optimum idle load balancer for nomination.
4698 * @cpu: The cpu which is nominating a new idle_load_balancer.
4699 *
4700 * Returns: Returns the id of the idle load balancer if it exists,
4701 * Else, returns >= nr_cpu_ids.
4702 *
4703 * This algorithm picks the idle load balancer such that it belongs to a
4704 * semi-idle powersavings sched_domain. The idea is to try and avoid
4705 * completely idle packages/cores just for the purpose of idle load balancing
4706 * when there are other idle cpu's which are better suited for that job.
4707 */
4708static int find_new_ilb(int cpu)
4709{
4710 struct sched_domain *sd;
4711 struct sched_group *ilb_group;
4712
4713 /*
4714 * Have idle load balancer selection from semi-idle packages only
4715 * when power-aware load balancing is enabled
4716 */
4717 if (!(sched_smt_power_savings || sched_mc_power_savings))
4718 goto out_done;
4719
4720 /*
4721 * Optimize for the case when we have no idle CPUs or only one
4722 * idle CPU. Don't walk the sched_domain hierarchy in such cases
4723 */
4724 if (cpumask_weight(nohz.cpu_mask) < 2)
4725 goto out_done;
4726
4727 for_each_flag_domain(cpu, sd, SD_POWERSAVINGS_BALANCE) {
4728 ilb_group = sd->groups;
4729
4730 do {
4731 if (is_semi_idle_group(ilb_group))
4732 return cpumask_first(nohz.ilb_grp_nohz_mask);
4733
4734 ilb_group = ilb_group->next;
4735
4736 } while (ilb_group != sd->groups);
4737 }
4738
4739out_done:
4740 return cpumask_first(nohz.cpu_mask);
4741}
4742#else /* (CONFIG_SCHED_MC || CONFIG_SCHED_SMT) */
4743static inline int find_new_ilb(int call_cpu)
4744{
Gautham R Shenoy6e29ec52009-04-21 08:40:49 +05304745 return cpumask_first(nohz.cpu_mask);
Gautham R Shenoyf711f602009-04-14 10:25:30 +05304746}
4747#endif
4748
Christoph Lameter7835b982006-12-10 02:20:22 -08004749/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004750 * This routine will try to nominate the ilb (idle load balancing)
4751 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
4752 * load balancing on behalf of all those cpus. If all the cpus in the system
4753 * go into this tickless mode, then there will be no ilb owner (as there is
4754 * no need for one) and all the cpus will sleep till the next wakeup event
4755 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08004756 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004757 * For the ilb owner, tick is not stopped. And this tick will be used
4758 * for idle load balancing. ilb owner will still be part of
4759 * nohz.cpu_mask..
4760 *
4761 * While stopping the tick, this cpu will become the ilb owner if there
4762 * is no other owner. And will be the owner till that cpu becomes busy
4763 * or if all cpus in the system stop their ticks at which point
4764 * there is no need for ilb owner.
4765 *
4766 * When the ilb owner becomes busy, it nominates another owner, during the
4767 * next busy scheduler_tick()
4768 */
4769int select_nohz_load_balancer(int stop_tick)
4770{
4771 int cpu = smp_processor_id();
4772
4773 if (stop_tick) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004774 cpu_rq(cpu)->in_nohz_recently = 1;
4775
Suresh Siddha483b4ee2009-02-04 11:59:44 -08004776 if (!cpu_active(cpu)) {
4777 if (atomic_read(&nohz.load_balancer) != cpu)
4778 return 0;
4779
4780 /*
4781 * If we are going offline and still the leader,
4782 * give up!
4783 */
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004784 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4785 BUG();
Suresh Siddha483b4ee2009-02-04 11:59:44 -08004786
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004787 return 0;
4788 }
4789
Suresh Siddha483b4ee2009-02-04 11:59:44 -08004790 cpumask_set_cpu(cpu, nohz.cpu_mask);
4791
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004792 /* time for ilb owner also to sleep */
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304793 if (cpumask_weight(nohz.cpu_mask) == num_online_cpus()) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004794 if (atomic_read(&nohz.load_balancer) == cpu)
4795 atomic_set(&nohz.load_balancer, -1);
4796 return 0;
4797 }
4798
4799 if (atomic_read(&nohz.load_balancer) == -1) {
4800 /* make me the ilb owner */
4801 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
4802 return 1;
Gautham R Shenoye790fb02009-04-14 10:25:35 +05304803 } else if (atomic_read(&nohz.load_balancer) == cpu) {
4804 int new_ilb;
4805
4806 if (!(sched_smt_power_savings ||
4807 sched_mc_power_savings))
4808 return 1;
4809 /*
4810 * Check to see if there is a more power-efficient
4811 * ilb.
4812 */
4813 new_ilb = find_new_ilb(cpu);
4814 if (new_ilb < nr_cpu_ids && new_ilb != cpu) {
4815 atomic_set(&nohz.load_balancer, -1);
4816 resched_cpu(new_ilb);
4817 return 0;
4818 }
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004819 return 1;
Gautham R Shenoye790fb02009-04-14 10:25:35 +05304820 }
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004821 } else {
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304822 if (!cpumask_test_cpu(cpu, nohz.cpu_mask))
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004823 return 0;
4824
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304825 cpumask_clear_cpu(cpu, nohz.cpu_mask);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004826
4827 if (atomic_read(&nohz.load_balancer) == cpu)
4828 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4829 BUG();
4830 }
4831 return 0;
4832}
4833#endif
4834
4835static DEFINE_SPINLOCK(balancing);
4836
4837/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004838 * It checks each scheduling domain to see if it is due to be balanced,
4839 * and initiates a balancing operation if so.
4840 *
4841 * Balancing parameters are set up in arch_init_sched_domains.
4842 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004843static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08004844{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004845 int balance = 1;
4846 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08004847 unsigned long interval;
4848 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004849 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08004850 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004851 int update_next_balance = 0;
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004852 int need_serialize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004854 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855 if (!(sd->flags & SD_LOAD_BALANCE))
4856 continue;
4857
4858 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004859 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 interval *= sd->busy_factor;
4861
4862 /* scale ms to jiffies */
4863 interval = msecs_to_jiffies(interval);
4864 if (unlikely(!interval))
4865 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02004866 if (interval > HZ*NR_CPUS/10)
4867 interval = HZ*NR_CPUS/10;
4868
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004869 need_serialize = sd->flags & SD_SERIALIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004871 if (need_serialize) {
Christoph Lameter08c183f2006-12-10 02:20:29 -08004872 if (!spin_trylock(&balancing))
4873 goto out;
4874 }
4875
Christoph Lameterc9819f42006-12-10 02:20:25 -08004876 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Rusty Russelldf7c8e82009-03-19 15:22:20 +10304877 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004878 /*
4879 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07004880 * longer idle, or one of our SMT siblings is
4881 * not idle.
4882 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004883 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004885 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 }
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004887 if (need_serialize)
Christoph Lameter08c183f2006-12-10 02:20:29 -08004888 spin_unlock(&balancing);
4889out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02004890 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08004891 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004892 update_next_balance = 1;
4893 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004894
4895 /*
4896 * Stop the load balance at this level. There is another
4897 * CPU in our sched group which is doing load balancing more
4898 * actively.
4899 */
4900 if (!balance)
4901 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004903
4904 /*
4905 * next_balance will be updated only when there is a need.
4906 * When the cpu is attached to null domain for ex, it will not be
4907 * updated.
4908 */
4909 if (likely(update_next_balance))
4910 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004911}
4912
4913/*
4914 * run_rebalance_domains is triggered when needed from the scheduler tick.
4915 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4916 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4917 */
4918static void run_rebalance_domains(struct softirq_action *h)
4919{
Ingo Molnardd41f592007-07-09 18:51:59 +02004920 int this_cpu = smp_processor_id();
4921 struct rq *this_rq = cpu_rq(this_cpu);
4922 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4923 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004924
Ingo Molnardd41f592007-07-09 18:51:59 +02004925 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004926
4927#ifdef CONFIG_NO_HZ
4928 /*
4929 * If this cpu is the owner for idle load balancing, then do the
4930 * balancing on behalf of the other idle cpus whose ticks are
4931 * stopped.
4932 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004933 if (this_rq->idle_at_tick &&
4934 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004935 struct rq *rq;
4936 int balance_cpu;
4937
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304938 for_each_cpu(balance_cpu, nohz.cpu_mask) {
4939 if (balance_cpu == this_cpu)
4940 continue;
4941
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004942 /*
4943 * If this cpu gets work to do, stop the load balancing
4944 * work being done for other cpus. Next load
4945 * balancing owner will pick it up.
4946 */
4947 if (need_resched())
4948 break;
4949
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004950 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004951
4952 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004953 if (time_after(this_rq->next_balance, rq->next_balance))
4954 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004955 }
4956 }
4957#endif
4958}
4959
Frederic Weisbecker8a0be9e2009-03-05 01:27:02 +01004960static inline int on_null_domain(int cpu)
4961{
4962 return !rcu_dereference(cpu_rq(cpu)->sd);
4963}
4964
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004965/*
4966 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4967 *
4968 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4969 * idle load balancing owner or decide to stop the periodic load balancing,
4970 * if the whole system is idle.
4971 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004972static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004973{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004974#ifdef CONFIG_NO_HZ
4975 /*
4976 * If we were in the nohz mode recently and busy at the current
4977 * scheduler tick, then check if we need to nominate new idle
4978 * load balancer.
4979 */
4980 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4981 rq->in_nohz_recently = 0;
4982
4983 if (atomic_read(&nohz.load_balancer) == cpu) {
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304984 cpumask_clear_cpu(cpu, nohz.cpu_mask);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004985 atomic_set(&nohz.load_balancer, -1);
4986 }
4987
4988 if (atomic_read(&nohz.load_balancer) == -1) {
Gautham R Shenoyf711f602009-04-14 10:25:30 +05304989 int ilb = find_new_ilb(cpu);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004990
Mike Travis434d53b2008-04-04 18:11:04 -07004991 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004992 resched_cpu(ilb);
4993 }
4994 }
4995
4996 /*
4997 * If this cpu is idle and doing idle load balancing for all the
4998 * cpus with ticks stopped, is it time for that to stop?
4999 */
5000 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
Rusty Russell7d1e6a92008-11-25 02:35:09 +10305001 cpumask_weight(nohz.cpu_mask) == num_online_cpus()) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07005002 resched_cpu(cpu);
5003 return;
5004 }
5005
5006 /*
5007 * If this cpu is idle and the idle load balancing is done by
5008 * someone else, then no need raise the SCHED_SOFTIRQ
5009 */
5010 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
Rusty Russell7d1e6a92008-11-25 02:35:09 +10305011 cpumask_test_cpu(cpu, nohz.cpu_mask))
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07005012 return;
5013#endif
Frederic Weisbecker8a0be9e2009-03-05 01:27:02 +01005014 /* Don't need to rebalance while attached to NULL domain */
5015 if (time_after_eq(jiffies, rq->next_balance) &&
5016 likely(!on_null_domain(cpu)))
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07005017 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018}
Ingo Molnardd41f592007-07-09 18:51:59 +02005019
5020#else /* CONFIG_SMP */
5021
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022/*
5023 * on UP we do not need to balance between CPUs:
5024 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005025static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026{
5027}
Ingo Molnardd41f592007-07-09 18:51:59 +02005028
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029#endif
5030
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031DEFINE_PER_CPU(struct kernel_stat, kstat);
5032
5033EXPORT_PER_CPU_SYMBOL(kstat);
5034
5035/*
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09005036 * Return any ns on the sched_clock that have not yet been accounted in
Frank Mayharf06febc2008-09-12 09:54:39 -07005037 * @p in case that task is currently running.
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09005038 *
5039 * Called with task_rq_lock() held on @rq.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040 */
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09005041static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq)
5042{
5043 u64 ns = 0;
5044
5045 if (task_current(rq, p)) {
5046 update_rq_clock(rq);
5047 ns = rq->clock - p->se.exec_start;
5048 if ((s64)ns < 0)
5049 ns = 0;
5050 }
5051
5052 return ns;
5053}
5054
Frank Mayharbb34d922008-09-12 09:54:39 -07005055unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02005058 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07005059 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005060
Ingo Molnar41b86e92007-07-09 18:51:58 +02005061 rq = task_rq_lock(p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09005062 ns = do_task_delta_exec(p, rq);
5063 task_rq_unlock(rq, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02005064
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09005065 return ns;
5066}
Frank Mayharf06febc2008-09-12 09:54:39 -07005067
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09005068/*
5069 * Return accounted runtime for the task.
5070 * In case the task is currently running, return the runtime plus current's
5071 * pending runtime that have not been accounted yet.
5072 */
5073unsigned long long task_sched_runtime(struct task_struct *p)
5074{
5075 unsigned long flags;
5076 struct rq *rq;
5077 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005078
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09005079 rq = task_rq_lock(p, &flags);
5080 ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq);
5081 task_rq_unlock(rq, &flags);
5082
5083 return ns;
5084}
5085
5086/*
5087 * Return sum_exec_runtime for the thread group.
5088 * In case the task is currently running, return the sum plus current's
5089 * pending runtime that have not been accounted yet.
5090 *
5091 * Note that the thread group might have other running tasks as well,
5092 * so the return value not includes other pending runtime that other
5093 * running tasks might have.
5094 */
5095unsigned long long thread_group_sched_runtime(struct task_struct *p)
5096{
5097 struct task_cputime totals;
5098 unsigned long flags;
5099 struct rq *rq;
5100 u64 ns;
5101
5102 rq = task_rq_lock(p, &flags);
5103 thread_group_cputime(p, &totals);
5104 ns = totals.sum_exec_runtime + do_task_delta_exec(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105 task_rq_unlock(rq, &flags);
5106
5107 return ns;
5108}
5109
5110/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 * Account user cpu time to a process.
5112 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113 * @cputime: the cpu time spent in user space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005114 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005116void account_user_time(struct task_struct *p, cputime_t cputime,
5117 cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118{
5119 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
5120 cputime64_t tmp;
5121
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005122 /* Add user time to process. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005124 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07005125 account_group_user_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126
5127 /* Add user time to cpustat. */
5128 tmp = cputime_to_cputime64(cputime);
5129 if (TASK_NICE(p) > 0)
5130 cpustat->nice = cputime64_add(cpustat->nice, tmp);
5131 else
5132 cpustat->user = cputime64_add(cpustat->user, tmp);
Bharata B Raoef12fef2009-03-31 10:02:22 +05305133
5134 cpuacct_update_stats(p, CPUACCT_STAT_USER, cputime);
Jonathan Lim49b5cf32008-07-25 01:48:40 -07005135 /* Account for user time used */
5136 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137}
5138
5139/*
Laurent Vivier94886b82007-10-15 17:00:19 +02005140 * Account guest cpu time to a process.
5141 * @p: the process that the cpu time gets accounted to
5142 * @cputime: the cpu time spent in virtual machine since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005143 * @cputime_scaled: cputime scaled by cpu frequency
Laurent Vivier94886b82007-10-15 17:00:19 +02005144 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005145static void account_guest_time(struct task_struct *p, cputime_t cputime,
5146 cputime_t cputime_scaled)
Laurent Vivier94886b82007-10-15 17:00:19 +02005147{
5148 cputime64_t tmp;
5149 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
5150
5151 tmp = cputime_to_cputime64(cputime);
5152
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005153 /* Add guest time to process. */
Laurent Vivier94886b82007-10-15 17:00:19 +02005154 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005155 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07005156 account_group_user_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02005157 p->gtime = cputime_add(p->gtime, cputime);
5158
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005159 /* Add guest time to cpustat. */
Laurent Vivier94886b82007-10-15 17:00:19 +02005160 cpustat->user = cputime64_add(cpustat->user, tmp);
5161 cpustat->guest = cputime64_add(cpustat->guest, tmp);
5162}
5163
5164/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 * Account system cpu time to a process.
5166 * @p: the process that the cpu time gets accounted to
5167 * @hardirq_offset: the offset to subtract from hardirq_count()
5168 * @cputime: the cpu time spent in kernel space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005169 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 */
5171void account_system_time(struct task_struct *p, int hardirq_offset,
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005172 cputime_t cputime, cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173{
5174 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175 cputime64_t tmp;
5176
Harvey Harrison983ed7a2008-04-24 18:17:55 -07005177 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005178 account_guest_time(p, cputime, cputime_scaled);
Harvey Harrison983ed7a2008-04-24 18:17:55 -07005179 return;
5180 }
Laurent Vivier94886b82007-10-15 17:00:19 +02005181
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005182 /* Add system time to process. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 p->stime = cputime_add(p->stime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01005184 p->stimescaled = cputime_add(p->stimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07005185 account_group_system_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
5187 /* Add system time to cpustat. */
5188 tmp = cputime_to_cputime64(cputime);
5189 if (hardirq_count() - hardirq_offset)
5190 cpustat->irq = cputime64_add(cpustat->irq, tmp);
5191 else if (softirq_count())
5192 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193 else
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01005194 cpustat->system = cputime64_add(cpustat->system, tmp);
5195
Bharata B Raoef12fef2009-03-31 10:02:22 +05305196 cpuacct_update_stats(p, CPUACCT_STAT_SYSTEM, cputime);
5197
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 /* Account for system time used */
5199 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200}
5201
5202/*
5203 * Account for involuntary wait time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204 * @steal: the cpu time spent in involuntary wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01005206void account_steal_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01005209 cputime64_t cputime64 = cputime_to_cputime64(cputime);
5210
5211 cpustat->steal = cputime64_add(cpustat->steal, cputime64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212}
5213
Christoph Lameter7835b982006-12-10 02:20:22 -08005214/*
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01005215 * Account for idle time.
5216 * @cputime: the cpu time spent in idle wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01005218void account_idle_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219{
5220 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01005221 cputime64_t cputime64 = cputime_to_cputime64(cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 struct rq *rq = this_rq();
5223
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01005224 if (atomic_read(&rq->nr_iowait) > 0)
5225 cpustat->iowait = cputime64_add(cpustat->iowait, cputime64);
5226 else
5227 cpustat->idle = cputime64_add(cpustat->idle, cputime64);
Christoph Lameter7835b982006-12-10 02:20:22 -08005228}
5229
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01005230#ifndef CONFIG_VIRT_CPU_ACCOUNTING
5231
5232/*
5233 * Account a single tick of cpu time.
5234 * @p: the process that the cpu time gets accounted to
5235 * @user_tick: indicates if the tick is a user or a system tick
5236 */
5237void account_process_tick(struct task_struct *p, int user_tick)
5238{
5239 cputime_t one_jiffy = jiffies_to_cputime(1);
5240 cputime_t one_jiffy_scaled = cputime_to_scaled(one_jiffy);
5241 struct rq *rq = this_rq();
5242
5243 if (user_tick)
5244 account_user_time(p, one_jiffy, one_jiffy_scaled);
Eric Dumazetf5f293a2009-04-29 14:44:49 +02005245 else if ((p != rq->idle) || (irq_count() != HARDIRQ_OFFSET))
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01005246 account_system_time(p, HARDIRQ_OFFSET, one_jiffy,
5247 one_jiffy_scaled);
5248 else
5249 account_idle_time(one_jiffy);
5250}
5251
5252/*
5253 * Account multiple ticks of steal time.
5254 * @p: the process from which the cpu time has been stolen
5255 * @ticks: number of stolen ticks
5256 */
5257void account_steal_ticks(unsigned long ticks)
5258{
5259 account_steal_time(jiffies_to_cputime(ticks));
5260}
5261
5262/*
5263 * Account multiple ticks of idle time.
5264 * @ticks: number of stolen ticks
5265 */
5266void account_idle_ticks(unsigned long ticks)
5267{
5268 account_idle_time(jiffies_to_cputime(ticks));
5269}
5270
5271#endif
5272
Christoph Lameter7835b982006-12-10 02:20:22 -08005273/*
Balbir Singh49048622008-09-05 18:12:23 +02005274 * Use precise platform statistics if available:
5275 */
5276#ifdef CONFIG_VIRT_CPU_ACCOUNTING
5277cputime_t task_utime(struct task_struct *p)
5278{
5279 return p->utime;
5280}
5281
5282cputime_t task_stime(struct task_struct *p)
5283{
5284 return p->stime;
5285}
5286#else
5287cputime_t task_utime(struct task_struct *p)
5288{
5289 clock_t utime = cputime_to_clock_t(p->utime),
5290 total = utime + cputime_to_clock_t(p->stime);
5291 u64 temp;
5292
5293 /*
5294 * Use CFS's precise accounting:
5295 */
5296 temp = (u64)nsec_to_clock_t(p->se.sum_exec_runtime);
5297
5298 if (total) {
5299 temp *= utime;
5300 do_div(temp, total);
5301 }
5302 utime = (clock_t)temp;
5303
5304 p->prev_utime = max(p->prev_utime, clock_t_to_cputime(utime));
5305 return p->prev_utime;
5306}
5307
5308cputime_t task_stime(struct task_struct *p)
5309{
5310 clock_t stime;
5311
5312 /*
5313 * Use CFS's precise accounting. (we subtract utime from
5314 * the total, to make sure the total observed by userspace
5315 * grows monotonically - apps rely on that):
5316 */
5317 stime = nsec_to_clock_t(p->se.sum_exec_runtime) -
5318 cputime_to_clock_t(task_utime(p));
5319
5320 if (stime >= 0)
5321 p->prev_stime = max(p->prev_stime, clock_t_to_cputime(stime));
5322
5323 return p->prev_stime;
5324}
5325#endif
5326
5327inline cputime_t task_gtime(struct task_struct *p)
5328{
5329 return p->gtime;
5330}
5331
5332/*
Christoph Lameter7835b982006-12-10 02:20:22 -08005333 * This function gets called by the timer code, with HZ frequency.
5334 * We call it with interrupts disabled.
5335 *
5336 * It also gets called by the fork code, when changing the parent's
5337 * timeslices.
5338 */
5339void scheduler_tick(void)
5340{
Christoph Lameter7835b982006-12-10 02:20:22 -08005341 int cpu = smp_processor_id();
5342 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005343 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02005344
5345 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08005346
Ingo Molnardd41f592007-07-09 18:51:59 +02005347 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02005348 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02005349 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01005350 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02005351 spin_unlock(&rq->lock);
5352
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02005353 perf_counter_task_tick(curr, cpu);
5354
Christoph Lametere418e1c2006-12-10 02:20:23 -08005355#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02005356 rq->idle_at_tick = idle_cpu(cpu);
5357 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08005358#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359}
5360
Lai Jiangshan132380a2009-04-02 14:18:25 +08005361notrace unsigned long get_parent_ip(unsigned long addr)
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005362{
5363 if (in_lock_functions(addr)) {
5364 addr = CALLER_ADDR2;
5365 if (in_lock_functions(addr))
5366 addr = CALLER_ADDR3;
5367 }
5368 return addr;
5369}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370
Steven Rostedt7e49fcc2009-01-22 19:01:40 -05005371#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
5372 defined(CONFIG_PREEMPT_TRACER))
5373
Srinivasa Ds43627582008-02-23 15:24:04 -08005374void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005376#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 /*
5378 * Underflow?
5379 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07005380 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
5381 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005382#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005384#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385 /*
5386 * Spinlock count overflowing soon?
5387 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005388 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
5389 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005390#endif
5391 if (preempt_count() == val)
5392 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393}
5394EXPORT_SYMBOL(add_preempt_count);
5395
Srinivasa Ds43627582008-02-23 15:24:04 -08005396void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005398#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 /*
5400 * Underflow?
5401 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01005402 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07005403 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 /*
5405 * Is the spinlock portion underflowing?
5406 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07005407 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
5408 !(preempt_count() & PREEMPT_MASK)))
5409 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005410#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07005411
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02005412 if (preempt_count() == val)
5413 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414 preempt_count() -= val;
5415}
5416EXPORT_SYMBOL(sub_preempt_count);
5417
5418#endif
5419
5420/*
Ingo Molnardd41f592007-07-09 18:51:59 +02005421 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422 */
Ingo Molnardd41f592007-07-09 18:51:59 +02005423static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424{
Satyam Sharma838225b2007-10-24 18:23:50 +02005425 struct pt_regs *regs = get_irq_regs();
5426
5427 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
5428 prev->comm, prev->pid, preempt_count());
5429
Ingo Molnardd41f592007-07-09 18:51:59 +02005430 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07005431 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02005432 if (irqs_disabled())
5433 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02005434
5435 if (regs)
5436 show_regs(regs);
5437 else
5438 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02005439}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440
Ingo Molnardd41f592007-07-09 18:51:59 +02005441/*
5442 * Various schedule()-time debugging checks and statistics:
5443 */
5444static inline void schedule_debug(struct task_struct *prev)
5445{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005447 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448 * schedule() atomically, we ignore that path for now.
5449 * Otherwise, whine if we are scheduling when we should not be.
5450 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02005451 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02005452 __schedule_bug(prev);
5453
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
5455
Ingo Molnar2d723762007-10-15 17:00:12 +02005456 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02005457#ifdef CONFIG_SCHEDSTATS
5458 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02005459 schedstat_inc(this_rq(), bkl_count);
5460 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02005461 }
5462#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005463}
5464
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01005465static void put_prev_task(struct rq *rq, struct task_struct *prev)
5466{
5467 if (prev->state == TASK_RUNNING) {
5468 u64 runtime = prev->se.sum_exec_runtime;
5469
5470 runtime -= prev->se.prev_sum_exec_runtime;
5471 runtime = min_t(u64, runtime, 2*sysctl_sched_migration_cost);
5472
5473 /*
5474 * In order to avoid avg_overlap growing stale when we are
5475 * indeed overlapping and hence not getting put to sleep, grow
5476 * the avg_overlap on preemption.
5477 *
5478 * We use the average preemption runtime because that
5479 * correlates to the amount of cache footprint a task can
5480 * build up.
5481 */
5482 update_avg(&prev->se.avg_overlap, runtime);
5483 }
5484 prev->sched_class->put_prev_task(rq, prev);
5485}
5486
Ingo Molnardd41f592007-07-09 18:51:59 +02005487/*
5488 * Pick up the highest-prio task:
5489 */
5490static inline struct task_struct *
Wang Chenb67802e2009-03-02 13:55:26 +08005491pick_next_task(struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02005492{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02005493 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02005494 struct task_struct *p;
5495
5496 /*
5497 * Optimization: we know that if all tasks are in
5498 * the fair class we can call that function directly:
5499 */
5500 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02005501 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005502 if (likely(p))
5503 return p;
5504 }
5505
5506 class = sched_class_highest;
5507 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02005508 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005509 if (p)
5510 return p;
5511 /*
5512 * Will never be NULL as the idle class always
5513 * returns a non-NULL p:
5514 */
5515 class = class->next;
5516 }
5517}
5518
5519/*
5520 * schedule() is the main scheduler function.
5521 */
Peter Zijlstraff743342009-03-13 12:21:26 +01005522asmlinkage void __sched schedule(void)
Ingo Molnardd41f592007-07-09 18:51:59 +02005523{
5524 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08005525 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02005526 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02005527 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02005528
Peter Zijlstraff743342009-03-13 12:21:26 +01005529need_resched:
5530 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02005531 cpu = smp_processor_id();
5532 rq = cpu_rq(cpu);
5533 rcu_qsctr_inc(cpu);
5534 prev = rq->curr;
5535 switch_count = &prev->nivcsw;
5536
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537 release_kernel_lock(prev);
5538need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539
Ingo Molnardd41f592007-07-09 18:51:59 +02005540 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541
Peter Zijlstra31656512008-07-18 18:01:23 +02005542 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02005543 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005544
Peter Zijlstra8cd162c2008-10-15 20:37:23 +02005545 spin_lock_irq(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02005546 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02005547 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548
Ingo Molnardd41f592007-07-09 18:51:59 +02005549 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Oleg Nesterov16882c12008-06-08 21:20:41 +04005550 if (unlikely(signal_pending_state(prev->state, prev)))
Ingo Molnardd41f592007-07-09 18:51:59 +02005551 prev->state = TASK_RUNNING;
Oleg Nesterov16882c12008-06-08 21:20:41 +04005552 else
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005553 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02005554 switch_count = &prev->nvcsw;
5555 }
5556
Gregory Haskins3f029d32009-07-29 11:08:47 -04005557 pre_schedule(rq, prev);
Steven Rostedtf65eda42008-01-25 21:08:07 +01005558
Ingo Molnardd41f592007-07-09 18:51:59 +02005559 if (unlikely(!rq->nr_running))
5560 idle_balance(cpu, rq);
5561
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01005562 put_prev_task(rq, prev);
Wang Chenb67802e2009-03-02 13:55:26 +08005563 next = pick_next_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01005566 sched_info_switch(prev, next);
Paul Mackerras564c2b22009-05-22 14:27:22 +10005567 perf_counter_task_sched_out(prev, next, cpu);
David Simner673a90a2008-04-29 10:08:59 +01005568
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569 rq->nr_switches++;
5570 rq->curr = next;
5571 ++*switch_count;
5572
Gregory Haskins3f029d32009-07-29 11:08:47 -04005573 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005574 /*
5575 * the context switch might have flipped the stack from under
5576 * us, hence refresh the local variables.
5577 */
5578 cpu = smp_processor_id();
5579 rq = cpu_rq(cpu);
Gregory Haskins3f029d32009-07-29 11:08:47 -04005580 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581 spin_unlock_irq(&rq->lock);
Steven Rostedtda19ab52009-07-29 00:21:22 -04005582
Gregory Haskins3f029d32009-07-29 11:08:47 -04005583 post_schedule(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005585 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005587
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588 preempt_enable_no_resched();
Peter Zijlstraff743342009-03-13 12:21:26 +01005589 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 goto need_resched;
5591}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592EXPORT_SYMBOL(schedule);
5593
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01005594#ifdef CONFIG_SMP
5595/*
5596 * Look out! "owner" is an entirely speculative pointer
5597 * access and not reliable.
5598 */
5599int mutex_spin_on_owner(struct mutex *lock, struct thread_info *owner)
5600{
5601 unsigned int cpu;
5602 struct rq *rq;
5603
5604 if (!sched_feat(OWNER_SPIN))
5605 return 0;
5606
5607#ifdef CONFIG_DEBUG_PAGEALLOC
5608 /*
5609 * Need to access the cpu field knowing that
5610 * DEBUG_PAGEALLOC could have unmapped it if
5611 * the mutex owner just released it and exited.
5612 */
5613 if (probe_kernel_address(&owner->cpu, cpu))
5614 goto out;
5615#else
5616 cpu = owner->cpu;
5617#endif
5618
5619 /*
5620 * Even if the access succeeded (likely case),
5621 * the cpu field may no longer be valid.
5622 */
5623 if (cpu >= nr_cpumask_bits)
5624 goto out;
5625
5626 /*
5627 * We need to validate that we can do a
5628 * get_cpu() and that we have the percpu area.
5629 */
5630 if (!cpu_online(cpu))
5631 goto out;
5632
5633 rq = cpu_rq(cpu);
5634
5635 for (;;) {
5636 /*
5637 * Owner changed, break to re-assess state.
5638 */
5639 if (lock->owner != owner)
5640 break;
5641
5642 /*
5643 * Is that owner really running on that cpu?
5644 */
5645 if (task_thread_info(rq->curr) != owner || need_resched())
5646 return 0;
5647
5648 cpu_relax();
5649 }
5650out:
5651 return 1;
5652}
5653#endif
5654
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655#ifdef CONFIG_PREEMPT
5656/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005657 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005658 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659 * occur there and call schedule directly.
5660 */
5661asmlinkage void __sched preempt_schedule(void)
5662{
5663 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01005664
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665 /*
5666 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005667 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07005669 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670 return;
5671
Andi Kleen3a5c3592007-10-15 17:00:14 +02005672 do {
5673 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02005674 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02005675 sub_preempt_count(PREEMPT_ACTIVE);
5676
5677 /*
5678 * Check again in case we missed a preemption opportunity
5679 * between schedule and now.
5680 */
5681 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08005682 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684EXPORT_SYMBOL(preempt_schedule);
5685
5686/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005687 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688 * off of irq context.
5689 * Note, that this is called and return with irqs disabled. This will
5690 * protect us against recursive calling from irq.
5691 */
5692asmlinkage void __sched preempt_schedule_irq(void)
5693{
5694 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01005695
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005696 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697 BUG_ON(ti->preempt_count || !irqs_disabled());
5698
Andi Kleen3a5c3592007-10-15 17:00:14 +02005699 do {
5700 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02005701 local_irq_enable();
5702 schedule();
5703 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02005704 sub_preempt_count(PREEMPT_ACTIVE);
5705
5706 /*
5707 * Check again in case we missed a preemption opportunity
5708 * between schedule and now.
5709 */
5710 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08005711 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712}
5713
5714#endif /* CONFIG_PREEMPT */
5715
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005716int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
5717 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005719 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721EXPORT_SYMBOL(default_wake_function);
5722
5723/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005724 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
5725 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726 * number) then we wake all the non-exclusive tasks and one exclusive task.
5727 *
5728 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005729 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730 * zero in this (rare) case, and we handle it by continuing to scan the queue.
5731 */
Johannes Weiner78ddb082009-04-14 16:53:05 +02005732static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
Johannes Weiner777c6c52009-02-04 15:12:14 -08005733 int nr_exclusive, int sync, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02005735 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02005737 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07005738 unsigned flags = curr->flags;
5739
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07005741 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 break;
5743 }
5744}
5745
5746/**
5747 * __wake_up - wake up threads blocked on a waitqueue.
5748 * @q: the waitqueue
5749 * @mode: which threads
5750 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07005751 * @key: is directly passed to the wakeup function
David Howells50fa6102009-04-28 15:01:38 +01005752 *
5753 * It may be assumed that this function implies a write memory barrier before
5754 * changing the task state if and only if any tasks are woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08005756void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005757 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758{
5759 unsigned long flags;
5760
5761 spin_lock_irqsave(&q->lock, flags);
5762 __wake_up_common(q, mode, nr_exclusive, 0, key);
5763 spin_unlock_irqrestore(&q->lock, flags);
5764}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765EXPORT_SYMBOL(__wake_up);
5766
5767/*
5768 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
5769 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08005770void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771{
5772 __wake_up_common(q, mode, 1, 0, NULL);
5773}
5774
Davide Libenzi4ede8162009-03-31 15:24:20 -07005775void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key)
5776{
5777 __wake_up_common(q, mode, 1, 0, key);
5778}
5779
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780/**
Davide Libenzi4ede8162009-03-31 15:24:20 -07005781 * __wake_up_sync_key - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782 * @q: the waitqueue
5783 * @mode: which threads
5784 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Davide Libenzi4ede8162009-03-31 15:24:20 -07005785 * @key: opaque value to be passed to wakeup targets
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786 *
5787 * The sync wakeup differs that the waker knows that it will schedule
5788 * away soon, so while the target thread will be woken up, it will not
5789 * be migrated to another CPU - ie. the two threads are 'synchronized'
5790 * with each other. This can prevent needless bouncing between CPUs.
5791 *
5792 * On UP it can prevent extra preemption.
David Howells50fa6102009-04-28 15:01:38 +01005793 *
5794 * It may be assumed that this function implies a write memory barrier before
5795 * changing the task state if and only if any tasks are woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796 */
Davide Libenzi4ede8162009-03-31 15:24:20 -07005797void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode,
5798 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799{
5800 unsigned long flags;
5801 int sync = 1;
5802
5803 if (unlikely(!q))
5804 return;
5805
5806 if (unlikely(!nr_exclusive))
5807 sync = 0;
5808
5809 spin_lock_irqsave(&q->lock, flags);
Davide Libenzi4ede8162009-03-31 15:24:20 -07005810 __wake_up_common(q, mode, nr_exclusive, sync, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811 spin_unlock_irqrestore(&q->lock, flags);
5812}
Davide Libenzi4ede8162009-03-31 15:24:20 -07005813EXPORT_SYMBOL_GPL(__wake_up_sync_key);
5814
5815/*
5816 * __wake_up_sync - see __wake_up_sync_key()
5817 */
5818void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
5819{
5820 __wake_up_sync_key(q, mode, nr_exclusive, NULL);
5821}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
5823
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005824/**
5825 * complete: - signals a single thread waiting on this completion
5826 * @x: holds the state of this particular completion
5827 *
5828 * This will wake up a single thread waiting on this completion. Threads will be
5829 * awakened in the same order in which they were queued.
5830 *
5831 * See also complete_all(), wait_for_completion() and related routines.
David Howells50fa6102009-04-28 15:01:38 +01005832 *
5833 * It may be assumed that this function implies a write memory barrier before
5834 * changing the task state if and only if any tasks are woken up.
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005835 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02005836void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837{
5838 unsigned long flags;
5839
5840 spin_lock_irqsave(&x->wait.lock, flags);
5841 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05005842 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843 spin_unlock_irqrestore(&x->wait.lock, flags);
5844}
5845EXPORT_SYMBOL(complete);
5846
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005847/**
5848 * complete_all: - signals all threads waiting on this completion
5849 * @x: holds the state of this particular completion
5850 *
5851 * This will wake up all threads waiting on this particular completion event.
David Howells50fa6102009-04-28 15:01:38 +01005852 *
5853 * It may be assumed that this function implies a write memory barrier before
5854 * changing the task state if and only if any tasks are woken up.
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005855 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02005856void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857{
5858 unsigned long flags;
5859
5860 spin_lock_irqsave(&x->wait.lock, flags);
5861 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05005862 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863 spin_unlock_irqrestore(&x->wait.lock, flags);
5864}
5865EXPORT_SYMBOL(complete_all);
5866
Andi Kleen8cbbe862007-10-15 17:00:14 +02005867static inline long __sched
5868do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870 if (!x->done) {
5871 DECLARE_WAITQUEUE(wait, current);
5872
5873 wait.flags |= WQ_FLAG_EXCLUSIVE;
5874 __add_wait_queue_tail(&x->wait, &wait);
5875 do {
Oleg Nesterov94d3d822008-08-20 16:54:41 -07005876 if (signal_pending_state(state, current)) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04005877 timeout = -ERESTARTSYS;
5878 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02005879 }
5880 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02005882 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04005884 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04005886 if (!x->done)
5887 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 }
5889 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04005890 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02005891}
5892
5893static long __sched
5894wait_for_common(struct completion *x, long timeout, int state)
5895{
5896 might_sleep();
5897
5898 spin_lock_irq(&x->wait.lock);
5899 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02005901 return timeout;
5902}
5903
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005904/**
5905 * wait_for_completion: - waits for completion of a task
5906 * @x: holds the state of this particular completion
5907 *
5908 * This waits to be signaled for completion of a specific task. It is NOT
5909 * interruptible and there is no timeout.
5910 *
5911 * See also similar routines (i.e. wait_for_completion_timeout()) with timeout
5912 * and interrupt capability. Also see complete().
5913 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02005914void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02005915{
5916 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917}
5918EXPORT_SYMBOL(wait_for_completion);
5919
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005920/**
5921 * wait_for_completion_timeout: - waits for completion of a task (w/timeout)
5922 * @x: holds the state of this particular completion
5923 * @timeout: timeout value in jiffies
5924 *
5925 * This waits for either a completion of a specific task to be signaled or for a
5926 * specified timeout to expire. The timeout is in jiffies. It is not
5927 * interruptible.
5928 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02005929unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930wait_for_completion_timeout(struct completion *x, unsigned long timeout)
5931{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005932 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933}
5934EXPORT_SYMBOL(wait_for_completion_timeout);
5935
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005936/**
5937 * wait_for_completion_interruptible: - waits for completion of a task (w/intr)
5938 * @x: holds the state of this particular completion
5939 *
5940 * This waits for completion of a specific task to be signaled. It is
5941 * interruptible.
5942 */
Andi Kleen8cbbe862007-10-15 17:00:14 +02005943int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944{
Andi Kleen51e97992007-10-18 21:32:55 +02005945 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
5946 if (t == -ERESTARTSYS)
5947 return t;
5948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949}
5950EXPORT_SYMBOL(wait_for_completion_interruptible);
5951
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005952/**
5953 * wait_for_completion_interruptible_timeout: - waits for completion (w/(to,intr))
5954 * @x: holds the state of this particular completion
5955 * @timeout: timeout value in jiffies
5956 *
5957 * This waits for either a completion of a specific task to be signaled or for a
5958 * specified timeout to expire. It is interruptible. The timeout is in jiffies.
5959 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02005960unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961wait_for_completion_interruptible_timeout(struct completion *x,
5962 unsigned long timeout)
5963{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005964 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965}
5966EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
5967
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02005968/**
5969 * wait_for_completion_killable: - waits for completion of a task (killable)
5970 * @x: holds the state of this particular completion
5971 *
5972 * This waits to be signaled for completion of a specific task. It can be
5973 * interrupted by a kill signal.
5974 */
Matthew Wilcox009e5772007-12-06 12:29:54 -05005975int __sched wait_for_completion_killable(struct completion *x)
5976{
5977 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
5978 if (t == -ERESTARTSYS)
5979 return t;
5980 return 0;
5981}
5982EXPORT_SYMBOL(wait_for_completion_killable);
5983
Dave Chinnerbe4de352008-08-15 00:40:44 -07005984/**
5985 * try_wait_for_completion - try to decrement a completion without blocking
5986 * @x: completion structure
5987 *
5988 * Returns: 0 if a decrement cannot be done without blocking
5989 * 1 if a decrement succeeded.
5990 *
5991 * If a completion is being used as a counting completion,
5992 * attempt to decrement the counter without blocking. This
5993 * enables us to avoid waiting if the resource the completion
5994 * is protecting is not available.
5995 */
5996bool try_wait_for_completion(struct completion *x)
5997{
5998 int ret = 1;
5999
6000 spin_lock_irq(&x->wait.lock);
6001 if (!x->done)
6002 ret = 0;
6003 else
6004 x->done--;
6005 spin_unlock_irq(&x->wait.lock);
6006 return ret;
6007}
6008EXPORT_SYMBOL(try_wait_for_completion);
6009
6010/**
6011 * completion_done - Test to see if a completion has any waiters
6012 * @x: completion structure
6013 *
6014 * Returns: 0 if there are waiters (wait_for_completion() in progress)
6015 * 1 if there are no waiters.
6016 *
6017 */
6018bool completion_done(struct completion *x)
6019{
6020 int ret = 1;
6021
6022 spin_lock_irq(&x->wait.lock);
6023 if (!x->done)
6024 ret = 0;
6025 spin_unlock_irq(&x->wait.lock);
6026 return ret;
6027}
6028EXPORT_SYMBOL(completion_done);
6029
Andi Kleen8cbbe862007-10-15 17:00:14 +02006030static long __sched
6031sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02006032{
6033 unsigned long flags;
6034 wait_queue_t wait;
6035
6036 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037
Andi Kleen8cbbe862007-10-15 17:00:14 +02006038 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039
Andi Kleen8cbbe862007-10-15 17:00:14 +02006040 spin_lock_irqsave(&q->lock, flags);
6041 __add_wait_queue(q, &wait);
6042 spin_unlock(&q->lock);
6043 timeout = schedule_timeout(timeout);
6044 spin_lock_irq(&q->lock);
6045 __remove_wait_queue(q, &wait);
6046 spin_unlock_irqrestore(&q->lock, flags);
6047
6048 return timeout;
6049}
6050
6051void __sched interruptible_sleep_on(wait_queue_head_t *q)
6052{
6053 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055EXPORT_SYMBOL(interruptible_sleep_on);
6056
Ingo Molnar0fec1712007-07-09 18:52:01 +02006057long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006058interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059{
Andi Kleen8cbbe862007-10-15 17:00:14 +02006060 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062EXPORT_SYMBOL(interruptible_sleep_on_timeout);
6063
Ingo Molnar0fec1712007-07-09 18:52:01 +02006064void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065{
Andi Kleen8cbbe862007-10-15 17:00:14 +02006066 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068EXPORT_SYMBOL(sleep_on);
6069
Ingo Molnar0fec1712007-07-09 18:52:01 +02006070long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071{
Andi Kleen8cbbe862007-10-15 17:00:14 +02006072 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074EXPORT_SYMBOL(sleep_on_timeout);
6075
Ingo Molnarb29739f2006-06-27 02:54:51 -07006076#ifdef CONFIG_RT_MUTEXES
6077
6078/*
6079 * rt_mutex_setprio - set the current priority of a task
6080 * @p: task
6081 * @prio: prio value (kernel-internal form)
6082 *
6083 * This function changes the 'effective' priority of a task. It does
6084 * not touch ->normal_prio like __setscheduler().
6085 *
6086 * Used by the rt_mutex code to implement priority inheritance logic.
6087 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006088void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07006089{
6090 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02006091 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006092 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01006093 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07006094
6095 BUG_ON(prio < 0 || prio > MAX_PRIO);
6096
6097 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006098 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07006099
Andrew Mortond5f9f942007-05-08 20:27:06 -07006100 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02006101 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01006102 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07006103 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02006104 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07006105 if (running)
6106 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02006107
6108 if (rt_prio(prio))
6109 p->sched_class = &rt_sched_class;
6110 else
6111 p->sched_class = &fair_sched_class;
6112
Ingo Molnarb29739f2006-06-27 02:54:51 -07006113 p->prio = prio;
6114
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07006115 if (running)
6116 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02006117 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02006118 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01006119
6120 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07006121 }
6122 task_rq_unlock(rq, &flags);
6123}
6124
6125#endif
6126
Ingo Molnar36c8b582006-07-03 00:25:41 -07006127void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128{
Ingo Molnardd41f592007-07-09 18:51:59 +02006129 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006131 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132
6133 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
6134 return;
6135 /*
6136 * We have to be careful, if called from sys_setpriority(),
6137 * the task might be in the middle of scheduling on another CPU.
6138 */
6139 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006140 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141 /*
6142 * The RT priorities are set via sched_setscheduler(), but we still
6143 * allow the 'normal' nice value to be set - but as expected
6144 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02006145 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146 */
Ingo Molnare05606d2007-07-09 18:51:59 +02006147 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148 p->static_prio = NICE_TO_PRIO(nice);
6149 goto out_unlock;
6150 }
Ingo Molnardd41f592007-07-09 18:51:59 +02006151 on_rq = p->se.on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02006152 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02006153 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07006156 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07006157 old_prio = p->prio;
6158 p->prio = effective_prio(p);
6159 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160
Ingo Molnardd41f592007-07-09 18:51:59 +02006161 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02006162 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07006164 * If the task increased its priority or is running and
6165 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07006167 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168 resched_task(rq->curr);
6169 }
6170out_unlock:
6171 task_rq_unlock(rq, &flags);
6172}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173EXPORT_SYMBOL(set_user_nice);
6174
Matt Mackalle43379f2005-05-01 08:59:00 -07006175/*
6176 * can_nice - check if a task can reduce its nice value
6177 * @p: task
6178 * @nice: nice value
6179 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006180int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07006181{
Matt Mackall024f4742005-08-18 11:24:19 -07006182 /* convert nice value [19,-20] to rlimit style value [1,40] */
6183 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006184
Matt Mackalle43379f2005-05-01 08:59:00 -07006185 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
6186 capable(CAP_SYS_NICE));
6187}
6188
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189#ifdef __ARCH_WANT_SYS_NICE
6190
6191/*
6192 * sys_nice - change the priority of the current process.
6193 * @increment: priority increment
6194 *
6195 * sys_setpriority is a more generic, but much slower function that
6196 * does similar things.
6197 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006198SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006200 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201
6202 /*
6203 * Setpriority might change our priority at the same moment.
6204 * We don't have to worry. Conceptually one call occurs first
6205 * and we have a single winner.
6206 */
Matt Mackalle43379f2005-05-01 08:59:00 -07006207 if (increment < -40)
6208 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209 if (increment > 40)
6210 increment = 40;
6211
Américo Wang2b8f8362009-02-16 18:54:21 +08006212 nice = TASK_NICE(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213 if (nice < -20)
6214 nice = -20;
6215 if (nice > 19)
6216 nice = 19;
6217
Matt Mackalle43379f2005-05-01 08:59:00 -07006218 if (increment < 0 && !can_nice(current, nice))
6219 return -EPERM;
6220
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221 retval = security_task_setnice(current, nice);
6222 if (retval)
6223 return retval;
6224
6225 set_user_nice(current, nice);
6226 return 0;
6227}
6228
6229#endif
6230
6231/**
6232 * task_prio - return the priority value of a given task.
6233 * @p: the task in question.
6234 *
6235 * This is the priority value as seen by users in /proc.
6236 * RT tasks are offset by -200. Normal tasks are centered
6237 * around 0, value goes from -16 to +15.
6238 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006239int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240{
6241 return p->prio - MAX_RT_PRIO;
6242}
6243
6244/**
6245 * task_nice - return the nice value of a given task.
6246 * @p: the task in question.
6247 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006248int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249{
6250 return TASK_NICE(p);
6251}
Pavel Roskin150d8be2008-03-05 16:56:37 -05006252EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253
6254/**
6255 * idle_cpu - is a given cpu idle currently?
6256 * @cpu: the processor in question.
6257 */
6258int idle_cpu(int cpu)
6259{
6260 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
6261}
6262
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263/**
6264 * idle_task - return the idle task for a given cpu.
6265 * @cpu: the processor in question.
6266 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006267struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268{
6269 return cpu_rq(cpu)->idle;
6270}
6271
6272/**
6273 * find_process_by_pid - find a process with a matching PID value.
6274 * @pid: the pid in question.
6275 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02006276static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07006278 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279}
6280
6281/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02006282static void
6283__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284{
Ingo Molnardd41f592007-07-09 18:51:59 +02006285 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006286
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02006288 switch (p->policy) {
6289 case SCHED_NORMAL:
6290 case SCHED_BATCH:
6291 case SCHED_IDLE:
6292 p->sched_class = &fair_sched_class;
6293 break;
6294 case SCHED_FIFO:
6295 case SCHED_RR:
6296 p->sched_class = &rt_sched_class;
6297 break;
6298 }
6299
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07006301 p->normal_prio = normal_prio(p);
6302 /* we are holding p->pi_lock already */
6303 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07006304 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305}
6306
David Howellsc69e8d92008-11-14 10:39:19 +11006307/*
6308 * check the target process has a UID that matches the current process's
6309 */
6310static bool check_same_owner(struct task_struct *p)
6311{
6312 const struct cred *cred = current_cred(), *pcred;
6313 bool match;
6314
6315 rcu_read_lock();
6316 pcred = __task_cred(p);
6317 match = (cred->euid == pcred->euid ||
6318 cred->euid == pcred->uid);
6319 rcu_read_unlock();
6320 return match;
6321}
6322
Rusty Russell961ccdd2008-06-23 13:55:38 +10006323static int __sched_setscheduler(struct task_struct *p, int policy,
6324 struct sched_param *param, bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02006326 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01006328 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006329 struct rq *rq;
Lennart Poetteringca94c442009-06-15 17:17:47 +02006330 int reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331
Steven Rostedt66e53932006-06-27 02:54:44 -07006332 /* may grab non-irq protected spin_locks */
6333 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334recheck:
6335 /* double check policy once rq lock held */
Lennart Poetteringca94c442009-06-15 17:17:47 +02006336 if (policy < 0) {
6337 reset_on_fork = p->sched_reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338 policy = oldpolicy = p->policy;
Lennart Poetteringca94c442009-06-15 17:17:47 +02006339 } else {
6340 reset_on_fork = !!(policy & SCHED_RESET_ON_FORK);
6341 policy &= ~SCHED_RESET_ON_FORK;
6342
6343 if (policy != SCHED_FIFO && policy != SCHED_RR &&
6344 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
6345 policy != SCHED_IDLE)
6346 return -EINVAL;
6347 }
6348
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349 /*
6350 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02006351 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
6352 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006353 */
6354 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006355 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04006356 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02006358 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359 return -EINVAL;
6360
Olivier Croquette37e4ab32005-06-25 14:57:32 -07006361 /*
6362 * Allow unprivileged RT tasks to decrease priority:
6363 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10006364 if (user && !capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02006365 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07006366 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07006367
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07006368 if (!lock_task_sighand(p, &flags))
6369 return -ESRCH;
6370 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
6371 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07006372
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07006373 /* can't set/change the rt policy */
6374 if (policy != p->policy && !rlim_rtprio)
6375 return -EPERM;
6376
6377 /* can't increase priority */
6378 if (param->sched_priority > p->rt_priority &&
6379 param->sched_priority > rlim_rtprio)
6380 return -EPERM;
6381 }
Ingo Molnardd41f592007-07-09 18:51:59 +02006382 /*
6383 * Like positive nice levels, dont allow tasks to
6384 * move out of SCHED_IDLE either:
6385 */
6386 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
6387 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07006388
Olivier Croquette37e4ab32005-06-25 14:57:32 -07006389 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11006390 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07006391 return -EPERM;
Lennart Poetteringca94c442009-06-15 17:17:47 +02006392
6393 /* Normal users shall not reset the sched_reset_on_fork flag */
6394 if (p->sched_reset_on_fork && !reset_on_fork)
6395 return -EPERM;
Olivier Croquette37e4ab32005-06-25 14:57:32 -07006396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07006398 if (user) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01006399#ifdef CONFIG_RT_GROUP_SCHED
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07006400 /*
6401 * Do not allow realtime tasks into groups that have no runtime
6402 * assigned.
6403 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02006404 if (rt_bandwidth_enabled() && rt_policy(policy) &&
6405 task_group(p)->rt_bandwidth.rt_runtime == 0)
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07006406 return -EPERM;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01006407#endif
6408
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07006409 retval = security_task_setscheduler(p, policy, param);
6410 if (retval)
6411 return retval;
6412 }
6413
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07006415 * make sure no PI-waiters arrive (or leave) while we are
6416 * changing the priority of the task:
6417 */
6418 spin_lock_irqsave(&p->pi_lock, flags);
6419 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420 * To be able to change p->policy safely, the apropriate
6421 * runqueue lock must be held.
6422 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07006423 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424 /* recheck policy now with rq lock held */
6425 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
6426 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07006427 __task_rq_unlock(rq);
6428 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429 goto recheck;
6430 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02006431 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02006432 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01006433 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07006434 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006435 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07006436 if (running)
6437 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02006438
Lennart Poetteringca94c442009-06-15 17:17:47 +02006439 p->sched_reset_on_fork = reset_on_fork;
6440
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02006442 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02006443
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07006444 if (running)
6445 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02006446 if (on_rq) {
6447 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01006448
6449 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07006451 __task_rq_unlock(rq);
6452 spin_unlock_irqrestore(&p->pi_lock, flags);
6453
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07006454 rt_mutex_adjust_pi(p);
6455
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456 return 0;
6457}
Rusty Russell961ccdd2008-06-23 13:55:38 +10006458
6459/**
6460 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
6461 * @p: the task in question.
6462 * @policy: new policy.
6463 * @param: structure containing the new RT priority.
6464 *
6465 * NOTE that the task may be already dead.
6466 */
6467int sched_setscheduler(struct task_struct *p, int policy,
6468 struct sched_param *param)
6469{
6470 return __sched_setscheduler(p, policy, param, true);
6471}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472EXPORT_SYMBOL_GPL(sched_setscheduler);
6473
Rusty Russell961ccdd2008-06-23 13:55:38 +10006474/**
6475 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
6476 * @p: the task in question.
6477 * @policy: new policy.
6478 * @param: structure containing the new RT priority.
6479 *
6480 * Just like sched_setscheduler, only don't bother checking if the
6481 * current context has permission. For example, this is needed in
6482 * stop_machine(): we create temporary high priority worker threads,
6483 * but our caller might not have that capability.
6484 */
6485int sched_setscheduler_nocheck(struct task_struct *p, int policy,
6486 struct sched_param *param)
6487{
6488 return __sched_setscheduler(p, policy, param, false);
6489}
6490
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006491static int
6492do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494 struct sched_param lparam;
6495 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07006496 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497
6498 if (!param || pid < 0)
6499 return -EINVAL;
6500 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
6501 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07006502
6503 rcu_read_lock();
6504 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07006506 if (p != NULL)
6507 retval = sched_setscheduler(p, policy, &lparam);
6508 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07006509
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510 return retval;
6511}
6512
6513/**
6514 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
6515 * @pid: the pid in question.
6516 * @policy: new policy.
6517 * @param: structure containing the new RT priority.
6518 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006519SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
6520 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521{
Jason Baronc21761f2006-01-18 17:43:03 -08006522 /* negative values for policy are not valid */
6523 if (policy < 0)
6524 return -EINVAL;
6525
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526 return do_sched_setscheduler(pid, policy, param);
6527}
6528
6529/**
6530 * sys_sched_setparam - set/change the RT priority of a thread
6531 * @pid: the pid in question.
6532 * @param: structure containing the new RT priority.
6533 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006534SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535{
6536 return do_sched_setscheduler(pid, -1, param);
6537}
6538
6539/**
6540 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
6541 * @pid: the pid in question.
6542 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006543SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544{
Ingo Molnar36c8b582006-07-03 00:25:41 -07006545 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006546 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547
6548 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006549 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550
6551 retval = -ESRCH;
6552 read_lock(&tasklist_lock);
6553 p = find_process_by_pid(pid);
6554 if (p) {
6555 retval = security_task_getscheduler(p);
6556 if (!retval)
Lennart Poetteringca94c442009-06-15 17:17:47 +02006557 retval = p->policy
6558 | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559 }
6560 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561 return retval;
6562}
6563
6564/**
Lennart Poetteringca94c442009-06-15 17:17:47 +02006565 * sys_sched_getparam - get the RT priority of a thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566 * @pid: the pid in question.
6567 * @param: structure containing the RT priority.
6568 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006569SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570{
6571 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07006572 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006573 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574
6575 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006576 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006577
6578 read_lock(&tasklist_lock);
6579 p = find_process_by_pid(pid);
6580 retval = -ESRCH;
6581 if (!p)
6582 goto out_unlock;
6583
6584 retval = security_task_getscheduler(p);
6585 if (retval)
6586 goto out_unlock;
6587
6588 lp.sched_priority = p->rt_priority;
6589 read_unlock(&tasklist_lock);
6590
6591 /*
6592 * This one might sleep, we cannot do it with a spinlock held ...
6593 */
6594 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
6595
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596 return retval;
6597
6598out_unlock:
6599 read_unlock(&tasklist_lock);
6600 return retval;
6601}
6602
Rusty Russell96f874e2008-11-25 02:35:14 +10306603long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306605 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07006606 struct task_struct *p;
6607 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006609 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610 read_lock(&tasklist_lock);
6611
6612 p = find_process_by_pid(pid);
6613 if (!p) {
6614 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006615 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616 return -ESRCH;
6617 }
6618
6619 /*
6620 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006621 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622 * usage count and then drop tasklist_lock.
6623 */
6624 get_task_struct(p);
6625 read_unlock(&tasklist_lock);
6626
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306627 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
6628 retval = -ENOMEM;
6629 goto out_put_task;
6630 }
6631 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
6632 retval = -ENOMEM;
6633 goto out_free_cpus_allowed;
6634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635 retval = -EPERM;
David Howellsc69e8d92008-11-14 10:39:19 +11006636 if (!check_same_owner(p) && !capable(CAP_SYS_NICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637 goto out_unlock;
6638
David Quigleye7834f82006-06-23 02:03:59 -07006639 retval = security_task_setscheduler(p, 0, NULL);
6640 if (retval)
6641 goto out_unlock;
6642
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306643 cpuset_cpus_allowed(p, cpus_allowed);
6644 cpumask_and(new_mask, in_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07006645 again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306646 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647
Paul Menage8707d8b2007-10-18 23:40:22 -07006648 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306649 cpuset_cpus_allowed(p, cpus_allowed);
6650 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07006651 /*
6652 * We must have raced with a concurrent cpuset
6653 * update. Just reset the cpus_allowed to the
6654 * cpuset's cpus_allowed
6655 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306656 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07006657 goto again;
6658 }
6659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306661 free_cpumask_var(new_mask);
6662out_free_cpus_allowed:
6663 free_cpumask_var(cpus_allowed);
6664out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006665 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006666 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006667 return retval;
6668}
6669
6670static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e2008-11-25 02:35:14 +10306671 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672{
Rusty Russell96f874e2008-11-25 02:35:14 +10306673 if (len < cpumask_size())
6674 cpumask_clear(new_mask);
6675 else if (len > cpumask_size())
6676 len = cpumask_size();
6677
Linus Torvalds1da177e2005-04-16 15:20:36 -07006678 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
6679}
6680
6681/**
6682 * sys_sched_setaffinity - set the cpu affinity of a process
6683 * @pid: pid of the process
6684 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
6685 * @user_mask_ptr: user-space pointer to the new cpu mask
6686 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006687SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
6688 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006689{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306690 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691 int retval;
6692
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306693 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
6694 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695
Rusty Russell5a16f3d2008-11-25 02:35:11 +10306696 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
6697 if (retval == 0)
6698 retval = sched_setaffinity(pid, new_mask);
6699 free_cpumask_var(new_mask);
6700 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701}
6702
Rusty Russell96f874e2008-11-25 02:35:14 +10306703long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006704{
Ingo Molnar36c8b582006-07-03 00:25:41 -07006705 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006708 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006709 read_lock(&tasklist_lock);
6710
6711 retval = -ESRCH;
6712 p = find_process_by_pid(pid);
6713 if (!p)
6714 goto out_unlock;
6715
David Quigleye7834f82006-06-23 02:03:59 -07006716 retval = security_task_getscheduler(p);
6717 if (retval)
6718 goto out_unlock;
6719
Rusty Russell96f874e2008-11-25 02:35:14 +10306720 cpumask_and(mask, &p->cpus_allowed, cpu_online_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721
6722out_unlock:
6723 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006724 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725
Ulrich Drepper9531b622007-08-09 11:16:46 +02006726 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727}
6728
6729/**
6730 * sys_sched_getaffinity - get the cpu affinity of a process
6731 * @pid: pid of the process
6732 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
6733 * @user_mask_ptr: user-space pointer to hold the current cpu mask
6734 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006735SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
6736 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737{
6738 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10306739 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006740
Rusty Russellf17c8602008-11-25 02:35:11 +10306741 if (len < cpumask_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742 return -EINVAL;
6743
Rusty Russellf17c8602008-11-25 02:35:11 +10306744 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
6745 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746
Rusty Russellf17c8602008-11-25 02:35:11 +10306747 ret = sched_getaffinity(pid, mask);
6748 if (ret == 0) {
6749 if (copy_to_user(user_mask_ptr, mask, cpumask_size()))
6750 ret = -EFAULT;
6751 else
6752 ret = cpumask_size();
6753 }
6754 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755
Rusty Russellf17c8602008-11-25 02:35:11 +10306756 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757}
6758
6759/**
6760 * sys_sched_yield - yield the current processor to other threads.
6761 *
Ingo Molnardd41f592007-07-09 18:51:59 +02006762 * This function yields the current CPU to other tasks. If there are no
6763 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006765SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006767 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768
Ingo Molnar2d723762007-10-15 17:00:12 +02006769 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02006770 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771
6772 /*
6773 * Since we are going to call schedule() anyway, there's
6774 * no need to preempt or enable interrupts:
6775 */
6776 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07006777 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778 _raw_spin_unlock(&rq->lock);
6779 preempt_enable_no_resched();
6780
6781 schedule();
6782
6783 return 0;
6784}
6785
Peter Zijlstrad86ee482009-07-10 14:57:57 +02006786static inline int should_resched(void)
6787{
6788 return need_resched() && !(preempt_count() & PREEMPT_ACTIVE);
6789}
6790
Andrew Mortone7b38402006-06-30 01:56:00 -07006791static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792{
Frederic Weisbeckere7aaaa62009-07-16 15:44:29 +02006793 add_preempt_count(PREEMPT_ACTIVE);
6794 schedule();
6795 sub_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796}
6797
Herbert Xu02b67cc2008-01-25 21:08:28 +01006798int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02006800 if (should_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006801 __cond_resched();
6802 return 1;
6803 }
6804 return 0;
6805}
Herbert Xu02b67cc2008-01-25 21:08:28 +01006806EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807
6808/*
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02006809 * __cond_resched_lock() - if a reschedule is pending, drop the given lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006810 * call schedule, and on return reacquire the lock.
6811 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006812 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813 * operations here to prevent schedule() from being called twice (once via
6814 * spin_unlock(), once by hand).
6815 */
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02006816int __cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006817{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02006818 int resched = should_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07006819 int ret = 0;
6820
Nick Piggin95c354f2008-01-30 13:31:20 +01006821 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822 spin_unlock(lock);
Peter Zijlstrad86ee482009-07-10 14:57:57 +02006823 if (resched)
Nick Piggin95c354f2008-01-30 13:31:20 +01006824 __cond_resched();
6825 else
6826 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07006827 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829 }
Jan Kara6df3cec2005-06-13 15:52:32 -07006830 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006831}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02006832EXPORT_SYMBOL(__cond_resched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02006834int __sched __cond_resched_softirq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835{
6836 BUG_ON(!in_softirq());
6837
Peter Zijlstrad86ee482009-07-10 14:57:57 +02006838 if (should_resched()) {
Thomas Gleixner98d82562007-05-23 13:58:18 -07006839 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840 __cond_resched();
6841 local_bh_disable();
6842 return 1;
6843 }
6844 return 0;
6845}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02006846EXPORT_SYMBOL(__cond_resched_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848/**
6849 * yield - yield the current processor to other threads.
6850 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08006851 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07006852 * thread runnable and calls sys_sched_yield().
6853 */
6854void __sched yield(void)
6855{
6856 set_current_state(TASK_RUNNING);
6857 sys_sched_yield();
6858}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859EXPORT_SYMBOL(yield);
6860
6861/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006862 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863 * that process accounting knows that this is a task in IO wait state.
6864 *
6865 * But don't do that if it is a deliberate, throttling IO wait (this task
6866 * has set its backing_dev_info: the queue against which it should throttle)
6867 */
6868void __sched io_schedule(void)
6869{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09006870 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871
Shailabh Nagar0ff92242006-07-14 00:24:37 -07006872 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873 atomic_inc(&rq->nr_iowait);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07006874 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875 schedule();
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07006876 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07006878 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006879}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880EXPORT_SYMBOL(io_schedule);
6881
6882long __sched io_schedule_timeout(long timeout)
6883{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09006884 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006885 long ret;
6886
Shailabh Nagar0ff92242006-07-14 00:24:37 -07006887 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888 atomic_inc(&rq->nr_iowait);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07006889 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890 ret = schedule_timeout(timeout);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07006891 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07006893 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894 return ret;
6895}
6896
6897/**
6898 * sys_sched_get_priority_max - return maximum RT priority.
6899 * @policy: scheduling class.
6900 *
6901 * this syscall returns the maximum rt_priority that can be used
6902 * by a given scheduling class.
6903 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006904SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006905{
6906 int ret = -EINVAL;
6907
6908 switch (policy) {
6909 case SCHED_FIFO:
6910 case SCHED_RR:
6911 ret = MAX_USER_RT_PRIO-1;
6912 break;
6913 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08006914 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02006915 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916 ret = 0;
6917 break;
6918 }
6919 return ret;
6920}
6921
6922/**
6923 * sys_sched_get_priority_min - return minimum RT priority.
6924 * @policy: scheduling class.
6925 *
6926 * this syscall returns the minimum rt_priority that can be used
6927 * by a given scheduling class.
6928 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01006929SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930{
6931 int ret = -EINVAL;
6932
6933 switch (policy) {
6934 case SCHED_FIFO:
6935 case SCHED_RR:
6936 ret = 1;
6937 break;
6938 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08006939 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02006940 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941 ret = 0;
6942 }
6943 return ret;
6944}
6945
6946/**
6947 * sys_sched_rr_get_interval - return the default timeslice of a process.
6948 * @pid: pid of the process.
6949 * @interval: userspace pointer to the timeslice value.
6950 *
6951 * this syscall writes the default timeslice value of a given process
6952 * into the user-space timespec buffer. A value of '0' means infinity.
6953 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01006954SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01006955 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006956{
Ingo Molnar36c8b582006-07-03 00:25:41 -07006957 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006958 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006959 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961
6962 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006963 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006964
6965 retval = -ESRCH;
6966 read_lock(&tasklist_lock);
6967 p = find_process_by_pid(pid);
6968 if (!p)
6969 goto out_unlock;
6970
6971 retval = security_task_getscheduler(p);
6972 if (retval)
6973 goto out_unlock;
6974
Ingo Molnar77034932007-12-04 17:04:39 +01006975 /*
6976 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
6977 * tasks that are on an otherwise idle runqueue:
6978 */
6979 time_slice = 0;
6980 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006981 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08006982 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006983 struct sched_entity *se = &p->se;
6984 unsigned long flags;
6985 struct rq *rq;
6986
6987 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01006988 if (rq->cfs.load.weight)
6989 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006990 task_rq_unlock(rq, &flags);
6991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006992 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006993 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006996
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997out_unlock:
6998 read_unlock(&tasklist_lock);
6999 return retval;
7000}
7001
Steven Rostedt7c731e02008-05-12 21:20:41 +02007002static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07007003
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01007004void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07007007 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02007010 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07007011 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02007012#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07007013 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02007014 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02007016 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017#else
7018 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02007019 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02007021 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007022#endif
7023#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05007024 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007025#endif
David Rientjesaa47b7e2009-05-04 01:38:05 -07007026 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
7027 task_pid_nr(p), task_pid_nr(p->real_parent),
7028 (unsigned long)task_thread_info(p)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01007030 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031}
7032
Ingo Molnare59e2ae2006-12-06 20:35:59 -08007033void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034{
Ingo Molnar36c8b582006-07-03 00:25:41 -07007035 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036
Ingo Molnar4bd77322007-07-11 21:21:47 +02007037#if BITS_PER_LONG == 32
7038 printk(KERN_INFO
7039 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02007041 printk(KERN_INFO
7042 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007043#endif
7044 read_lock(&tasklist_lock);
7045 do_each_thread(g, p) {
7046 /*
7047 * reset the NMI-timeout, listing all files on a slow
7048 * console might take alot of time:
7049 */
7050 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07007051 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01007052 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053 } while_each_thread(g, p);
7054
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07007055 touch_all_softlockup_watchdogs();
7056
Ingo Molnardd41f592007-07-09 18:51:59 +02007057#ifdef CONFIG_SCHED_DEBUG
7058 sysrq_sched_debug_show();
7059#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08007061 /*
7062 * Only show locks if all tasks are dumped:
7063 */
7064 if (state_filter == -1)
7065 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007066}
7067
Ingo Molnar1df21052007-07-09 18:51:58 +02007068void __cpuinit init_idle_bootup_task(struct task_struct *idle)
7069{
Ingo Molnardd41f592007-07-09 18:51:59 +02007070 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02007071}
7072
Ingo Molnarf340c0d2005-06-28 16:40:42 +02007073/**
7074 * init_idle - set up an idle thread for a given CPU
7075 * @idle: task in question
7076 * @cpu: cpu the idle task belongs to
7077 *
7078 * NOTE: this function does not set the idle thread's NEED_RESCHED
7079 * flag, to make booting more robust.
7080 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07007081void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007083 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007084 unsigned long flags;
7085
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01007086 spin_lock_irqsave(&rq->lock, flags);
7087
Ingo Molnardd41f592007-07-09 18:51:59 +02007088 __sched_fork(idle);
7089 idle->se.exec_start = sched_clock();
7090
Ingo Molnarb29739f2006-06-27 02:54:51 -07007091 idle->prio = idle->normal_prio = MAX_PRIO;
Rusty Russell96f874e2008-11-25 02:35:14 +10307092 cpumask_copy(&idle->cpus_allowed, cpumask_of(cpu));
Ingo Molnardd41f592007-07-09 18:51:59 +02007093 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007094
Linus Torvalds1da177e2005-04-16 15:20:36 -07007095 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07007096#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
7097 idle->oncpu = 1;
7098#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099 spin_unlock_irqrestore(&rq->lock, flags);
7100
7101 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07007102#if defined(CONFIG_PREEMPT)
7103 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
7104#else
Al Viroa1261f52005-11-13 16:06:55 -08007105 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07007106#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007107 /*
7108 * The idle tasks have their own, simple scheduling class:
7109 */
7110 idle->sched_class = &idle_sched_class;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01007111 ftrace_graph_init_task(idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112}
7113
7114/*
7115 * In a system that switches off the HZ timer nohz_cpu_mask
7116 * indicates which cpus entered this state. This is used
7117 * in the rcu update to wait only for active cpus. For system
7118 * which do not switch off the HZ timer nohz_cpu_mask should
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10307119 * always be CPU_BITS_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007120 */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10307121cpumask_var_t nohz_cpu_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122
Ingo Molnar19978ca2007-11-09 22:39:38 +01007123/*
7124 * Increase the granularity value when there are more CPUs,
7125 * because with more CPUs the 'effective latency' as visible
7126 * to users decreases. But the relationship is not linear,
7127 * so pick a second-best guess by going with the log2 of the
7128 * number of CPUs.
7129 *
7130 * This idea comes from the SD scheduler of Con Kolivas:
7131 */
7132static inline void sched_init_granularity(void)
7133{
7134 unsigned int factor = 1 + ilog2(num_online_cpus());
7135 const unsigned long limit = 200000000;
7136
7137 sysctl_sched_min_granularity *= factor;
7138 if (sysctl_sched_min_granularity > limit)
7139 sysctl_sched_min_granularity = limit;
7140
7141 sysctl_sched_latency *= factor;
7142 if (sysctl_sched_latency > limit)
7143 sysctl_sched_latency = limit;
7144
7145 sysctl_sched_wakeup_granularity *= factor;
Peter Zijlstra55cd5342008-08-04 08:54:26 +02007146
7147 sysctl_sched_shares_ratelimit *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01007148}
7149
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150#ifdef CONFIG_SMP
7151/*
7152 * This is how migration works:
7153 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07007154 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155 * runqueue and wake up that CPU's migration thread.
7156 * 2) we down() the locked semaphore => thread blocks.
7157 * 3) migration thread wakes up (implicitly it forces the migrated
7158 * thread off the CPU)
7159 * 4) it gets the migration request and checks whether the migrated
7160 * task is still in the wrong runqueue.
7161 * 5) if it's in the wrong runqueue then the migration thread removes
7162 * it and puts it into the right queue.
7163 * 6) migration thread up()s the semaphore.
7164 * 7) we wake up and the migration is done.
7165 */
7166
7167/*
7168 * Change a given task's CPU affinity. Migrate the thread to a
7169 * proper CPU and schedule it away if the CPU it's executing on
7170 * is removed from the allowed bitmask.
7171 *
7172 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007173 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07007174 * call is not atomic; no spinlocks may be held.
7175 */
Rusty Russell96f874e2008-11-25 02:35:14 +10307176int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007177{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007178 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007179 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007180 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007181 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007182
7183 rq = task_rq_lock(p, &flags);
Rusty Russell96f874e2008-11-25 02:35:14 +10307184 if (!cpumask_intersects(new_mask, cpu_online_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007185 ret = -EINVAL;
7186 goto out;
7187 }
7188
David Rientjes9985b0b2008-06-05 12:57:11 -07007189 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current &&
Rusty Russell96f874e2008-11-25 02:35:14 +10307190 !cpumask_equal(&p->cpus_allowed, new_mask))) {
David Rientjes9985b0b2008-06-05 12:57:11 -07007191 ret = -EINVAL;
7192 goto out;
7193 }
7194
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01007195 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07007196 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01007197 else {
Rusty Russell96f874e2008-11-25 02:35:14 +10307198 cpumask_copy(&p->cpus_allowed, new_mask);
7199 p->rt.nr_cpus_allowed = cpumask_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01007200 }
7201
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e2008-11-25 02:35:14 +10307203 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007204 goto out;
7205
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10307206 if (migrate_task(p, cpumask_any_and(cpu_online_mask, new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207 /* Need help from migration thread: drop lock and wait. */
Peter Zijlstra693525e2009-07-21 13:56:38 +02007208 struct task_struct *mt = rq->migration_thread;
7209
7210 get_task_struct(mt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211 task_rq_unlock(rq, &flags);
7212 wake_up_process(rq->migration_thread);
Peter Zijlstra693525e2009-07-21 13:56:38 +02007213 put_task_struct(mt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214 wait_for_completion(&req.done);
7215 tlb_migrate_finish(p->mm);
7216 return 0;
7217 }
7218out:
7219 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007220
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221 return ret;
7222}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07007223EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007224
7225/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007226 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07007227 * this because either it can't run here any more (set_cpus_allowed()
7228 * away from this CPU, or CPU going down), or because we're
7229 * attempting to rebalance this task on exec (sched_exec).
7230 *
7231 * So we race with normal scheduler movements, but that's OK, as long
7232 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07007233 *
7234 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007235 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07007236static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007238 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02007239 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007240
Max Krasnyanskye761b772008-07-15 04:43:49 -07007241 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07007242 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243
7244 rq_src = cpu_rq(src_cpu);
7245 rq_dest = cpu_rq(dest_cpu);
7246
7247 double_rq_lock(rq_src, rq_dest);
7248 /* Already moved. */
7249 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07007250 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007251 /* Affinity changed (again). */
Rusty Russell96f874e2008-11-25 02:35:14 +10307252 if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07007253 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254
Ingo Molnardd41f592007-07-09 18:51:59 +02007255 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02007256 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02007257 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02007258
Linus Torvalds1da177e2005-04-16 15:20:36 -07007259 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02007260 if (on_rq) {
7261 activate_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02007262 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007263 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07007264done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07007265 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07007266fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007267 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07007268 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007269}
7270
7271/*
7272 * migration_thread - this is a highprio system thread that performs
7273 * thread migration by bumping thread off CPU then 'pushing' onto
7274 * another runqueue.
7275 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07007276static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007277{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007278 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007279 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007280
7281 rq = cpu_rq(cpu);
7282 BUG_ON(rq->migration_thread != current);
7283
7284 set_current_state(TASK_INTERRUPTIBLE);
7285 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007286 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007288
Linus Torvalds1da177e2005-04-16 15:20:36 -07007289 spin_lock_irq(&rq->lock);
7290
7291 if (cpu_is_offline(cpu)) {
7292 spin_unlock_irq(&rq->lock);
Oleg Nesterov371cbb32009-06-17 16:27:45 -07007293 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294 }
7295
7296 if (rq->active_balance) {
7297 active_load_balance(rq, cpu);
7298 rq->active_balance = 0;
7299 }
7300
7301 head = &rq->migration_queue;
7302
7303 if (list_empty(head)) {
7304 spin_unlock_irq(&rq->lock);
7305 schedule();
7306 set_current_state(TASK_INTERRUPTIBLE);
7307 continue;
7308 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07007309 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007310 list_del_init(head->next);
7311
Nick Piggin674311d2005-06-25 14:57:27 -07007312 spin_unlock(&rq->lock);
7313 __migrate_task(req->task, cpu, req->dest_cpu);
7314 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007315
7316 complete(&req->done);
7317 }
7318 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320 return 0;
7321}
7322
7323#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07007324
7325static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
7326{
7327 int ret;
7328
7329 local_irq_disable();
7330 ret = __migrate_task(p, src_cpu, dest_cpu);
7331 local_irq_enable();
7332 return ret;
7333}
7334
Kirill Korotaev054b9102006-12-10 02:20:11 -08007335/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02007336 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08007337 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07007338static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007340 int dest_cpu;
Mike Travis6ca09df2008-12-31 18:08:45 -08007341 const struct cpumask *nodemask = cpumask_of_node(cpu_to_node(dead_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307343again:
7344 /* Look for allowed, online CPU in same node. */
7345 for_each_cpu_and(dest_cpu, nodemask, cpu_online_mask)
7346 if (cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
7347 goto move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307349 /* Any allowed, online CPU? */
7350 dest_cpu = cpumask_any_and(&p->cpus_allowed, cpu_online_mask);
7351 if (dest_cpu < nr_cpu_ids)
7352 goto move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307354 /* No more Mr. Nice Guy. */
7355 if (dest_cpu >= nr_cpu_ids) {
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307356 cpuset_cpus_allowed_locked(p, &p->cpus_allowed);
7357 dest_cpu = cpumask_any_and(cpu_online_mask, &p->cpus_allowed);
Mike Travisf9a86fc2008-04-04 18:11:07 -07007358
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307359 /*
7360 * Don't tell them about moving exiting tasks or
7361 * kernel threads (both mm NULL), since they never
7362 * leave kernel.
7363 */
7364 if (p->mm && printk_ratelimit()) {
7365 printk(KERN_INFO "process %d (%s) no "
7366 "longer affine to cpu%d\n",
7367 task_pid_nr(p), p->comm, dead_cpu);
Andi Kleen3a5c3592007-10-15 17:00:14 +02007368 }
Rusty Russelle76bd8d2008-11-25 02:35:11 +10307369 }
7370
7371move:
7372 /* It can have affinity changed while we were choosing. */
7373 if (unlikely(!__migrate_task_irq(p, dead_cpu, dest_cpu)))
7374 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007375}
7376
7377/*
7378 * While a dead CPU has no uninterruptible tasks queued at this point,
7379 * it might still have a nonzero ->nr_uninterruptible counter, because
7380 * for performance reasons the counter is not stricly tracking tasks to
7381 * their home CPUs. So we just add the counter to another CPU's counter,
7382 * to keep the global sum constant after CPU-down:
7383 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07007384static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385{
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10307386 struct rq *rq_dest = cpu_rq(cpumask_any(cpu_online_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007387 unsigned long flags;
7388
7389 local_irq_save(flags);
7390 double_rq_lock(rq_src, rq_dest);
7391 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
7392 rq_src->nr_uninterruptible = 0;
7393 double_rq_unlock(rq_src, rq_dest);
7394 local_irq_restore(flags);
7395}
7396
7397/* Run through task list and migrate tasks from the dead cpu. */
7398static void migrate_live_tasks(int src_cpu)
7399{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007400 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007401
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07007402 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403
Ingo Molnar48f24c42006-07-03 00:25:40 -07007404 do_each_thread(t, p) {
7405 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007406 continue;
7407
Ingo Molnar48f24c42006-07-03 00:25:40 -07007408 if (task_cpu(p) == src_cpu)
7409 move_task_off_dead_cpu(src_cpu, p);
7410 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07007412 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413}
7414
Ingo Molnardd41f592007-07-09 18:51:59 +02007415/*
7416 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01007417 * It does so by boosting its priority to highest possible.
7418 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007419 */
7420void sched_idle_next(void)
7421{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007422 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07007423 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007424 struct task_struct *p = rq->idle;
7425 unsigned long flags;
7426
7427 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07007428 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429
Ingo Molnar48f24c42006-07-03 00:25:40 -07007430 /*
7431 * Strictly not necessary since rest of the CPUs are stopped by now
7432 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433 */
7434 spin_lock_irqsave(&rq->lock, flags);
7435
Ingo Molnardd41f592007-07-09 18:51:59 +02007436 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007437
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01007438 update_rq_clock(rq);
7439 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007440
7441 spin_unlock_irqrestore(&rq->lock, flags);
7442}
7443
Ingo Molnar48f24c42006-07-03 00:25:40 -07007444/*
7445 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07007446 * offline.
7447 */
7448void idle_task_exit(void)
7449{
7450 struct mm_struct *mm = current->active_mm;
7451
7452 BUG_ON(cpu_online(smp_processor_id()));
7453
7454 if (mm != &init_mm)
7455 switch_mm(mm, &init_mm, current);
7456 mmdrop(mm);
7457}
7458
Kirill Korotaev054b9102006-12-10 02:20:11 -08007459/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007460static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007461{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007462 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463
7464 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07007465 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466
7467 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07007468 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007469
Ingo Molnar48f24c42006-07-03 00:25:40 -07007470 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471
7472 /*
7473 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007474 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07007475 * fine.
7476 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07007477 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007478 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07007479 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480
Ingo Molnar48f24c42006-07-03 00:25:40 -07007481 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482}
7483
7484/* release_task() removes task from tasklist, so we won't find dead tasks. */
7485static void migrate_dead_tasks(unsigned int dead_cpu)
7486{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007487 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02007488 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007489
Ingo Molnardd41f592007-07-09 18:51:59 +02007490 for ( ; ; ) {
7491 if (!rq->nr_running)
7492 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02007493 update_rq_clock(rq);
Wang Chenb67802e2009-03-02 13:55:26 +08007494 next = pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02007495 if (!next)
7496 break;
Dmitry Adamushko79c53792008-06-29 00:16:56 +02007497 next->sched_class->put_prev_task(rq, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02007498 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02007499
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500 }
7501}
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02007502
7503/*
7504 * remove the tasks which were accounted by rq from calc_load_tasks.
7505 */
7506static void calc_global_load_remove(struct rq *rq)
7507{
7508 atomic_long_sub(rq->calc_load_active, &calc_load_tasks);
Thomas Gleixnera468d382009-07-17 14:15:46 +02007509 rq->calc_load_active = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02007510}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511#endif /* CONFIG_HOTPLUG_CPU */
7512
Nick Piggine692ab52007-07-26 13:40:43 +02007513#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
7514
7515static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02007516 {
7517 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02007518 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02007519 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01007520 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02007521};
7522
7523static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02007524 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02007525 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02007526 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02007527 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02007528 .child = sd_ctl_dir,
7529 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01007530 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02007531};
7532
7533static struct ctl_table *sd_alloc_ctl_entry(int n)
7534{
7535 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02007536 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02007537
Nick Piggine692ab52007-07-26 13:40:43 +02007538 return entry;
7539}
7540
Milton Miller6382bc92007-10-15 17:00:19 +02007541static void sd_free_ctl_entry(struct ctl_table **tablep)
7542{
Milton Millercd790072007-10-17 16:55:11 +02007543 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02007544
Milton Millercd790072007-10-17 16:55:11 +02007545 /*
7546 * In the intermediate directories, both the child directory and
7547 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007548 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02007549 * static strings and all have proc handlers.
7550 */
7551 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02007552 if (entry->child)
7553 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02007554 if (entry->proc_handler == NULL)
7555 kfree(entry->procname);
7556 }
Milton Miller6382bc92007-10-15 17:00:19 +02007557
7558 kfree(*tablep);
7559 *tablep = NULL;
7560}
7561
Nick Piggine692ab52007-07-26 13:40:43 +02007562static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02007563set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02007564 const char *procname, void *data, int maxlen,
7565 mode_t mode, proc_handler *proc_handler)
7566{
Nick Piggine692ab52007-07-26 13:40:43 +02007567 entry->procname = procname;
7568 entry->data = data;
7569 entry->maxlen = maxlen;
7570 entry->mode = mode;
7571 entry->proc_handler = proc_handler;
7572}
7573
7574static struct ctl_table *
7575sd_alloc_ctl_domain_table(struct sched_domain *sd)
7576{
Ingo Molnara5d8c342008-10-09 11:35:51 +02007577 struct ctl_table *table = sd_alloc_ctl_entry(13);
Nick Piggine692ab52007-07-26 13:40:43 +02007578
Milton Millerad1cdc12007-10-15 17:00:19 +02007579 if (table == NULL)
7580 return NULL;
7581
Alexey Dobriyane0361852007-08-09 11:16:46 +02007582 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02007583 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007584 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02007585 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007586 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02007587 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007588 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02007589 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007590 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02007591 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007592 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02007593 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007594 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02007595 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007596 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02007597 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02007598 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02007599 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02007600 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02007601 &sd->cache_nice_tries,
7602 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02007603 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02007604 sizeof(int), 0644, proc_dointvec_minmax);
Ingo Molnara5d8c342008-10-09 11:35:51 +02007605 set_table_entry(&table[11], "name", sd->name,
7606 CORENAME_MAX_SIZE, 0444, proc_dostring);
7607 /* &table[12] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02007608
7609 return table;
7610}
7611
Ingo Molnar9a4e7152007-11-28 15:52:56 +01007612static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02007613{
7614 struct ctl_table *entry, *table;
7615 struct sched_domain *sd;
7616 int domain_num = 0, i;
7617 char buf[32];
7618
7619 for_each_domain(cpu, sd)
7620 domain_num++;
7621 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02007622 if (table == NULL)
7623 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02007624
7625 i = 0;
7626 for_each_domain(cpu, sd) {
7627 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02007628 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02007629 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02007630 entry->child = sd_alloc_ctl_domain_table(sd);
7631 entry++;
7632 i++;
7633 }
7634 return table;
7635}
7636
7637static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02007638static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02007639{
7640 int i, cpu_num = num_online_cpus();
7641 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
7642 char buf[32];
7643
Milton Miller73785472007-10-24 18:23:48 +02007644 WARN_ON(sd_ctl_dir[0].child);
7645 sd_ctl_dir[0].child = entry;
7646
Milton Millerad1cdc12007-10-15 17:00:19 +02007647 if (entry == NULL)
7648 return;
7649
Milton Miller97b6ea72007-10-15 17:00:19 +02007650 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02007651 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02007652 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02007653 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02007654 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02007655 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02007656 }
Milton Miller73785472007-10-24 18:23:48 +02007657
7658 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02007659 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
7660}
Milton Miller6382bc92007-10-15 17:00:19 +02007661
Milton Miller73785472007-10-24 18:23:48 +02007662/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02007663static void unregister_sched_domain_sysctl(void)
7664{
Milton Miller73785472007-10-24 18:23:48 +02007665 if (sd_sysctl_header)
7666 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02007667 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007668 if (sd_ctl_dir[0].child)
7669 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02007670}
Nick Piggine692ab52007-07-26 13:40:43 +02007671#else
Milton Miller6382bc92007-10-15 17:00:19 +02007672static void register_sched_domain_sysctl(void)
7673{
7674}
7675static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02007676{
7677}
7678#endif
7679
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007680static void set_rq_online(struct rq *rq)
7681{
7682 if (!rq->online) {
7683 const struct sched_class *class;
7684
Rusty Russellc6c49272008-11-25 02:35:05 +10307685 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007686 rq->online = 1;
7687
7688 for_each_class(class) {
7689 if (class->rq_online)
7690 class->rq_online(rq);
7691 }
7692 }
7693}
7694
7695static void set_rq_offline(struct rq *rq)
7696{
7697 if (rq->online) {
7698 const struct sched_class *class;
7699
7700 for_each_class(class) {
7701 if (class->rq_offline)
7702 class->rq_offline(rq);
7703 }
7704
Rusty Russellc6c49272008-11-25 02:35:05 +10307705 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007706 rq->online = 0;
7707 }
7708}
7709
Linus Torvalds1da177e2005-04-16 15:20:36 -07007710/*
7711 * migration_call - callback that gets triggered when a CPU is added.
7712 * Here we can start up the necessary migration thread for the new CPU.
7713 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07007714static int __cpuinit
7715migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007716{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007717 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007718 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007719 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007720 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007721
7722 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07007723
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007725 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02007726 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007727 if (IS_ERR(p))
7728 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729 kthread_bind(p, cpu);
7730 /* Must be high prio: stop_machine expects to yield to it. */
7731 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02007732 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733 task_rq_unlock(rq, &flags);
Oleg Nesterov371cbb32009-06-17 16:27:45 -07007734 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007735 cpu_rq(cpu)->migration_thread = p;
Thomas Gleixnera468d382009-07-17 14:15:46 +02007736 rq->calc_load_update = calc_load_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007737 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007738
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007740 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02007741 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007742 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04007743
7744 /* Update our root-domain */
7745 rq = cpu_rq(cpu);
7746 spin_lock_irqsave(&rq->lock, flags);
7747 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10307748 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007749
7750 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04007751 }
7752 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007754
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755#ifdef CONFIG_HOTPLUG_CPU
7756 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007757 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07007758 if (!cpu_rq(cpu)->migration_thread)
7759 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007760 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08007761 kthread_bind(cpu_rq(cpu)->migration_thread,
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10307762 cpumask_any(cpu_online_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007763 kthread_stop(cpu_rq(cpu)->migration_thread);
Oleg Nesterov371cbb32009-06-17 16:27:45 -07007764 put_task_struct(cpu_rq(cpu)->migration_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007765 cpu_rq(cpu)->migration_thread = NULL;
7766 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007767
Linus Torvalds1da177e2005-04-16 15:20:36 -07007768 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007769 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07007770 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007771 migrate_live_tasks(cpu);
7772 rq = cpu_rq(cpu);
7773 kthread_stop(rq->migration_thread);
Oleg Nesterov371cbb32009-06-17 16:27:45 -07007774 put_task_struct(rq->migration_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775 rq->migration_thread = NULL;
7776 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07007777 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02007778 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02007779 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007780 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02007781 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
7782 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007783 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07007784 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07007785 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786 migrate_nr_uninterruptible(rq);
7787 BUG_ON(rq->nr_running != 0);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02007788 calc_global_load_remove(rq);
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007789 /*
7790 * No need to migrate the tasks: it was best-effort if
7791 * they didn't take sched_hotcpu_mutex. Just wake up
7792 * the requestors.
7793 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007794 spin_lock_irq(&rq->lock);
7795 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007796 struct migration_req *req;
7797
Linus Torvalds1da177e2005-04-16 15:20:36 -07007798 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07007799 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007800 list_del_init(&req->list);
Brian King9a2bd242008-12-09 08:47:00 -06007801 spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007802 complete(&req->done);
Brian King9a2bd242008-12-09 08:47:00 -06007803 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007804 }
7805 spin_unlock_irq(&rq->lock);
7806 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007807
Gregory Haskins08f503b2008-03-10 17:59:11 -04007808 case CPU_DYING:
7809 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01007810 /* Update our root-domain */
7811 rq = cpu_rq(cpu);
7812 spin_lock_irqsave(&rq->lock, flags);
7813 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10307814 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04007815 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01007816 }
7817 spin_unlock_irqrestore(&rq->lock, flags);
7818 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007819#endif
7820 }
7821 return NOTIFY_OK;
7822}
7823
Paul Mackerrasf38b0822009-06-02 21:05:16 +10007824/*
7825 * Register at high priority so that task migration (migrate_all_tasks)
7826 * happens before everything else. This has to be lower priority than
7827 * the notifier in the perf_counter subsystem, though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007828 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07007829static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830 .notifier_call = migration_call,
7831 .priority = 10
7832};
7833
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07007834static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007835{
7836 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07007837 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007838
7839 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07007840 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
7841 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842 migration_call(&migration_notifier, CPU_ONLINE, cpu);
7843 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07007844
Thomas Gleixnera004cd42009-07-21 09:54:05 +02007845 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07007847early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007848#endif
7849
7850#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07007851
Ingo Molnar3e9830d2007-10-15 17:00:13 +02007852#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007853
Mike Travis7c16ec52008-04-04 18:11:11 -07007854static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e2008-11-25 02:35:14 +10307855 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007856{
7857 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07007858 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007859
Rusty Russell968ea6d2008-12-13 21:55:51 +10307860 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e2008-11-25 02:35:14 +10307861 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007862
7863 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
7864
7865 if (!(sd->flags & SD_LOAD_BALANCE)) {
7866 printk("does not load-balance\n");
7867 if (sd->parent)
7868 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
7869 " has parent");
7870 return -1;
7871 }
7872
Li Zefaneefd7962008-11-04 16:15:37 +08007873 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007874
Rusty Russell758b2cd2008-11-25 02:35:04 +10307875 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007876 printk(KERN_ERR "ERROR: domain->span does not contain "
7877 "CPU%d\n", cpu);
7878 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10307879 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007880 printk(KERN_ERR "ERROR: domain->groups does not contain"
7881 " CPU%d\n", cpu);
7882 }
7883
7884 printk(KERN_DEBUG "%*s groups:", level + 1, "");
7885 do {
7886 if (!group) {
7887 printk("\n");
7888 printk(KERN_ERR "ERROR: group is NULL\n");
7889 break;
7890 }
7891
Peter Zijlstra18a38852009-09-01 10:34:39 +02007892 if (!group->cpu_power) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007893 printk(KERN_CONT "\n");
7894 printk(KERN_ERR "ERROR: domain->cpu_power not "
7895 "set\n");
7896 break;
7897 }
7898
Rusty Russell758b2cd2008-11-25 02:35:04 +10307899 if (!cpumask_weight(sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007900 printk(KERN_CONT "\n");
7901 printk(KERN_ERR "ERROR: empty group\n");
7902 break;
7903 }
7904
Rusty Russell758b2cd2008-11-25 02:35:04 +10307905 if (cpumask_intersects(groupmask, sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007906 printk(KERN_CONT "\n");
7907 printk(KERN_ERR "ERROR: repeated CPUs\n");
7908 break;
7909 }
7910
Rusty Russell758b2cd2008-11-25 02:35:04 +10307911 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007912
Rusty Russell968ea6d2008-12-13 21:55:51 +10307913 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Gautham R Shenoy381512c2009-04-14 09:09:36 +05307914
7915 printk(KERN_CONT " %s", str);
Peter Zijlstra18a38852009-09-01 10:34:39 +02007916 if (group->cpu_power != SCHED_LOAD_SCALE) {
7917 printk(KERN_CONT " (cpu_power = %d)",
7918 group->cpu_power);
Gautham R Shenoy381512c2009-04-14 09:09:36 +05307919 }
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007920
7921 group = group->next;
7922 } while (group != sd->groups);
7923 printk(KERN_CONT "\n");
7924
Rusty Russell758b2cd2008-11-25 02:35:04 +10307925 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007926 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
7927
Rusty Russell758b2cd2008-11-25 02:35:04 +10307928 if (sd->parent &&
7929 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007930 printk(KERN_ERR "ERROR: parent span is not a superset "
7931 "of domain->span\n");
7932 return 0;
7933}
7934
Linus Torvalds1da177e2005-04-16 15:20:36 -07007935static void sched_domain_debug(struct sched_domain *sd, int cpu)
7936{
Rusty Russelld5dd3db2008-11-25 02:35:12 +10307937 cpumask_var_t groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007938 int level = 0;
7939
Nick Piggin41c7ce92005-06-25 14:57:24 -07007940 if (!sd) {
7941 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
7942 return;
7943 }
7944
Linus Torvalds1da177e2005-04-16 15:20:36 -07007945 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
7946
Rusty Russelld5dd3db2008-11-25 02:35:12 +10307947 if (!alloc_cpumask_var(&groupmask, GFP_KERNEL)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007948 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
7949 return;
7950 }
7951
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007952 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007953 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007955 level++;
7956 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08007957 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02007958 break;
7959 }
Rusty Russelld5dd3db2008-11-25 02:35:12 +10307960 free_cpumask_var(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007962#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07007963# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007964#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007965
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007966static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07007967{
Rusty Russell758b2cd2008-11-25 02:35:04 +10307968 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07007969 return 1;
7970
7971 /* Following flags need at least 2 groups */
7972 if (sd->flags & (SD_LOAD_BALANCE |
7973 SD_BALANCE_NEWIDLE |
7974 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007975 SD_BALANCE_EXEC |
7976 SD_SHARE_CPUPOWER |
7977 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007978 if (sd->groups != sd->groups->next)
7979 return 0;
7980 }
7981
7982 /* Following flags don't use groups */
7983 if (sd->flags & (SD_WAKE_IDLE |
7984 SD_WAKE_AFFINE |
7985 SD_WAKE_BALANCE))
7986 return 0;
7987
7988 return 1;
7989}
7990
Ingo Molnar48f24c42006-07-03 00:25:40 -07007991static int
7992sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07007993{
7994 unsigned long cflags = sd->flags, pflags = parent->flags;
7995
7996 if (sd_degenerate(parent))
7997 return 1;
7998
Rusty Russell758b2cd2008-11-25 02:35:04 +10307999 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07008000 return 0;
8001
8002 /* Does parent contain flags not in child? */
8003 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
8004 if (cflags & SD_WAKE_AFFINE)
8005 pflags &= ~SD_WAKE_BALANCE;
8006 /* Flags needing groups don't count if only 1 group in parent */
8007 if (parent->groups == parent->groups->next) {
8008 pflags &= ~(SD_LOAD_BALANCE |
8009 SD_BALANCE_NEWIDLE |
8010 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008011 SD_BALANCE_EXEC |
8012 SD_SHARE_CPUPOWER |
8013 SD_SHARE_PKG_RESOURCES);
Ken Chen54364992008-12-07 18:47:37 -08008014 if (nr_node_ids == 1)
8015 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07008016 }
8017 if (~cflags & pflags)
8018 return 0;
8019
8020 return 1;
8021}
8022
Rusty Russellc6c49272008-11-25 02:35:05 +10308023static void free_rootdomain(struct root_domain *rd)
8024{
Rusty Russell68e74562008-11-25 02:35:13 +10308025 cpupri_cleanup(&rd->cpupri);
8026
Rusty Russellc6c49272008-11-25 02:35:05 +10308027 free_cpumask_var(rd->rto_mask);
8028 free_cpumask_var(rd->online);
8029 free_cpumask_var(rd->span);
8030 kfree(rd);
8031}
8032
Gregory Haskins57d885f2008-01-25 21:08:18 +01008033static void rq_attach_root(struct rq *rq, struct root_domain *rd)
8034{
Ingo Molnara0490fa2009-02-12 11:35:40 +01008035 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008036 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008037
8038 spin_lock_irqsave(&rq->lock, flags);
8039
8040 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01008041 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008042
Rusty Russellc6c49272008-11-25 02:35:05 +10308043 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04008044 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01008045
Rusty Russellc6c49272008-11-25 02:35:05 +10308046 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008047
Ingo Molnara0490fa2009-02-12 11:35:40 +01008048 /*
8049 * If we dont want to free the old_rt yet then
8050 * set old_rd to NULL to skip the freeing later
8051 * in this function:
8052 */
8053 if (!atomic_dec_and_test(&old_rd->refcount))
8054 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008055 }
8056
8057 atomic_inc(&rd->refcount);
8058 rq->rd = rd;
8059
Rusty Russellc6c49272008-11-25 02:35:05 +10308060 cpumask_set_cpu(rq->cpu, rd->span);
Gregory Haskins00aec932009-07-30 10:57:23 -04008061 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04008062 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01008063
8064 spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01008065
8066 if (old_rd)
8067 free_rootdomain(old_rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01008068}
8069
Li Zefanfd5e1b52009-06-15 13:34:19 +08008070static int init_rootdomain(struct root_domain *rd, bool bootmem)
Gregory Haskins57d885f2008-01-25 21:08:18 +01008071{
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03008072 gfp_t gfp = GFP_KERNEL;
8073
Gregory Haskins57d885f2008-01-25 21:08:18 +01008074 memset(rd, 0, sizeof(*rd));
8075
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03008076 if (bootmem)
8077 gfp = GFP_NOWAIT;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02008078
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03008079 if (!alloc_cpumask_var(&rd->span, gfp))
Li Zefan0c910d22009-01-06 17:39:06 +08008080 goto out;
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03008081 if (!alloc_cpumask_var(&rd->online, gfp))
Rusty Russellc6c49272008-11-25 02:35:05 +10308082 goto free_span;
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03008083 if (!alloc_cpumask_var(&rd->rto_mask, gfp))
Rusty Russellc6c49272008-11-25 02:35:05 +10308084 goto free_online;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02008085
Pekka Enberg0fb53022009-06-11 08:41:22 +03008086 if (cpupri_init(&rd->cpupri, bootmem) != 0)
Rusty Russell68e74562008-11-25 02:35:13 +10308087 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10308088 return 0;
8089
Rusty Russell68e74562008-11-25 02:35:13 +10308090free_rto_mask:
8091 free_cpumask_var(rd->rto_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10308092free_online:
8093 free_cpumask_var(rd->online);
8094free_span:
8095 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08008096out:
Rusty Russellc6c49272008-11-25 02:35:05 +10308097 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008098}
8099
8100static void init_defrootdomain(void)
8101{
Rusty Russellc6c49272008-11-25 02:35:05 +10308102 init_rootdomain(&def_root_domain, true);
8103
Gregory Haskins57d885f2008-01-25 21:08:18 +01008104 atomic_set(&def_root_domain.refcount, 1);
8105}
8106
Gregory Haskinsdc938522008-01-25 21:08:26 +01008107static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01008108{
8109 struct root_domain *rd;
8110
8111 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
8112 if (!rd)
8113 return NULL;
8114
Rusty Russellc6c49272008-11-25 02:35:05 +10308115 if (init_rootdomain(rd, false) != 0) {
8116 kfree(rd);
8117 return NULL;
8118 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01008119
8120 return rd;
8121}
8122
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01008124 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07008125 * hold the hotplug lock.
8126 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01008127static void
8128cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008129{
Ingo Molnar70b97a72006-07-03 00:25:42 -07008130 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07008131 struct sched_domain *tmp;
8132
8133 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08008134 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07008135 struct sched_domain *parent = tmp->parent;
8136 if (!parent)
8137 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08008138
Siddha, Suresh B1a848872006-10-03 01:14:08 -07008139 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07008140 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07008141 if (parent->parent)
8142 parent->parent->child = tmp;
Li Zefanf29c9b12008-11-06 09:45:16 +08008143 } else
8144 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07008145 }
8146
Siddha, Suresh B1a848872006-10-03 01:14:08 -07008147 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07008148 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07008149 if (sd)
8150 sd->child = NULL;
8151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008152
8153 sched_domain_debug(sd, cpu);
8154
Gregory Haskins57d885f2008-01-25 21:08:18 +01008155 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07008156 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008157}
8158
8159/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10308160static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008161
8162/* Setup the mask of cpus configured for isolated domains */
8163static int __init isolated_cpu_setup(char *str)
8164{
Rusty Russell968ea6d2008-12-13 21:55:51 +10308165 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008166 return 1;
8167}
8168
Ingo Molnar8927f492007-10-15 17:00:13 +02008169__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008170
8171/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008172 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
8173 * to a function which identifies what group(along with sched group) a CPU
Rusty Russell96f874e2008-11-25 02:35:14 +10308174 * belongs to. The return value of group_fn must be a >= 0 and < nr_cpu_ids
8175 * (due to the fact that we keep track of groups covered with a struct cpumask).
Linus Torvalds1da177e2005-04-16 15:20:36 -07008176 *
8177 * init_sched_build_groups will build a circular linked list of the groups
8178 * covered by the given span, and will set each group's ->cpumask correctly,
8179 * and ->cpu_power to 0.
8180 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07008181static void
Rusty Russell96f874e2008-11-25 02:35:14 +10308182init_sched_build_groups(const struct cpumask *span,
8183 const struct cpumask *cpu_map,
8184 int (*group_fn)(int cpu, const struct cpumask *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07008185 struct sched_group **sg,
Rusty Russell96f874e2008-11-25 02:35:14 +10308186 struct cpumask *tmpmask),
8187 struct cpumask *covered, struct cpumask *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008188{
8189 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008190 int i;
8191
Rusty Russell96f874e2008-11-25 02:35:14 +10308192 cpumask_clear(covered);
Mike Travis7c16ec52008-04-04 18:11:11 -07008193
Rusty Russellabcd0832008-11-25 02:35:02 +10308194 for_each_cpu(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008195 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07008196 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008197 int j;
8198
Rusty Russell758b2cd2008-11-25 02:35:04 +10308199 if (cpumask_test_cpu(i, covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008200 continue;
8201
Rusty Russell758b2cd2008-11-25 02:35:04 +10308202 cpumask_clear(sched_group_cpus(sg));
Peter Zijlstra18a38852009-09-01 10:34:39 +02008203 sg->cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008204
Rusty Russellabcd0832008-11-25 02:35:02 +10308205 for_each_cpu(j, span) {
Mike Travis7c16ec52008-04-04 18:11:11 -07008206 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008207 continue;
8208
Rusty Russell96f874e2008-11-25 02:35:14 +10308209 cpumask_set_cpu(j, covered);
Rusty Russell758b2cd2008-11-25 02:35:04 +10308210 cpumask_set_cpu(j, sched_group_cpus(sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211 }
8212 if (!first)
8213 first = sg;
8214 if (last)
8215 last->next = sg;
8216 last = sg;
8217 }
8218 last->next = first;
8219}
8220
John Hawkes9c1cfda2005-09-06 15:18:14 -07008221#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07008222
John Hawkes9c1cfda2005-09-06 15:18:14 -07008223#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08008224
John Hawkes9c1cfda2005-09-06 15:18:14 -07008225/**
8226 * find_next_best_node - find the next node to include in a sched_domain
8227 * @node: node whose sched_domain we're building
8228 * @used_nodes: nodes already in the sched_domain
8229 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008230 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07008231 * finds the closest node not already in the @used_nodes map.
8232 *
8233 * Should use nodemask_t.
8234 */
Mike Travisc5f59f02008-04-04 18:11:10 -07008235static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07008236{
8237 int i, n, val, min_val, best_node = 0;
8238
8239 min_val = INT_MAX;
8240
Mike Travis076ac2a2008-05-12 21:21:12 +02008241 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07008242 /* Start at @node */
Mike Travis076ac2a2008-05-12 21:21:12 +02008243 n = (node + i) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008244
8245 if (!nr_cpus_node(n))
8246 continue;
8247
8248 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07008249 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07008250 continue;
8251
8252 /* Simple min distance search */
8253 val = node_distance(node, n);
8254
8255 if (val < min_val) {
8256 min_val = val;
8257 best_node = n;
8258 }
8259 }
8260
Mike Travisc5f59f02008-04-04 18:11:10 -07008261 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008262 return best_node;
8263}
8264
8265/**
8266 * sched_domain_node_span - get a cpumask for a node's sched_domain
8267 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07008268 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07008269 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008270 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07008271 * should be one that prevents unnecessary balancing, but also spreads tasks
8272 * out optimally.
8273 */
Rusty Russell96f874e2008-11-25 02:35:14 +10308274static void sched_domain_node_span(int node, struct cpumask *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07008275{
Mike Travisc5f59f02008-04-04 18:11:10 -07008276 nodemask_t used_nodes;
Ingo Molnar48f24c42006-07-03 00:25:40 -07008277 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008278
Mike Travis6ca09df2008-12-31 18:08:45 -08008279 cpumask_clear(span);
Mike Travisc5f59f02008-04-04 18:11:10 -07008280 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008281
Mike Travis6ca09df2008-12-31 18:08:45 -08008282 cpumask_or(span, span, cpumask_of_node(node));
Mike Travisc5f59f02008-04-04 18:11:10 -07008283 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008284
8285 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07008286 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07008287
Mike Travis6ca09df2008-12-31 18:08:45 -08008288 cpumask_or(span, span, cpumask_of_node(next_node));
John Hawkes9c1cfda2005-09-06 15:18:14 -07008289 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07008290}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008291#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07008292
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008293int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07008294
John Hawkes9c1cfda2005-09-06 15:18:14 -07008295/*
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308296 * The cpus mask in sched_group and sched_domain hangs off the end.
Ingo Molnar4200efd2009-05-19 09:22:19 +02008297 *
8298 * ( See the the comments in include/linux/sched.h:struct sched_group
8299 * and struct sched_domain. )
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308300 */
8301struct static_sched_group {
8302 struct sched_group sg;
8303 DECLARE_BITMAP(cpus, CONFIG_NR_CPUS);
8304};
8305
8306struct static_sched_domain {
8307 struct sched_domain sd;
8308 DECLARE_BITMAP(span, CONFIG_NR_CPUS);
8309};
8310
Andreas Herrmann49a02c52009-08-18 12:51:52 +02008311struct s_data {
8312#ifdef CONFIG_NUMA
8313 int sd_allnodes;
8314 cpumask_var_t domainspan;
8315 cpumask_var_t covered;
8316 cpumask_var_t notcovered;
8317#endif
8318 cpumask_var_t nodemask;
8319 cpumask_var_t this_sibling_map;
8320 cpumask_var_t this_core_map;
8321 cpumask_var_t send_covered;
8322 cpumask_var_t tmpmask;
8323 struct sched_group **sched_group_nodes;
8324 struct root_domain *rd;
8325};
8326
Andreas Herrmann2109b992009-08-18 12:53:00 +02008327enum s_alloc {
8328 sa_sched_groups = 0,
8329 sa_rootdomain,
8330 sa_tmpmask,
8331 sa_send_covered,
8332 sa_this_core_map,
8333 sa_this_sibling_map,
8334 sa_nodemask,
8335 sa_sched_group_nodes,
8336#ifdef CONFIG_NUMA
8337 sa_notcovered,
8338 sa_covered,
8339 sa_domainspan,
8340#endif
8341 sa_none,
8342};
8343
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308344/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07008345 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07008346 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347#ifdef CONFIG_SCHED_SMT
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308348static DEFINE_PER_CPU(struct static_sched_domain, cpu_domains);
8349static DEFINE_PER_CPU(struct static_sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07008350
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008351static int
Rusty Russell96f874e2008-11-25 02:35:14 +10308352cpu_to_cpu_group(int cpu, const struct cpumask *cpu_map,
8353 struct sched_group **sg, struct cpumask *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008354{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008355 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308356 *sg = &per_cpu(sched_group_cpus, cpu).sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008357 return cpu;
8358}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008359#endif /* CONFIG_SCHED_SMT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008360
Ingo Molnar48f24c42006-07-03 00:25:40 -07008361/*
8362 * multi-core sched-domains:
8363 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008364#ifdef CONFIG_SCHED_MC
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308365static DEFINE_PER_CPU(struct static_sched_domain, core_domains);
8366static DEFINE_PER_CPU(struct static_sched_group, sched_group_core);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008367#endif /* CONFIG_SCHED_MC */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008368
8369#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008370static int
Rusty Russell96f874e2008-11-25 02:35:14 +10308371cpu_to_core_group(int cpu, const struct cpumask *cpu_map,
8372 struct sched_group **sg, struct cpumask *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008373{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008374 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07008375
Rusty Russellc69fc562009-03-13 14:49:46 +10308376 cpumask_and(mask, topology_thread_cpumask(cpu), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308377 group = cpumask_first(mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008378 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308379 *sg = &per_cpu(sched_group_core, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008380 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008381}
8382#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008383static int
Rusty Russell96f874e2008-11-25 02:35:14 +10308384cpu_to_core_group(int cpu, const struct cpumask *cpu_map,
8385 struct sched_group **sg, struct cpumask *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008386{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008387 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308388 *sg = &per_cpu(sched_group_core, cpu).sg;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008389 return cpu;
8390}
8391#endif
8392
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308393static DEFINE_PER_CPU(struct static_sched_domain, phys_domains);
8394static DEFINE_PER_CPU(struct static_sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07008395
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008396static int
Rusty Russell96f874e2008-11-25 02:35:14 +10308397cpu_to_phys_group(int cpu, const struct cpumask *cpu_map,
8398 struct sched_group **sg, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008399{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008400 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07008401#ifdef CONFIG_SCHED_MC
Mike Travis6ca09df2008-12-31 18:08:45 -08008402 cpumask_and(mask, cpu_coregroup_mask(cpu), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308403 group = cpumask_first(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008404#elif defined(CONFIG_SCHED_SMT)
Rusty Russellc69fc562009-03-13 14:49:46 +10308405 cpumask_and(mask, topology_thread_cpumask(cpu), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308406 group = cpumask_first(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008407#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008408 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008409#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008410 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308411 *sg = &per_cpu(sched_group_phys, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008412 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008413}
8414
8415#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07008416/*
8417 * The init_sched_build_groups can't handle what we want to do with node
8418 * groups, so roll our own. Now each node has its own list of groups which
8419 * gets dynamically allocated.
8420 */
Rusty Russell62ea9ce2009-01-11 01:04:16 +01008421static DEFINE_PER_CPU(struct static_sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07008422static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07008423
Rusty Russell62ea9ce2009-01-11 01:04:16 +01008424static DEFINE_PER_CPU(struct static_sched_domain, allnodes_domains);
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308425static DEFINE_PER_CPU(struct static_sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008426
Rusty Russell96f874e2008-11-25 02:35:14 +10308427static int cpu_to_allnodes_group(int cpu, const struct cpumask *cpu_map,
8428 struct sched_group **sg,
8429 struct cpumask *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008431 int group;
8432
Mike Travis6ca09df2008-12-31 18:08:45 -08008433 cpumask_and(nodemask, cpumask_of_node(cpu_to_node(cpu)), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308434 group = cpumask_first(nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008435
8436 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308437 *sg = &per_cpu(sched_group_allnodes, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008438 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008439}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008440
Siddha, Suresh B08069032006-03-27 01:15:23 -08008441static void init_numa_sched_groups_power(struct sched_group *group_head)
8442{
8443 struct sched_group *sg = group_head;
8444 int j;
8445
8446 if (!sg)
8447 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02008448 do {
Rusty Russell758b2cd2008-11-25 02:35:04 +10308449 for_each_cpu(j, sched_group_cpus(sg)) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02008450 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08008451
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308452 sd = &per_cpu(phys_domains, j).sd;
Miao Xie13318a72009-04-15 09:59:10 +08008453 if (j != group_first_cpu(sd->groups)) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02008454 /*
8455 * Only add "power" once for each
8456 * physical package.
8457 */
8458 continue;
8459 }
8460
Peter Zijlstra18a38852009-09-01 10:34:39 +02008461 sg->cpu_power += sd->groups->cpu_power;
Siddha, Suresh B08069032006-03-27 01:15:23 -08008462 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02008463 sg = sg->next;
8464 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08008465}
Andreas Herrmann0601a882009-08-18 13:01:11 +02008466
8467static int build_numa_sched_groups(struct s_data *d,
8468 const struct cpumask *cpu_map, int num)
8469{
8470 struct sched_domain *sd;
8471 struct sched_group *sg, *prev;
8472 int n, j;
8473
8474 cpumask_clear(d->covered);
8475 cpumask_and(d->nodemask, cpumask_of_node(num), cpu_map);
8476 if (cpumask_empty(d->nodemask)) {
8477 d->sched_group_nodes[num] = NULL;
8478 goto out;
8479 }
8480
8481 sched_domain_node_span(num, d->domainspan);
8482 cpumask_and(d->domainspan, d->domainspan, cpu_map);
8483
8484 sg = kmalloc_node(sizeof(struct sched_group) + cpumask_size(),
8485 GFP_KERNEL, num);
8486 if (!sg) {
8487 printk(KERN_WARNING "Can not alloc domain group for node %d\n",
8488 num);
8489 return -ENOMEM;
8490 }
8491 d->sched_group_nodes[num] = sg;
8492
8493 for_each_cpu(j, d->nodemask) {
8494 sd = &per_cpu(node_domains, j).sd;
8495 sd->groups = sg;
8496 }
8497
Peter Zijlstra18a38852009-09-01 10:34:39 +02008498 sg->cpu_power = 0;
Andreas Herrmann0601a882009-08-18 13:01:11 +02008499 cpumask_copy(sched_group_cpus(sg), d->nodemask);
8500 sg->next = sg;
8501 cpumask_or(d->covered, d->covered, d->nodemask);
8502
8503 prev = sg;
8504 for (j = 0; j < nr_node_ids; j++) {
8505 n = (num + j) % nr_node_ids;
8506 cpumask_complement(d->notcovered, d->covered);
8507 cpumask_and(d->tmpmask, d->notcovered, cpu_map);
8508 cpumask_and(d->tmpmask, d->tmpmask, d->domainspan);
8509 if (cpumask_empty(d->tmpmask))
8510 break;
8511 cpumask_and(d->tmpmask, d->tmpmask, cpumask_of_node(n));
8512 if (cpumask_empty(d->tmpmask))
8513 continue;
8514 sg = kmalloc_node(sizeof(struct sched_group) + cpumask_size(),
8515 GFP_KERNEL, num);
8516 if (!sg) {
8517 printk(KERN_WARNING
8518 "Can not alloc domain group for node %d\n", j);
8519 return -ENOMEM;
8520 }
Peter Zijlstra18a38852009-09-01 10:34:39 +02008521 sg->cpu_power = 0;
Andreas Herrmann0601a882009-08-18 13:01:11 +02008522 cpumask_copy(sched_group_cpus(sg), d->tmpmask);
8523 sg->next = prev->next;
8524 cpumask_or(d->covered, d->covered, d->tmpmask);
8525 prev->next = sg;
8526 prev = sg;
8527 }
8528out:
8529 return 0;
8530}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008531#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008532
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07008533#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008534/* Free memory allocated for various sched_group structures */
Rusty Russell96f874e2008-11-25 02:35:14 +10308535static void free_sched_groups(const struct cpumask *cpu_map,
8536 struct cpumask *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008537{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07008538 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008539
Rusty Russellabcd0832008-11-25 02:35:02 +10308540 for_each_cpu(cpu, cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008541 struct sched_group **sched_group_nodes
8542 = sched_group_nodes_bycpu[cpu];
8543
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008544 if (!sched_group_nodes)
8545 continue;
8546
Mike Travis076ac2a2008-05-12 21:21:12 +02008547 for (i = 0; i < nr_node_ids; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008548 struct sched_group *oldsg, *sg = sched_group_nodes[i];
8549
Mike Travis6ca09df2008-12-31 18:08:45 -08008550 cpumask_and(nodemask, cpumask_of_node(i), cpu_map);
Rusty Russell96f874e2008-11-25 02:35:14 +10308551 if (cpumask_empty(nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008552 continue;
8553
8554 if (sg == NULL)
8555 continue;
8556 sg = sg->next;
8557next_sg:
8558 oldsg = sg;
8559 sg = sg->next;
8560 kfree(oldsg);
8561 if (oldsg != sched_group_nodes[i])
8562 goto next_sg;
8563 }
8564 kfree(sched_group_nodes);
8565 sched_group_nodes_bycpu[cpu] = NULL;
8566 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008567}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008568#else /* !CONFIG_NUMA */
Rusty Russell96f874e2008-11-25 02:35:14 +10308569static void free_sched_groups(const struct cpumask *cpu_map,
8570 struct cpumask *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07008571{
8572}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008573#endif /* CONFIG_NUMA */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008574
Linus Torvalds1da177e2005-04-16 15:20:36 -07008575/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008576 * Initialize sched groups cpu_power.
8577 *
8578 * cpu_power indicates the capacity of sched group, which is used while
8579 * distributing the load between different sched groups in a sched domain.
8580 * Typically cpu_power for all the groups in a sched domain will be same unless
8581 * there are asymmetries in the topology. If there are asymmetries, group
8582 * having more cpu_power will pickup more load compared to the group having
8583 * less cpu_power.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008584 */
8585static void init_sched_groups_power(int cpu, struct sched_domain *sd)
8586{
8587 struct sched_domain *child;
8588 struct sched_group *group;
Peter Zijlstraf93e65c2009-09-01 10:34:32 +02008589 long power;
8590 int weight;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008591
8592 WARN_ON(!sd || !sd->groups);
8593
Miao Xie13318a72009-04-15 09:59:10 +08008594 if (cpu != group_first_cpu(sd->groups))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008595 return;
8596
8597 child = sd->child;
8598
Peter Zijlstra18a38852009-09-01 10:34:39 +02008599 sd->groups->cpu_power = 0;
Eric Dumazet5517d862007-05-08 00:32:57 -07008600
Peter Zijlstraf93e65c2009-09-01 10:34:32 +02008601 if (!child) {
8602 power = SCHED_LOAD_SCALE;
8603 weight = cpumask_weight(sched_domain_span(sd));
8604 /*
8605 * SMT siblings share the power of a single core.
Peter Zijlstraa52bfd72009-09-01 10:34:35 +02008606 * Usually multiple threads get a better yield out of
8607 * that one core than a single thread would have,
8608 * reflect that in sd->smt_gain.
Peter Zijlstraf93e65c2009-09-01 10:34:32 +02008609 */
Peter Zijlstraa52bfd72009-09-01 10:34:35 +02008610 if ((sd->flags & SD_SHARE_CPUPOWER) && weight > 1) {
8611 power *= sd->smt_gain;
Peter Zijlstraf93e65c2009-09-01 10:34:32 +02008612 power /= weight;
Peter Zijlstraa52bfd72009-09-01 10:34:35 +02008613 power >>= SCHED_LOAD_SHIFT;
8614 }
Peter Zijlstra18a38852009-09-01 10:34:39 +02008615 sd->groups->cpu_power += power;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008616 return;
8617 }
8618
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008619 /*
Peter Zijlstraf93e65c2009-09-01 10:34:32 +02008620 * Add cpu_power of each child group to this groups cpu_power.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008621 */
8622 group = child->groups;
8623 do {
Peter Zijlstra18a38852009-09-01 10:34:39 +02008624 sd->groups->cpu_power += group->cpu_power;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008625 group = group->next;
8626 } while (group != child->groups);
8627}
8628
8629/*
Mike Travis7c16ec52008-04-04 18:11:11 -07008630 * Initializers for schedule domains
8631 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
8632 */
8633
Ingo Molnara5d8c342008-10-09 11:35:51 +02008634#ifdef CONFIG_SCHED_DEBUG
8635# define SD_INIT_NAME(sd, type) sd->name = #type
8636#else
8637# define SD_INIT_NAME(sd, type) do { } while (0)
8638#endif
8639
Mike Travis7c16ec52008-04-04 18:11:11 -07008640#define SD_INIT(sd, type) sd_init_##type(sd)
Ingo Molnara5d8c342008-10-09 11:35:51 +02008641
Mike Travis7c16ec52008-04-04 18:11:11 -07008642#define SD_INIT_FUNC(type) \
8643static noinline void sd_init_##type(struct sched_domain *sd) \
8644{ \
8645 memset(sd, 0, sizeof(*sd)); \
8646 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008647 sd->level = SD_LV_##type; \
Ingo Molnara5d8c342008-10-09 11:35:51 +02008648 SD_INIT_NAME(sd, type); \
Mike Travis7c16ec52008-04-04 18:11:11 -07008649}
8650
8651SD_INIT_FUNC(CPU)
8652#ifdef CONFIG_NUMA
8653 SD_INIT_FUNC(ALLNODES)
8654 SD_INIT_FUNC(NODE)
8655#endif
8656#ifdef CONFIG_SCHED_SMT
8657 SD_INIT_FUNC(SIBLING)
8658#endif
8659#ifdef CONFIG_SCHED_MC
8660 SD_INIT_FUNC(MC)
8661#endif
8662
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008663static int default_relax_domain_level = -1;
8664
8665static int __init setup_relax_domain_level(char *str)
8666{
Li Zefan30e0e172008-05-13 10:27:17 +08008667 unsigned long val;
8668
8669 val = simple_strtoul(str, NULL, 0);
8670 if (val < SD_LV_MAX)
8671 default_relax_domain_level = val;
8672
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008673 return 1;
8674}
8675__setup("relax_domain_level=", setup_relax_domain_level);
8676
8677static void set_domain_attribute(struct sched_domain *sd,
8678 struct sched_domain_attr *attr)
8679{
8680 int request;
8681
8682 if (!attr || attr->relax_domain_level < 0) {
8683 if (default_relax_domain_level < 0)
8684 return;
8685 else
8686 request = default_relax_domain_level;
8687 } else
8688 request = attr->relax_domain_level;
8689 if (request < sd->level) {
8690 /* turn off idle balance on this domain */
8691 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
8692 } else {
8693 /* turn on idle balance on this domain */
8694 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
8695 }
8696}
8697
Andreas Herrmann2109b992009-08-18 12:53:00 +02008698static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
8699 const struct cpumask *cpu_map)
8700{
8701 switch (what) {
8702 case sa_sched_groups:
8703 free_sched_groups(cpu_map, d->tmpmask); /* fall through */
8704 d->sched_group_nodes = NULL;
8705 case sa_rootdomain:
8706 free_rootdomain(d->rd); /* fall through */
8707 case sa_tmpmask:
8708 free_cpumask_var(d->tmpmask); /* fall through */
8709 case sa_send_covered:
8710 free_cpumask_var(d->send_covered); /* fall through */
8711 case sa_this_core_map:
8712 free_cpumask_var(d->this_core_map); /* fall through */
8713 case sa_this_sibling_map:
8714 free_cpumask_var(d->this_sibling_map); /* fall through */
8715 case sa_nodemask:
8716 free_cpumask_var(d->nodemask); /* fall through */
8717 case sa_sched_group_nodes:
8718#ifdef CONFIG_NUMA
8719 kfree(d->sched_group_nodes); /* fall through */
8720 case sa_notcovered:
8721 free_cpumask_var(d->notcovered); /* fall through */
8722 case sa_covered:
8723 free_cpumask_var(d->covered); /* fall through */
8724 case sa_domainspan:
8725 free_cpumask_var(d->domainspan); /* fall through */
8726#endif
8727 case sa_none:
8728 break;
8729 }
8730}
8731
8732static enum s_alloc __visit_domain_allocation_hell(struct s_data *d,
8733 const struct cpumask *cpu_map)
8734{
8735#ifdef CONFIG_NUMA
8736 if (!alloc_cpumask_var(&d->domainspan, GFP_KERNEL))
8737 return sa_none;
8738 if (!alloc_cpumask_var(&d->covered, GFP_KERNEL))
8739 return sa_domainspan;
8740 if (!alloc_cpumask_var(&d->notcovered, GFP_KERNEL))
8741 return sa_covered;
8742 /* Allocate the per-node list of sched groups */
8743 d->sched_group_nodes = kcalloc(nr_node_ids,
8744 sizeof(struct sched_group *), GFP_KERNEL);
8745 if (!d->sched_group_nodes) {
8746 printk(KERN_WARNING "Can not alloc sched group node list\n");
8747 return sa_notcovered;
8748 }
8749 sched_group_nodes_bycpu[cpumask_first(cpu_map)] = d->sched_group_nodes;
8750#endif
8751 if (!alloc_cpumask_var(&d->nodemask, GFP_KERNEL))
8752 return sa_sched_group_nodes;
8753 if (!alloc_cpumask_var(&d->this_sibling_map, GFP_KERNEL))
8754 return sa_nodemask;
8755 if (!alloc_cpumask_var(&d->this_core_map, GFP_KERNEL))
8756 return sa_this_sibling_map;
8757 if (!alloc_cpumask_var(&d->send_covered, GFP_KERNEL))
8758 return sa_this_core_map;
8759 if (!alloc_cpumask_var(&d->tmpmask, GFP_KERNEL))
8760 return sa_send_covered;
8761 d->rd = alloc_rootdomain();
8762 if (!d->rd) {
8763 printk(KERN_WARNING "Cannot alloc root domain\n");
8764 return sa_tmpmask;
8765 }
8766 return sa_rootdomain;
8767}
8768
Andreas Herrmann7f4588f2009-08-18 12:54:06 +02008769static struct sched_domain *__build_numa_sched_domains(struct s_data *d,
8770 const struct cpumask *cpu_map, struct sched_domain_attr *attr, int i)
8771{
8772 struct sched_domain *sd = NULL;
8773#ifdef CONFIG_NUMA
8774 struct sched_domain *parent;
8775
8776 d->sd_allnodes = 0;
8777 if (cpumask_weight(cpu_map) >
8778 SD_NODES_PER_DOMAIN * cpumask_weight(d->nodemask)) {
8779 sd = &per_cpu(allnodes_domains, i).sd;
8780 SD_INIT(sd, ALLNODES);
8781 set_domain_attribute(sd, attr);
8782 cpumask_copy(sched_domain_span(sd), cpu_map);
8783 cpu_to_allnodes_group(i, cpu_map, &sd->groups, d->tmpmask);
8784 d->sd_allnodes = 1;
8785 }
8786 parent = sd;
8787
8788 sd = &per_cpu(node_domains, i).sd;
8789 SD_INIT(sd, NODE);
8790 set_domain_attribute(sd, attr);
8791 sched_domain_node_span(cpu_to_node(i), sched_domain_span(sd));
8792 sd->parent = parent;
8793 if (parent)
8794 parent->child = sd;
8795 cpumask_and(sched_domain_span(sd), sched_domain_span(sd), cpu_map);
8796#endif
8797 return sd;
8798}
8799
Andreas Herrmann87cce662009-08-18 12:54:55 +02008800static struct sched_domain *__build_cpu_sched_domain(struct s_data *d,
8801 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
8802 struct sched_domain *parent, int i)
8803{
8804 struct sched_domain *sd;
8805 sd = &per_cpu(phys_domains, i).sd;
8806 SD_INIT(sd, CPU);
8807 set_domain_attribute(sd, attr);
8808 cpumask_copy(sched_domain_span(sd), d->nodemask);
8809 sd->parent = parent;
8810 if (parent)
8811 parent->child = sd;
8812 cpu_to_phys_group(i, cpu_map, &sd->groups, d->tmpmask);
8813 return sd;
8814}
8815
Andreas Herrmann410c4082009-08-18 12:56:14 +02008816static struct sched_domain *__build_mc_sched_domain(struct s_data *d,
8817 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
8818 struct sched_domain *parent, int i)
8819{
8820 struct sched_domain *sd = parent;
8821#ifdef CONFIG_SCHED_MC
8822 sd = &per_cpu(core_domains, i).sd;
8823 SD_INIT(sd, MC);
8824 set_domain_attribute(sd, attr);
8825 cpumask_and(sched_domain_span(sd), cpu_map, cpu_coregroup_mask(i));
8826 sd->parent = parent;
8827 parent->child = sd;
8828 cpu_to_core_group(i, cpu_map, &sd->groups, d->tmpmask);
8829#endif
8830 return sd;
8831}
8832
Andreas Herrmannd8173532009-08-18 12:57:03 +02008833static struct sched_domain *__build_smt_sched_domain(struct s_data *d,
8834 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
8835 struct sched_domain *parent, int i)
8836{
8837 struct sched_domain *sd = parent;
8838#ifdef CONFIG_SCHED_SMT
8839 sd = &per_cpu(cpu_domains, i).sd;
8840 SD_INIT(sd, SIBLING);
8841 set_domain_attribute(sd, attr);
8842 cpumask_and(sched_domain_span(sd), cpu_map, topology_thread_cpumask(i));
8843 sd->parent = parent;
8844 parent->child = sd;
8845 cpu_to_cpu_group(i, cpu_map, &sd->groups, d->tmpmask);
8846#endif
8847 return sd;
8848}
8849
Andreas Herrmann0e8e85c2009-08-18 12:57:51 +02008850static void build_sched_groups(struct s_data *d, enum sched_domain_level l,
8851 const struct cpumask *cpu_map, int cpu)
8852{
8853 switch (l) {
8854#ifdef CONFIG_SCHED_SMT
8855 case SD_LV_SIBLING: /* set up CPU (sibling) groups */
8856 cpumask_and(d->this_sibling_map, cpu_map,
8857 topology_thread_cpumask(cpu));
8858 if (cpu == cpumask_first(d->this_sibling_map))
8859 init_sched_build_groups(d->this_sibling_map, cpu_map,
8860 &cpu_to_cpu_group,
8861 d->send_covered, d->tmpmask);
8862 break;
8863#endif
Andreas Herrmanna2af04c2009-08-18 12:58:38 +02008864#ifdef CONFIG_SCHED_MC
8865 case SD_LV_MC: /* set up multi-core groups */
8866 cpumask_and(d->this_core_map, cpu_map, cpu_coregroup_mask(cpu));
8867 if (cpu == cpumask_first(d->this_core_map))
8868 init_sched_build_groups(d->this_core_map, cpu_map,
8869 &cpu_to_core_group,
8870 d->send_covered, d->tmpmask);
8871 break;
8872#endif
Andreas Herrmann86548092009-08-18 12:59:28 +02008873 case SD_LV_CPU: /* set up physical groups */
8874 cpumask_and(d->nodemask, cpumask_of_node(cpu), cpu_map);
8875 if (!cpumask_empty(d->nodemask))
8876 init_sched_build_groups(d->nodemask, cpu_map,
8877 &cpu_to_phys_group,
8878 d->send_covered, d->tmpmask);
8879 break;
Andreas Herrmannde616e32009-08-18 13:00:13 +02008880#ifdef CONFIG_NUMA
8881 case SD_LV_ALLNODES:
8882 init_sched_build_groups(cpu_map, cpu_map, &cpu_to_allnodes_group,
8883 d->send_covered, d->tmpmask);
8884 break;
8885#endif
Andreas Herrmann0e8e85c2009-08-18 12:57:51 +02008886 default:
8887 break;
8888 }
8889}
8890
Mike Travis7c16ec52008-04-04 18:11:11 -07008891/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008892 * Build sched domains for a given set of cpus and attach the sched domains
8893 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07008894 */
Rusty Russell96f874e2008-11-25 02:35:14 +10308895static int __build_sched_domains(const struct cpumask *cpu_map,
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008896 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008897{
Andreas Herrmann2109b992009-08-18 12:53:00 +02008898 enum s_alloc alloc_state = sa_none;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02008899 struct s_data d;
Andreas Herrmann294b0c92009-08-18 13:02:29 +02008900 struct sched_domain *sd;
Andreas Herrmann2109b992009-08-18 12:53:00 +02008901 int i;
John Hawkesd1b55132005-09-06 15:18:14 -07008902#ifdef CONFIG_NUMA
Andreas Herrmann49a02c52009-08-18 12:51:52 +02008903 d.sd_allnodes = 0;
Rusty Russell3404c8d2008-11-25 02:35:03 +10308904#endif
8905
Andreas Herrmann2109b992009-08-18 12:53:00 +02008906 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
8907 if (alloc_state != sa_rootdomain)
8908 goto error;
8909 alloc_state = sa_sched_groups;
Mike Travis7c16ec52008-04-04 18:11:11 -07008910
Linus Torvalds1da177e2005-04-16 15:20:36 -07008911 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07008912 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008913 */
Rusty Russellabcd0832008-11-25 02:35:02 +10308914 for_each_cpu(i, cpu_map) {
Andreas Herrmann49a02c52009-08-18 12:51:52 +02008915 cpumask_and(d.nodemask, cpumask_of_node(cpu_to_node(i)),
8916 cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008917
Andreas Herrmann7f4588f2009-08-18 12:54:06 +02008918 sd = __build_numa_sched_domains(&d, cpu_map, attr, i);
Andreas Herrmann87cce662009-08-18 12:54:55 +02008919 sd = __build_cpu_sched_domain(&d, cpu_map, attr, sd, i);
Andreas Herrmann410c4082009-08-18 12:56:14 +02008920 sd = __build_mc_sched_domain(&d, cpu_map, attr, sd, i);
Andreas Herrmannd8173532009-08-18 12:57:03 +02008921 sd = __build_smt_sched_domain(&d, cpu_map, attr, sd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008922 }
8923
Rusty Russellabcd0832008-11-25 02:35:02 +10308924 for_each_cpu(i, cpu_map) {
Andreas Herrmann0e8e85c2009-08-18 12:57:51 +02008925 build_sched_groups(&d, SD_LV_SIBLING, cpu_map, i);
Andreas Herrmanna2af04c2009-08-18 12:58:38 +02008926 build_sched_groups(&d, SD_LV_MC, cpu_map, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008927 }
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008928
Linus Torvalds1da177e2005-04-16 15:20:36 -07008929 /* Set up physical groups */
Andreas Herrmann86548092009-08-18 12:59:28 +02008930 for (i = 0; i < nr_node_ids; i++)
8931 build_sched_groups(&d, SD_LV_CPU, cpu_map, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008932
8933#ifdef CONFIG_NUMA
8934 /* Set up node groups */
Andreas Herrmannde616e32009-08-18 13:00:13 +02008935 if (d.sd_allnodes)
8936 build_sched_groups(&d, SD_LV_ALLNODES, cpu_map, 0);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008937
Andreas Herrmann0601a882009-08-18 13:01:11 +02008938 for (i = 0; i < nr_node_ids; i++)
8939 if (build_numa_sched_groups(&d, cpu_map, i))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008940 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008941#endif
8942
8943 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008944#ifdef CONFIG_SCHED_SMT
Rusty Russellabcd0832008-11-25 02:35:02 +10308945 for_each_cpu(i, cpu_map) {
Andreas Herrmann294b0c92009-08-18 13:02:29 +02008946 sd = &per_cpu(cpu_domains, i).sd;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008947 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008948 }
8949#endif
8950#ifdef CONFIG_SCHED_MC
Rusty Russellabcd0832008-11-25 02:35:02 +10308951 for_each_cpu(i, cpu_map) {
Andreas Herrmann294b0c92009-08-18 13:02:29 +02008952 sd = &per_cpu(core_domains, i).sd;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008953 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008954 }
8955#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008956
Rusty Russellabcd0832008-11-25 02:35:02 +10308957 for_each_cpu(i, cpu_map) {
Andreas Herrmann294b0c92009-08-18 13:02:29 +02008958 sd = &per_cpu(phys_domains, i).sd;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07008959 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008960 }
8961
John Hawkes9c1cfda2005-09-06 15:18:14 -07008962#ifdef CONFIG_NUMA
Mike Travis076ac2a2008-05-12 21:21:12 +02008963 for (i = 0; i < nr_node_ids; i++)
Andreas Herrmann49a02c52009-08-18 12:51:52 +02008964 init_numa_sched_groups_power(d.sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07008965
Andreas Herrmann49a02c52009-08-18 12:51:52 +02008966 if (d.sd_allnodes) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08008967 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07008968
Rusty Russell96f874e2008-11-25 02:35:14 +10308969 cpu_to_allnodes_group(cpumask_first(cpu_map), cpu_map, &sg,
Andreas Herrmann49a02c52009-08-18 12:51:52 +02008970 d.tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07008971 init_numa_sched_groups_power(sg);
8972 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07008973#endif
8974
Linus Torvalds1da177e2005-04-16 15:20:36 -07008975 /* Attach the domains */
Rusty Russellabcd0832008-11-25 02:35:02 +10308976 for_each_cpu(i, cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008977#ifdef CONFIG_SCHED_SMT
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308978 sd = &per_cpu(cpu_domains, i).sd;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08008979#elif defined(CONFIG_SCHED_MC)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308980 sd = &per_cpu(core_domains, i).sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008981#else
Rusty Russell6c99e9a2008-11-25 02:35:04 +10308982 sd = &per_cpu(phys_domains, i).sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008983#endif
Andreas Herrmann49a02c52009-08-18 12:51:52 +02008984 cpu_attach_domain(sd, d.rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008985 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008986
Andreas Herrmann2109b992009-08-18 12:53:00 +02008987 d.sched_group_nodes = NULL; /* don't free this we still need it */
8988 __free_domain_allocs(&d, sa_tmpmask, cpu_map);
8989 return 0;
Rusty Russell3404c8d2008-11-25 02:35:03 +10308990
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07008991error:
Andreas Herrmann2109b992009-08-18 12:53:00 +02008992 __free_domain_allocs(&d, alloc_state, cpu_map);
8993 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008994}
Paul Jackson029190c2007-10-18 23:40:20 -07008995
Rusty Russell96f874e2008-11-25 02:35:14 +10308996static int build_sched_domains(const struct cpumask *cpu_map)
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008997{
8998 return __build_sched_domains(cpu_map, NULL);
8999}
9000
Rusty Russell96f874e2008-11-25 02:35:14 +10309001static struct cpumask *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07009002static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02009003static struct sched_domain_attr *dattr_cur;
9004 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07009005
9006/*
9007 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10309008 * cpumask) fails, then fallback to a single sched domain,
9009 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07009010 */
Rusty Russell42128232008-11-25 02:35:12 +10309011static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07009012
Heiko Carstensee79d1b2008-12-09 18:49:50 +01009013/*
9014 * arch_update_cpu_topology lets virtualized architectures update the
9015 * cpu core maps. It is supposed to return 1 if the topology changed
9016 * or 0 if it stayed the same.
9017 */
9018int __attribute__((weak)) arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01009019{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01009020 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01009021}
9022
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07009023/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009024 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07009025 * For now this just excludes isolated cpus, but could be used to
9026 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07009027 */
Rusty Russell96f874e2008-11-25 02:35:14 +10309028static int arch_init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07009029{
Milton Miller73785472007-10-24 18:23:48 +02009030 int err;
9031
Heiko Carstens22e52b02008-03-12 18:31:59 +01009032 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07009033 ndoms_cur = 1;
Rusty Russell96f874e2008-11-25 02:35:14 +10309034 doms_cur = kmalloc(cpumask_size(), GFP_KERNEL);
Paul Jackson029190c2007-10-18 23:40:20 -07009035 if (!doms_cur)
Rusty Russell42128232008-11-25 02:35:12 +10309036 doms_cur = fallback_doms;
Rusty Russelldcc30a32008-11-25 02:35:12 +10309037 cpumask_andnot(doms_cur, cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09009038 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02009039 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02009040 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02009041
9042 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07009043}
9044
Rusty Russell96f874e2008-11-25 02:35:14 +10309045static void arch_destroy_sched_domains(const struct cpumask *cpu_map,
9046 struct cpumask *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009047{
Mike Travis7c16ec52008-04-04 18:11:11 -07009048 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07009049}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009050
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07009051/*
9052 * Detach sched domains from a group of cpus specified in cpu_map
9053 * These cpus will now be attached to the NULL domain
9054 */
Rusty Russell96f874e2008-11-25 02:35:14 +10309055static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07009056{
Rusty Russell96f874e2008-11-25 02:35:14 +10309057 /* Save because hotplug lock held. */
9058 static DECLARE_BITMAP(tmpmask, CONFIG_NR_CPUS);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07009059 int i;
9060
Rusty Russellabcd0832008-11-25 02:35:02 +10309061 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01009062 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07009063 synchronize_sched();
Rusty Russell96f874e2008-11-25 02:35:14 +10309064 arch_destroy_sched_domains(cpu_map, to_cpumask(tmpmask));
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07009065}
9066
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09009067/* handle null as "default" */
9068static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
9069 struct sched_domain_attr *new, int idx_new)
9070{
9071 struct sched_domain_attr tmp;
9072
9073 /* fast path */
9074 if (!new && !cur)
9075 return 1;
9076
9077 tmp = SD_ATTR_INIT;
9078 return !memcmp(cur ? (cur + idx_cur) : &tmp,
9079 new ? (new + idx_new) : &tmp,
9080 sizeof(struct sched_domain_attr));
9081}
9082
Paul Jackson029190c2007-10-18 23:40:20 -07009083/*
9084 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009085 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07009086 * doms_new[] to the current sched domain partitioning, doms_cur[].
9087 * It destroys each deleted domain and builds each new domain.
9088 *
Rusty Russell96f874e2008-11-25 02:35:14 +10309089 * 'doms_new' is an array of cpumask's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009090 * The masks don't intersect (don't overlap.) We should setup one
9091 * sched domain for each mask. CPUs not in any of the cpumasks will
9092 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07009093 * current 'doms_cur' domains and in the new 'doms_new', we can leave
9094 * it as it is.
9095 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009096 * The passed in 'doms_new' should be kmalloc'd. This routine takes
9097 * ownership of it and will kfree it when done with it. If the caller
Li Zefan700018e2008-11-18 14:02:03 +08009098 * failed the kmalloc call, then it can pass in doms_new == NULL &&
9099 * ndoms_new == 1, and partition_sched_domains() will fallback to
9100 * the single partition 'fallback_doms', it also forces the domains
9101 * to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07009102 *
Rusty Russell96f874e2008-11-25 02:35:14 +10309103 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08009104 * ndoms_new == 0 is a special case for destroying existing domains,
9105 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07009106 *
Paul Jackson029190c2007-10-18 23:40:20 -07009107 * Call with hotplug lock held
9108 */
Rusty Russell96f874e2008-11-25 02:35:14 +10309109/* FIXME: Change to struct cpumask *doms_new[] */
9110void partition_sched_domains(int ndoms_new, struct cpumask *doms_new,
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09009111 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07009112{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07009113 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01009114 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07009115
Heiko Carstens712555e2008-04-28 11:33:07 +02009116 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01009117
Milton Miller73785472007-10-24 18:23:48 +02009118 /* always unregister in case we don't destroy any domains */
9119 unregister_sched_domain_sysctl();
9120
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01009121 /* Let architecture update cpu core mappings. */
9122 new_topology = arch_update_cpu_topology();
9123
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07009124 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07009125
9126 /* Destroy deleted domains */
9127 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01009128 for (j = 0; j < n && !new_topology; j++) {
Rusty Russell96f874e2008-11-25 02:35:14 +10309129 if (cpumask_equal(&doms_cur[i], &doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09009130 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07009131 goto match1;
9132 }
9133 /* no match - a current sched domain not in new doms_new[] */
9134 detach_destroy_domains(doms_cur + i);
9135match1:
9136 ;
9137 }
9138
Max Krasnyanskye761b772008-07-15 04:43:49 -07009139 if (doms_new == NULL) {
9140 ndoms_cur = 0;
Rusty Russell42128232008-11-25 02:35:12 +10309141 doms_new = fallback_doms;
Rusty Russelldcc30a32008-11-25 02:35:12 +10309142 cpumask_andnot(&doms_new[0], cpu_online_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08009143 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07009144 }
9145
Paul Jackson029190c2007-10-18 23:40:20 -07009146 /* Build new domains */
9147 for (i = 0; i < ndoms_new; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01009148 for (j = 0; j < ndoms_cur && !new_topology; j++) {
Rusty Russell96f874e2008-11-25 02:35:14 +10309149 if (cpumask_equal(&doms_new[i], &doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09009150 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07009151 goto match2;
9152 }
9153 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09009154 __build_sched_domains(doms_new + i,
9155 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07009156match2:
9157 ;
9158 }
9159
9160 /* Remember the new sched domains */
Rusty Russell42128232008-11-25 02:35:12 +10309161 if (doms_cur != fallback_doms)
Paul Jackson029190c2007-10-18 23:40:20 -07009162 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09009163 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07009164 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09009165 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07009166 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02009167
9168 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01009169
Heiko Carstens712555e2008-04-28 11:33:07 +02009170 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07009171}
9172
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009173#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Li Zefanc70f22d2009-01-05 19:07:50 +08009174static void arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009175{
Gautham R Shenoy95402b32008-01-25 21:08:02 +01009176 get_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07009177
9178 /* Destroy domains first to force the rebuild */
9179 partition_sched_domains(0, NULL, NULL);
9180
Max Krasnyanskye761b772008-07-15 04:43:49 -07009181 rebuild_sched_domains();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01009182 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009183}
9184
9185static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
9186{
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05309187 unsigned int level = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009188
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05309189 if (sscanf(buf, "%u", &level) != 1)
9190 return -EINVAL;
9191
9192 /*
9193 * level is always be positive so don't check for
9194 * level < POWERSAVINGS_BALANCE_NONE which is 0
9195 * What happens on 0 or 1 byte write,
9196 * need to check for count as well?
9197 */
9198
9199 if (level >= MAX_POWERSAVINGS_BALANCE_LEVELS)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009200 return -EINVAL;
9201
9202 if (smt)
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05309203 sched_smt_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009204 else
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05309205 sched_mc_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009206
Li Zefanc70f22d2009-01-05 19:07:50 +08009207 arch_reinit_sched_domains();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009208
Li Zefanc70f22d2009-01-05 19:07:50 +08009209 return count;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009210}
9211
Adrian Bunk6707de002007-08-12 18:08:19 +02009212#ifdef CONFIG_SCHED_MC
Andi Kleenf718cd42008-07-29 22:33:52 -07009213static ssize_t sched_mc_power_savings_show(struct sysdev_class *class,
9214 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02009215{
9216 return sprintf(page, "%u\n", sched_mc_power_savings);
9217}
Andi Kleenf718cd42008-07-29 22:33:52 -07009218static ssize_t sched_mc_power_savings_store(struct sysdev_class *class,
Adrian Bunk6707de002007-08-12 18:08:19 +02009219 const char *buf, size_t count)
9220{
9221 return sched_power_savings_store(buf, count, 0);
9222}
Andi Kleenf718cd42008-07-29 22:33:52 -07009223static SYSDEV_CLASS_ATTR(sched_mc_power_savings, 0644,
9224 sched_mc_power_savings_show,
9225 sched_mc_power_savings_store);
Adrian Bunk6707de002007-08-12 18:08:19 +02009226#endif
9227
9228#ifdef CONFIG_SCHED_SMT
Andi Kleenf718cd42008-07-29 22:33:52 -07009229static ssize_t sched_smt_power_savings_show(struct sysdev_class *dev,
9230 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02009231{
9232 return sprintf(page, "%u\n", sched_smt_power_savings);
9233}
Andi Kleenf718cd42008-07-29 22:33:52 -07009234static ssize_t sched_smt_power_savings_store(struct sysdev_class *dev,
Adrian Bunk6707de002007-08-12 18:08:19 +02009235 const char *buf, size_t count)
9236{
9237 return sched_power_savings_store(buf, count, 1);
9238}
Andi Kleenf718cd42008-07-29 22:33:52 -07009239static SYSDEV_CLASS_ATTR(sched_smt_power_savings, 0644,
9240 sched_smt_power_savings_show,
Adrian Bunk6707de002007-08-12 18:08:19 +02009241 sched_smt_power_savings_store);
9242#endif
9243
Li Zefan39aac642009-01-05 19:18:02 +08009244int __init sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009245{
9246 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07009247
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009248#ifdef CONFIG_SCHED_SMT
9249 if (smt_capable())
9250 err = sysfs_create_file(&cls->kset.kobj,
9251 &attr_sched_smt_power_savings.attr);
9252#endif
9253#ifdef CONFIG_SCHED_MC
9254 if (!err && mc_capable())
9255 err = sysfs_create_file(&cls->kset.kobj,
9256 &attr_sched_mc_power_savings.attr);
9257#endif
9258 return err;
9259}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009260#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07009261
Max Krasnyanskye761b772008-07-15 04:43:49 -07009262#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07009263/*
Max Krasnyanskye761b772008-07-15 04:43:49 -07009264 * Add online and remove offline CPUs from the scheduler domains.
9265 * When cpusets are enabled they take over this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009266 */
9267static int update_sched_domains(struct notifier_block *nfb,
9268 unsigned long action, void *hcpu)
9269{
Max Krasnyanskye761b772008-07-15 04:43:49 -07009270 switch (action) {
9271 case CPU_ONLINE:
9272 case CPU_ONLINE_FROZEN:
9273 case CPU_DEAD:
9274 case CPU_DEAD_FROZEN:
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07009275 partition_sched_domains(1, NULL, NULL);
Max Krasnyanskye761b772008-07-15 04:43:49 -07009276 return NOTIFY_OK;
9277
9278 default:
9279 return NOTIFY_DONE;
9280 }
9281}
9282#endif
9283
9284static int update_runtime(struct notifier_block *nfb,
9285 unsigned long action, void *hcpu)
9286{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02009287 int cpu = (int)(long)hcpu;
9288
Linus Torvalds1da177e2005-04-16 15:20:36 -07009289 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009290 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07009291 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02009292 disable_runtime(cpu_rq(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009293 return NOTIFY_OK;
9294
Linus Torvalds1da177e2005-04-16 15:20:36 -07009295 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07009296 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07009297 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07009298 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02009299 enable_runtime(cpu_rq(cpu));
Max Krasnyanskye761b772008-07-15 04:43:49 -07009300 return NOTIFY_OK;
9301
Linus Torvalds1da177e2005-04-16 15:20:36 -07009302 default:
9303 return NOTIFY_DONE;
9304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009305}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009306
9307void __init sched_init_smp(void)
9308{
Rusty Russelldcc30a32008-11-25 02:35:12 +10309309 cpumask_var_t non_isolated_cpus;
9310
9311 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07009312
Mike Travis434d53b2008-04-04 18:11:04 -07009313#if defined(CONFIG_NUMA)
9314 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
9315 GFP_KERNEL);
9316 BUG_ON(sched_group_nodes_bycpu == NULL);
9317#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01009318 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02009319 mutex_lock(&sched_domains_mutex);
Rusty Russelldcc30a32008-11-25 02:35:12 +10309320 arch_init_sched_domains(cpu_online_mask);
9321 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
9322 if (cpumask_empty(non_isolated_cpus))
9323 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02009324 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01009325 put_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07009326
9327#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07009328 /* XXX: Theoretical race here - CPU may be hotplugged now */
9329 hotcpu_notifier(update_sched_domains, 0);
Max Krasnyanskye761b772008-07-15 04:43:49 -07009330#endif
9331
9332 /* RT runtime code needs to handle some hotplug events */
9333 hotcpu_notifier(update_runtime, 0);
9334
Peter Zijlstrab328ca12008-04-29 10:02:46 +02009335 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07009336
9337 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10309338 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07009339 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01009340 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10309341 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10309342
9343 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Rusty Russell0e3900e2008-11-25 02:35:13 +10309344 init_sched_rt_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009345}
9346#else
9347void __init sched_init_smp(void)
9348{
Ingo Molnar19978ca2007-11-09 22:39:38 +01009349 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009350}
9351#endif /* CONFIG_SMP */
9352
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +05309353const_debug unsigned int sysctl_timer_migration = 1;
9354
Linus Torvalds1da177e2005-04-16 15:20:36 -07009355int in_sched_functions(unsigned long addr)
9356{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009357 return in_lock_functions(addr) ||
9358 (addr >= (unsigned long)__sched_text_start
9359 && addr < (unsigned long)__sched_text_end);
9360}
9361
Alexey Dobriyana9957442007-10-15 17:00:13 +02009362static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02009363{
9364 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02009365 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02009366#ifdef CONFIG_FAIR_GROUP_SCHED
9367 cfs_rq->rq = rq;
9368#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02009369 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02009370}
9371
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009372static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
9373{
9374 struct rt_prio_array *array;
9375 int i;
9376
9377 array = &rt_rq->active;
9378 for (i = 0; i < MAX_RT_PRIO; i++) {
9379 INIT_LIST_HEAD(array->queue + i);
9380 __clear_bit(i, array->bitmap);
9381 }
9382 /* delimiter for bitsearch: */
9383 __set_bit(MAX_RT_PRIO, array->bitmap);
9384
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009385#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -05009386 rt_rq->highest_prio.curr = MAX_RT_PRIO;
Gregory Haskins398a1532009-01-14 09:10:04 -05009387#ifdef CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -05009388 rt_rq->highest_prio.next = MAX_RT_PRIO;
Peter Zijlstra48d5e252008-01-25 21:08:31 +01009389#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009390#endif
9391#ifdef CONFIG_SMP
9392 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009393 rt_rq->overloaded = 0;
Fabio Checconic20b08e2009-06-15 20:56:38 +02009394 plist_head_init(&rt_rq->pushable_tasks, &rq->lock);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009395#endif
9396
9397 rt_rq->rt_time = 0;
9398 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009399 rt_rq->rt_runtime = 0;
9400 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009401
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009402#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01009403 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009404 rt_rq->rq = rq;
9405#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009406}
9407
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009408#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009409static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
9410 struct sched_entity *se, int cpu, int add,
9411 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009412{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009413 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009414 tg->cfs_rq[cpu] = cfs_rq;
9415 init_cfs_rq(cfs_rq, rq);
9416 cfs_rq->tg = tg;
9417 if (add)
9418 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
9419
9420 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02009421 /* se could be NULL for init_task_group */
9422 if (!se)
9423 return;
9424
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009425 if (!parent)
9426 se->cfs_rq = &rq->cfs;
9427 else
9428 se->cfs_rq = parent->my_q;
9429
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009430 se->my_q = cfs_rq;
9431 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02009432 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009433 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009434}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009435#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009436
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009437#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009438static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
9439 struct sched_rt_entity *rt_se, int cpu, int add,
9440 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009441{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009442 struct rq *rq = cpu_rq(cpu);
9443
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009444 tg->rt_rq[cpu] = rt_rq;
9445 init_rt_rq(rt_rq, rq);
9446 rt_rq->tg = tg;
9447 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009448 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009449 if (add)
9450 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
9451
9452 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02009453 if (!rt_se)
9454 return;
9455
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009456 if (!parent)
9457 rt_se->rt_rq = &rq->rt;
9458 else
9459 rt_se->rt_rq = parent->my_q;
9460
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009461 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009462 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009463 INIT_LIST_HEAD(&rt_se->run_list);
9464}
9465#endif
9466
Linus Torvalds1da177e2005-04-16 15:20:36 -07009467void __init sched_init(void)
9468{
Ingo Molnardd41f592007-07-09 18:51:59 +02009469 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07009470 unsigned long alloc_size = 0, ptr;
9471
9472#ifdef CONFIG_FAIR_GROUP_SCHED
9473 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
9474#endif
9475#ifdef CONFIG_RT_GROUP_SCHED
9476 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
9477#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009478#ifdef CONFIG_USER_SCHED
9479 alloc_size *= 2;
9480#endif
Rusty Russelldf7c8e82009-03-19 15:22:20 +10309481#ifdef CONFIG_CPUMASK_OFFSTACK
Rusty Russell8c083f02009-03-19 15:22:20 +10309482 alloc_size += num_possible_cpus() * cpumask_size();
Rusty Russelldf7c8e82009-03-19 15:22:20 +10309483#endif
Mike Travis434d53b2008-04-04 18:11:04 -07009484 /*
9485 * As sched_init() is called before page_alloc is setup,
9486 * we use alloc_bootmem().
9487 */
9488 if (alloc_size) {
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03009489 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
Mike Travis434d53b2008-04-04 18:11:04 -07009490
9491#ifdef CONFIG_FAIR_GROUP_SCHED
9492 init_task_group.se = (struct sched_entity **)ptr;
9493 ptr += nr_cpu_ids * sizeof(void **);
9494
9495 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
9496 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009497
9498#ifdef CONFIG_USER_SCHED
9499 root_task_group.se = (struct sched_entity **)ptr;
9500 ptr += nr_cpu_ids * sizeof(void **);
9501
9502 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
9503 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009504#endif /* CONFIG_USER_SCHED */
9505#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07009506#ifdef CONFIG_RT_GROUP_SCHED
9507 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
9508 ptr += nr_cpu_ids * sizeof(void **);
9509
9510 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009511 ptr += nr_cpu_ids * sizeof(void **);
9512
9513#ifdef CONFIG_USER_SCHED
9514 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
9515 ptr += nr_cpu_ids * sizeof(void **);
9516
9517 root_task_group.rt_rq = (struct rt_rq **)ptr;
9518 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009519#endif /* CONFIG_USER_SCHED */
9520#endif /* CONFIG_RT_GROUP_SCHED */
Rusty Russelldf7c8e82009-03-19 15:22:20 +10309521#ifdef CONFIG_CPUMASK_OFFSTACK
9522 for_each_possible_cpu(i) {
9523 per_cpu(load_balance_tmpmask, i) = (void *)ptr;
9524 ptr += cpumask_size();
9525 }
9526#endif /* CONFIG_CPUMASK_OFFSTACK */
Mike Travis434d53b2008-04-04 18:11:04 -07009527 }
Ingo Molnardd41f592007-07-09 18:51:59 +02009528
Gregory Haskins57d885f2008-01-25 21:08:18 +01009529#ifdef CONFIG_SMP
9530 init_defrootdomain();
9531#endif
9532
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009533 init_rt_bandwidth(&def_rt_bandwidth,
9534 global_rt_period(), global_rt_runtime());
9535
9536#ifdef CONFIG_RT_GROUP_SCHED
9537 init_rt_bandwidth(&init_task_group.rt_bandwidth,
9538 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009539#ifdef CONFIG_USER_SCHED
9540 init_rt_bandwidth(&root_task_group.rt_bandwidth,
9541 global_rt_period(), RUNTIME_INF);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009542#endif /* CONFIG_USER_SCHED */
9543#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009544
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009545#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009546 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02009547 INIT_LIST_HEAD(&init_task_group.children);
9548
9549#ifdef CONFIG_USER_SCHED
9550 INIT_LIST_HEAD(&root_task_group.children);
9551 init_task_group.parent = &root_task_group;
9552 list_add(&init_task_group.siblings, &root_task_group.children);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009553#endif /* CONFIG_USER_SCHED */
9554#endif /* CONFIG_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009555
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08009556 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07009557 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009558
9559 rq = cpu_rq(i);
9560 spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07009561 rq->nr_running = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02009562 rq->calc_load_active = 0;
9563 rq->calc_load_update = jiffies + LOAD_FREQ;
Ingo Molnardd41f592007-07-09 18:51:59 +02009564 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01009565 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009566#ifdef CONFIG_FAIR_GROUP_SCHED
9567 init_task_group.shares = init_task_group_load;
9568 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009569#ifdef CONFIG_CGROUP_SCHED
9570 /*
9571 * How much cpu bandwidth does init_task_group get?
9572 *
9573 * In case of task-groups formed thr' the cgroup filesystem, it
9574 * gets 100% of the cpu resources in the system. This overall
9575 * system cpu resource is divided among the tasks of
9576 * init_task_group and its child task-groups in a fair manner,
9577 * based on each entity's (task or task-group's) weight
9578 * (se->load.weight).
9579 *
9580 * In other words, if init_task_group has 10 tasks of weight
9581 * 1024) and two child groups A0 and A1 (of weight 1024 each),
9582 * then A0's share of the cpu resource is:
9583 *
Ingo Molnar0d905bc2009-05-04 19:13:30 +02009584 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
Dhaval Giani354d60c2008-04-19 19:44:59 +02009585 *
9586 * We achieve this by letting init_task_group's tasks sit
9587 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
9588 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009589 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009590#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009591 root_task_group.shares = NICE_0_LOAD;
9592 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009593 /*
9594 * In case of task-groups formed thr' the user id of tasks,
9595 * init_task_group represents tasks belonging to root user.
9596 * Hence it forms a sibling of all subsequent groups formed.
9597 * In this case, init_task_group gets only a fraction of overall
9598 * system cpu resource, based on the weight assigned to root
9599 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
9600 * by letting tasks of init_task_group sit in a separate cfs_rq
Anirban Sinha84e9dab2009-08-28 22:40:43 -07009601 * (init_tg_cfs_rq) and having one entity represent this group of
Dhaval Giani354d60c2008-04-19 19:44:59 +02009602 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
9603 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009604 init_tg_cfs_entry(&init_task_group,
Anirban Sinha84e9dab2009-08-28 22:40:43 -07009605 &per_cpu(init_tg_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009606 &per_cpu(init_sched_entity, i), i, 1,
9607 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009608
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009609#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02009610#endif /* CONFIG_FAIR_GROUP_SCHED */
9611
9612 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009613#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009614 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009615#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009616 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009617#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009618 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009619 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009620 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02009621 &per_cpu(init_sched_rt_entity, i), i, 1,
9622 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02009623#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009624#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07009625
Ingo Molnardd41f592007-07-09 18:51:59 +02009626 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
9627 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009628#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07009629 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01009630 rq->rd = NULL;
Gregory Haskins3f029d32009-07-29 11:08:47 -04009631 rq->post_schedule = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009632 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02009633 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009634 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07009635 rq->cpu = i;
Gregory Haskins1f11eb62008-06-04 15:04:05 -04009636 rq->online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009637 rq->migration_thread = NULL;
9638 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01009639 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009640#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01009641 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009642 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009643 }
9644
Peter Williams2dd73a42006-06-27 02:54:34 -07009645 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07009646
Avi Kivitye107be32007-07-26 13:40:43 +02009647#ifdef CONFIG_PREEMPT_NOTIFIERS
9648 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
9649#endif
9650
Christoph Lameterc9819f42006-12-10 02:20:25 -08009651#ifdef CONFIG_SMP
Carlos R. Mafra962cf362008-05-15 11:15:37 -03009652 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
Christoph Lameterc9819f42006-12-10 02:20:25 -08009653#endif
9654
Heiko Carstensb50f60c2006-07-30 03:03:52 -07009655#ifdef CONFIG_RT_MUTEXES
9656 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
9657#endif
9658
Linus Torvalds1da177e2005-04-16 15:20:36 -07009659 /*
9660 * The boot idle thread does lazy MMU switching as well:
9661 */
9662 atomic_inc(&init_mm.mm_count);
9663 enter_lazy_tlb(&init_mm, current);
9664
9665 /*
9666 * Make us the idle thread. Technically, schedule() should not be
9667 * called from this thread, however somewhere below it might be,
9668 * but because we are the idle thread, we just pick up running again
9669 * when this runqueue becomes "idle".
9670 */
9671 init_idle(current, smp_processor_id());
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02009672
9673 calc_load_update = jiffies + LOAD_FREQ;
9674
Ingo Molnardd41f592007-07-09 18:51:59 +02009675 /*
9676 * During early bootup we pretend to be a normal task:
9677 */
9678 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01009679
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10309680 /* Allocate the nohz_cpu_mask if CONFIG_CPUMASK_OFFSTACK */
Pekka Enberg4bdddf82009-06-11 08:35:27 +03009681 alloc_cpumask_var(&nohz_cpu_mask, GFP_NOWAIT);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10309682#ifdef CONFIG_SMP
Rusty Russell7d1e6a92008-11-25 02:35:09 +10309683#ifdef CONFIG_NO_HZ
Pekka Enberg4bdddf82009-06-11 08:35:27 +03009684 alloc_cpumask_var(&nohz.cpu_mask, GFP_NOWAIT);
9685 alloc_cpumask_var(&nohz.ilb_grp_nohz_mask, GFP_NOWAIT);
Rusty Russell7d1e6a92008-11-25 02:35:09 +10309686#endif
Pekka Enberg4bdddf82009-06-11 08:35:27 +03009687 alloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10309688#endif /* SMP */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10309689
Ingo Molnar0d905bc2009-05-04 19:13:30 +02009690 perf_counter_init();
9691
Ingo Molnar6892b752008-02-13 14:02:36 +01009692 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009693}
9694
9695#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02009696static inline int preempt_count_equals(int preempt_offset)
9697{
9698 int nested = preempt_count() & ~PREEMPT_ACTIVE;
9699
9700 return (nested == PREEMPT_INATOMIC_BASE + preempt_offset);
9701}
9702
9703void __might_sleep(char *file, int line, int preempt_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009704{
Ingo Molnar48f24c42006-07-03 00:25:40 -07009705#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07009706 static unsigned long prev_jiffy; /* ratelimiting */
9707
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02009708 if ((preempt_count_equals(preempt_offset) && !irqs_disabled()) ||
9709 system_state != SYSTEM_RUNNING || oops_in_progress)
Ingo Molnaraef745f2008-08-28 11:34:43 +02009710 return;
9711 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
9712 return;
9713 prev_jiffy = jiffies;
9714
9715 printk(KERN_ERR
9716 "BUG: sleeping function called from invalid context at %s:%d\n",
9717 file, line);
9718 printk(KERN_ERR
9719 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
9720 in_atomic(), irqs_disabled(),
9721 current->pid, current->comm);
9722
9723 debug_show_held_locks(current);
9724 if (irqs_disabled())
9725 print_irqtrace_events(current);
9726 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009727#endif
9728}
9729EXPORT_SYMBOL(__might_sleep);
9730#endif
9731
9732#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02009733static void normalize_task(struct rq *rq, struct task_struct *p)
9734{
9735 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02009736
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02009737 update_rq_clock(rq);
9738 on_rq = p->se.on_rq;
9739 if (on_rq)
9740 deactivate_task(rq, p, 0);
9741 __setscheduler(rq, p, SCHED_NORMAL, 0);
9742 if (on_rq) {
9743 activate_task(rq, p, 0);
9744 resched_task(rq->curr);
9745 }
9746}
9747
Linus Torvalds1da177e2005-04-16 15:20:36 -07009748void normalize_rt_tasks(void)
9749{
Ingo Molnara0f98a12007-06-17 18:37:45 +02009750 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009751 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07009752 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009753
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01009754 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02009755 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02009756 /*
9757 * Only normalize user tasks:
9758 */
9759 if (!p->mm)
9760 continue;
9761
Ingo Molnardd41f592007-07-09 18:51:59 +02009762 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02009763#ifdef CONFIG_SCHEDSTATS
9764 p->se.wait_start = 0;
9765 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02009766 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02009767#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02009768
9769 if (!rt_task(p)) {
9770 /*
9771 * Renice negative nice level userspace
9772 * tasks back to 0:
9773 */
9774 if (TASK_NICE(p) < 0 && p->mm)
9775 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009776 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02009777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009778
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01009779 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07009780 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009781
Ingo Molnar178be792007-10-15 17:00:18 +02009782 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02009783
Ingo Molnarb29739f2006-06-27 02:54:51 -07009784 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01009785 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02009786 } while_each_thread(g, p);
9787
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01009788 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009789}
9790
9791#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07009792
9793#ifdef CONFIG_IA64
9794/*
9795 * These functions are only useful for the IA64 MCA handling.
9796 *
9797 * They can only be called when the whole system has been
9798 * stopped - every CPU needs to be quiescent, and no scheduling
9799 * activity can take place. Using them for anything else would
9800 * be a serious bug, and as a result, they aren't even visible
9801 * under any other configuration.
9802 */
9803
9804/**
9805 * curr_task - return the current task for a given cpu.
9806 * @cpu: the processor in question.
9807 *
9808 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
9809 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07009810struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07009811{
9812 return cpu_curr(cpu);
9813}
9814
9815/**
9816 * set_curr_task - set the current task for a given cpu.
9817 * @cpu: the processor in question.
9818 * @p: the task pointer to set.
9819 *
9820 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009821 * are serviced on a separate stack. It allows the architecture to switch the
9822 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07009823 * must be called with all CPU's synchronized, and interrupts disabled, the
9824 * and caller must save the original value of the current task (see
9825 * curr_task() above) and restore that value before reenabling interrupts and
9826 * re-starting the system.
9827 *
9828 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
9829 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07009830void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07009831{
9832 cpu_curr(cpu) = p;
9833}
9834
9835#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009836
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009837#ifdef CONFIG_FAIR_GROUP_SCHED
9838static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009839{
9840 int i;
9841
9842 for_each_possible_cpu(i) {
9843 if (tg->cfs_rq)
9844 kfree(tg->cfs_rq[i]);
9845 if (tg->se)
9846 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009847 }
9848
9849 kfree(tg->cfs_rq);
9850 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009851}
9852
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009853static
9854int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009855{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009856 struct cfs_rq *cfs_rq;
Li Zefaneab17222008-10-29 17:03:22 +08009857 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009858 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009859 int i;
9860
Mike Travis434d53b2008-04-04 18:11:04 -07009861 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009862 if (!tg->cfs_rq)
9863 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07009864 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009865 if (!tg->se)
9866 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009867
9868 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009869
9870 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009871 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009872
Li Zefaneab17222008-10-29 17:03:22 +08009873 cfs_rq = kzalloc_node(sizeof(struct cfs_rq),
9874 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009875 if (!cfs_rq)
9876 goto err;
9877
Li Zefaneab17222008-10-29 17:03:22 +08009878 se = kzalloc_node(sizeof(struct sched_entity),
9879 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009880 if (!se)
9881 goto err;
9882
Li Zefaneab17222008-10-29 17:03:22 +08009883 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent->se[i]);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009884 }
9885
9886 return 1;
9887
9888 err:
9889 return 0;
9890}
9891
9892static inline void register_fair_sched_group(struct task_group *tg, int cpu)
9893{
9894 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
9895 &cpu_rq(cpu)->leaf_cfs_rq_list);
9896}
9897
9898static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
9899{
9900 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
9901}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009902#else /* !CONFG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009903static inline void free_fair_sched_group(struct task_group *tg)
9904{
9905}
9906
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009907static inline
9908int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009909{
9910 return 1;
9911}
9912
9913static inline void register_fair_sched_group(struct task_group *tg, int cpu)
9914{
9915}
9916
9917static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
9918{
9919}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009920#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009921
9922#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009923static void free_rt_sched_group(struct task_group *tg)
9924{
9925 int i;
9926
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009927 destroy_rt_bandwidth(&tg->rt_bandwidth);
9928
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009929 for_each_possible_cpu(i) {
9930 if (tg->rt_rq)
9931 kfree(tg->rt_rq[i]);
9932 if (tg->rt_se)
9933 kfree(tg->rt_se[i]);
9934 }
9935
9936 kfree(tg->rt_rq);
9937 kfree(tg->rt_se);
9938}
9939
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009940static
9941int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009942{
9943 struct rt_rq *rt_rq;
Li Zefaneab17222008-10-29 17:03:22 +08009944 struct sched_rt_entity *rt_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009945 struct rq *rq;
9946 int i;
9947
Mike Travis434d53b2008-04-04 18:11:04 -07009948 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009949 if (!tg->rt_rq)
9950 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07009951 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009952 if (!tg->rt_se)
9953 goto err;
9954
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009955 init_rt_bandwidth(&tg->rt_bandwidth,
9956 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009957
9958 for_each_possible_cpu(i) {
9959 rq = cpu_rq(i);
9960
Li Zefaneab17222008-10-29 17:03:22 +08009961 rt_rq = kzalloc_node(sizeof(struct rt_rq),
9962 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009963 if (!rt_rq)
9964 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009965
Li Zefaneab17222008-10-29 17:03:22 +08009966 rt_se = kzalloc_node(sizeof(struct sched_rt_entity),
9967 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009968 if (!rt_se)
9969 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009970
Li Zefaneab17222008-10-29 17:03:22 +08009971 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent->rt_se[i]);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009972 }
9973
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009974 return 1;
9975
9976 err:
9977 return 0;
9978}
9979
9980static inline void register_rt_sched_group(struct task_group *tg, int cpu)
9981{
9982 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
9983 &cpu_rq(cpu)->leaf_rt_rq_list);
9984}
9985
9986static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
9987{
9988 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
9989}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009990#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009991static inline void free_rt_sched_group(struct task_group *tg)
9992{
9993}
9994
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009995static inline
9996int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009997{
9998 return 1;
9999}
10000
10001static inline void register_rt_sched_group(struct task_group *tg, int cpu)
10002{
10003}
10004
10005static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
10006{
10007}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +020010008#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +010010009
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010010#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +010010011static void free_sched_group(struct task_group *tg)
10012{
10013 free_fair_sched_group(tg);
10014 free_rt_sched_group(tg);
10015 kfree(tg);
10016}
10017
10018/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +020010019struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +010010020{
10021 struct task_group *tg;
10022 unsigned long flags;
10023 int i;
10024
10025 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
10026 if (!tg)
10027 return ERR_PTR(-ENOMEM);
10028
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +020010029 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +010010030 goto err;
10031
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +020010032 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +010010033 goto err;
10034
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010035 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010036 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +010010037 register_fair_sched_group(tg, i);
10038 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010039 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010040 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +020010041
10042 WARN_ON(!parent); /* root should already exist */
10043
10044 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +020010045 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +080010046 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010047 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010048
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010049 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010050
10051err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010052 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010053 return ERR_PTR(-ENOMEM);
10054}
10055
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010056/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010057static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010058{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010059 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010060 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010061}
10062
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010063/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +020010064void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010065{
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010066 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010067 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010068
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010069 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010070 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +010010071 unregister_fair_sched_group(tg, i);
10072 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010073 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010074 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +020010075 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010076 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010077
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010078 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010079 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010080}
10081
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010082/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +020010083 * The caller of this function should have put the task in its new group
10084 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
10085 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010086 */
10087void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010088{
10089 int on_rq, running;
10090 unsigned long flags;
10091 struct rq *rq;
10092
10093 rq = task_rq_lock(tsk, &flags);
10094
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010095 update_rq_clock(rq);
10096
Dmitry Adamushko051a1d12007-12-18 15:21:13 +010010097 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010098 on_rq = tsk->se.on_rq;
10099
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -070010100 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010101 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -070010102 if (unlikely(running))
10103 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010104
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010105 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010106
Peter Zijlstra810b3812008-02-29 15:21:01 -050010107#ifdef CONFIG_FAIR_GROUP_SCHED
10108 if (tsk->sched_class->moved_group)
10109 tsk->sched_class->moved_group(tsk);
10110#endif
10111
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -070010112 if (unlikely(running))
10113 tsk->sched_class->set_curr_task(rq);
10114 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +020010115 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010116
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010117 task_rq_unlock(rq, &flags);
10118}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +020010119#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010120
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010121#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrac09595f2008-06-27 13:41:14 +020010122static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010123{
10124 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010125 int on_rq;
10126
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010127 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +010010128 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010129 dequeue_entity(cfs_rq, se, 0);
10130
10131 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +020010132 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010133
Peter Zijlstra62fb1852008-02-25 17:34:02 +010010134 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010135 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstrac09595f2008-06-27 13:41:14 +020010136}
Peter Zijlstra62fb1852008-02-25 17:34:02 +010010137
Peter Zijlstrac09595f2008-06-27 13:41:14 +020010138static void set_se_shares(struct sched_entity *se, unsigned long shares)
10139{
10140 struct cfs_rq *cfs_rq = se->cfs_rq;
10141 struct rq *rq = cfs_rq->rq;
10142 unsigned long flags;
10143
10144 spin_lock_irqsave(&rq->lock, flags);
10145 __set_se_shares(se, shares);
10146 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010147}
10148
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010149static DEFINE_MUTEX(shares_mutex);
10150
Ingo Molnar4cf86d72007-10-15 17:00:14 +020010151int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010152{
10153 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010154 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +010010155
Peter Zijlstra62fb1852008-02-25 17:34:02 +010010156 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +020010157 * We can't change the weight of the root cgroup.
10158 */
10159 if (!tg->se[0])
10160 return -EINVAL;
10161
Peter Zijlstra18d95a22008-04-19 19:45:00 +020010162 if (shares < MIN_SHARES)
10163 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +080010164 else if (shares > MAX_SHARES)
10165 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +010010166
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010167 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010168 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +020010169 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010170
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010171 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +010010172 for_each_possible_cpu(i)
10173 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +020010174 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010175 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +010010176
10177 /* wait for any ongoing reference to this group to finish */
10178 synchronize_sched();
10179
10180 /*
10181 * Now we are free to modify the group's share on each cpu
10182 * w/o tripping rebalance_share or load_balance_fair.
10183 */
10184 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +020010185 for_each_possible_cpu(i) {
10186 /*
10187 * force a rebalance
10188 */
10189 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +080010190 set_se_shares(tg->se[i], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +020010191 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +010010192
10193 /*
10194 * Enable load balance activity on this group, by inserting it back on
10195 * each cpu's rq->leaf_cfs_rq_list.
10196 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010197 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +010010198 for_each_possible_cpu(i)
10199 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +020010200 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010201 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +020010202done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +010010203 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +020010204 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +020010205}
10206
Dhaval Giani5cb350b2007-10-15 17:00:14 +020010207unsigned long sched_group_shares(struct task_group *tg)
10208{
10209 return tg->shares;
10210}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010211#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +020010212
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010213#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010214/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010215 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010216 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010217static DEFINE_MUTEX(rt_constraints_mutex);
10218
10219static unsigned long to_ratio(u64 period, u64 runtime)
10220{
10221 if (runtime == RUNTIME_INF)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010222 return 1ULL << 20;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010223
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010224 return div64_u64(runtime << 20, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010225}
10226
Dhaval Giani521f1a242008-02-28 15:21:56 +053010227/* Must be called with tasklist_lock held */
10228static inline int tg_has_rt_tasks(struct task_group *tg)
10229{
10230 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010231
Dhaval Giani521f1a242008-02-28 15:21:56 +053010232 do_each_thread(g, p) {
10233 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
10234 return 1;
10235 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010236
Dhaval Giani521f1a242008-02-28 15:21:56 +053010237 return 0;
10238}
10239
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010240struct rt_schedulable_data {
10241 struct task_group *tg;
10242 u64 rt_period;
10243 u64 rt_runtime;
10244};
10245
10246static int tg_schedulable(struct task_group *tg, void *data)
10247{
10248 struct rt_schedulable_data *d = data;
10249 struct task_group *child;
10250 unsigned long total, sum = 0;
10251 u64 period, runtime;
10252
10253 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
10254 runtime = tg->rt_bandwidth.rt_runtime;
10255
10256 if (tg == d->tg) {
10257 period = d->rt_period;
10258 runtime = d->rt_runtime;
10259 }
10260
Peter Zijlstra98a48262009-01-14 10:56:32 +010010261#ifdef CONFIG_USER_SCHED
10262 if (tg == &root_task_group) {
10263 period = global_rt_period();
10264 runtime = global_rt_runtime();
10265 }
10266#endif
10267
Peter Zijlstra4653f802008-09-23 15:33:44 +020010268 /*
10269 * Cannot have more runtime than the period.
10270 */
10271 if (runtime > period && runtime != RUNTIME_INF)
10272 return -EINVAL;
10273
10274 /*
10275 * Ensure we don't starve existing RT tasks.
10276 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010277 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
10278 return -EBUSY;
10279
10280 total = to_ratio(period, runtime);
10281
Peter Zijlstra4653f802008-09-23 15:33:44 +020010282 /*
10283 * Nobody can have more than the global setting allows.
10284 */
10285 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
10286 return -EINVAL;
10287
10288 /*
10289 * The sum of our children's runtime should not exceed our own.
10290 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010291 list_for_each_entry_rcu(child, &tg->children, siblings) {
10292 period = ktime_to_ns(child->rt_bandwidth.rt_period);
10293 runtime = child->rt_bandwidth.rt_runtime;
10294
10295 if (child == d->tg) {
10296 period = d->rt_period;
10297 runtime = d->rt_runtime;
10298 }
10299
10300 sum += to_ratio(period, runtime);
10301 }
10302
10303 if (sum > total)
10304 return -EINVAL;
10305
10306 return 0;
10307}
10308
10309static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
10310{
10311 struct rt_schedulable_data data = {
10312 .tg = tg,
10313 .rt_period = period,
10314 .rt_runtime = runtime,
10315 };
10316
10317 return walk_tg_tree(tg_schedulable, tg_nop, &data);
10318}
10319
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010320static int tg_set_bandwidth(struct task_group *tg,
10321 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010322{
Peter Zijlstraac086bc2008-04-19 19:44:58 +020010323 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010324
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010325 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +053010326 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010327 err = __rt_schedulable(tg, rt_period, rt_runtime);
10328 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +053010329 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +020010330
10331 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010332 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
10333 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +020010334
10335 for_each_possible_cpu(i) {
10336 struct rt_rq *rt_rq = tg->rt_rq[i];
10337
10338 spin_lock(&rt_rq->rt_runtime_lock);
10339 rt_rq->rt_runtime = rt_runtime;
10340 spin_unlock(&rt_rq->rt_runtime_lock);
10341 }
10342 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010343 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +053010344 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010345 mutex_unlock(&rt_constraints_mutex);
10346
10347 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010348}
10349
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010350int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
10351{
10352 u64 rt_runtime, rt_period;
10353
10354 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
10355 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
10356 if (rt_runtime_us < 0)
10357 rt_runtime = RUNTIME_INF;
10358
10359 return tg_set_bandwidth(tg, rt_period, rt_runtime);
10360}
10361
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010362long sched_group_rt_runtime(struct task_group *tg)
10363{
10364 u64 rt_runtime_us;
10365
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010366 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010367 return -1;
10368
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010369 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010370 do_div(rt_runtime_us, NSEC_PER_USEC);
10371 return rt_runtime_us;
10372}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010373
10374int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
10375{
10376 u64 rt_runtime, rt_period;
10377
10378 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
10379 rt_runtime = tg->rt_bandwidth.rt_runtime;
10380
Raistlin619b0482008-06-26 18:54:09 +020010381 if (rt_period == 0)
10382 return -EINVAL;
10383
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010384 return tg_set_bandwidth(tg, rt_period, rt_runtime);
10385}
10386
10387long sched_group_rt_period(struct task_group *tg)
10388{
10389 u64 rt_period_us;
10390
10391 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
10392 do_div(rt_period_us, NSEC_PER_USEC);
10393 return rt_period_us;
10394}
10395
10396static int sched_rt_global_constraints(void)
10397{
Peter Zijlstra4653f802008-09-23 15:33:44 +020010398 u64 runtime, period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010399 int ret = 0;
10400
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -070010401 if (sysctl_sched_rt_period <= 0)
10402 return -EINVAL;
10403
Peter Zijlstra4653f802008-09-23 15:33:44 +020010404 runtime = global_rt_runtime();
10405 period = global_rt_period();
10406
10407 /*
10408 * Sanity check on the sysctl variables.
10409 */
10410 if (runtime > period && runtime != RUNTIME_INF)
10411 return -EINVAL;
Peter Zijlstra10b612f2008-06-19 14:22:27 +020010412
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010413 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010414 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +020010415 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +020010416 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010417 mutex_unlock(&rt_constraints_mutex);
10418
10419 return ret;
10420}
Dhaval Giani54e99122009-02-27 15:13:54 +053010421
10422int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
10423{
10424 /* Don't accept realtime tasks when there is no way for them to run */
10425 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
10426 return 0;
10427
10428 return 1;
10429}
10430
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +020010431#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010432static int sched_rt_global_constraints(void)
10433{
Peter Zijlstraac086bc2008-04-19 19:44:58 +020010434 unsigned long flags;
10435 int i;
10436
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -070010437 if (sysctl_sched_rt_period <= 0)
10438 return -EINVAL;
10439
Peter Zijlstra60aa6052009-05-05 17:50:21 +020010440 /*
10441 * There's always some RT tasks in the root group
10442 * -- migration, kstopmachine etc..
10443 */
10444 if (sysctl_sched_rt_runtime == 0)
10445 return -EBUSY;
10446
Peter Zijlstraac086bc2008-04-19 19:44:58 +020010447 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
10448 for_each_possible_cpu(i) {
10449 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
10450
10451 spin_lock(&rt_rq->rt_runtime_lock);
10452 rt_rq->rt_runtime = global_rt_runtime();
10453 spin_unlock(&rt_rq->rt_runtime_lock);
10454 }
10455 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
10456
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010457 return 0;
10458}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +020010459#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010460
10461int sched_rt_handler(struct ctl_table *table, int write,
10462 struct file *filp, void __user *buffer, size_t *lenp,
10463 loff_t *ppos)
10464{
10465 int ret;
10466 int old_period, old_runtime;
10467 static DEFINE_MUTEX(mutex);
10468
10469 mutex_lock(&mutex);
10470 old_period = sysctl_sched_rt_period;
10471 old_runtime = sysctl_sched_rt_runtime;
10472
10473 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
10474
10475 if (!ret && write) {
10476 ret = sched_rt_global_constraints();
10477 if (ret) {
10478 sysctl_sched_rt_period = old_period;
10479 sysctl_sched_rt_runtime = old_runtime;
10480 } else {
10481 def_rt_bandwidth.rt_runtime = global_rt_runtime();
10482 def_rt_bandwidth.rt_period =
10483 ns_to_ktime(global_rt_period());
10484 }
10485 }
10486 mutex_unlock(&mutex);
10487
10488 return ret;
10489}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010490
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010491#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010492
10493/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +020010494static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010495{
Paul Menage2b01dfe2007-10-24 18:23:50 +020010496 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
10497 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010498}
10499
10500static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +020010501cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010502{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +020010503 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010504
Paul Menage2b01dfe2007-10-24 18:23:50 +020010505 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010506 /* This is early initialization for the top cgroup */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010507 return &init_task_group.css;
10508 }
10509
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +020010510 parent = cgroup_tg(cgrp->parent);
10511 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010512 if (IS_ERR(tg))
10513 return ERR_PTR(-ENOMEM);
10514
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010515 return &tg->css;
10516}
10517
Ingo Molnar41a2d6c2007-12-05 15:46:09 +010010518static void
10519cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010520{
Paul Menage2b01dfe2007-10-24 18:23:50 +020010521 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010522
10523 sched_destroy_group(tg);
10524}
10525
Ingo Molnar41a2d6c2007-12-05 15:46:09 +010010526static int
10527cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
10528 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010529{
Peter Zijlstrab68aa232008-02-13 15:45:40 +010010530#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Giani54e99122009-02-27 15:13:54 +053010531 if (!sched_rt_can_attach(cgroup_tg(cgrp), tsk))
Peter Zijlstrab68aa232008-02-13 15:45:40 +010010532 return -EINVAL;
10533#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010534 /* We don't support RT-tasks being in separate groups */
10535 if (tsk->sched_class != &fair_sched_class)
10536 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +010010537#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010538
10539 return 0;
10540}
10541
10542static void
Paul Menage2b01dfe2007-10-24 18:23:50 +020010543cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010544 struct cgroup *old_cont, struct task_struct *tsk)
10545{
10546 sched_move_task(tsk);
10547}
10548
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010549#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -070010550static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +020010551 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010552{
Paul Menage2b01dfe2007-10-24 18:23:50 +020010553 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010554}
10555
Paul Menagef4c753b2008-04-29 00:59:56 -070010556static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010557{
Paul Menage2b01dfe2007-10-24 18:23:50 +020010558 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010559
10560 return (u64) tg->shares;
10561}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +020010562#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010563
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010564#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -070010565static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -070010566 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010567{
Paul Menage06ecb272008-04-29 01:00:06 -070010568 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010569}
10570
Paul Menage06ecb272008-04-29 01:00:06 -070010571static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010572{
Paul Menage06ecb272008-04-29 01:00:06 -070010573 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010574}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010575
10576static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
10577 u64 rt_period_us)
10578{
10579 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
10580}
10581
10582static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
10583{
10584 return sched_group_rt_period(cgroup_tg(cgrp));
10585}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +020010586#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010587
Paul Menagefe5c7cc2007-10-29 21:18:11 +010010588static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010589#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +010010590 {
10591 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -070010592 .read_u64 = cpu_shares_read_u64,
10593 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +010010594 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010595#endif
10596#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010597 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010010598 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -070010599 .read_s64 = cpu_rt_runtime_read,
10600 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +010010601 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010602 {
10603 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -070010604 .read_u64 = cpu_rt_period_read_uint,
10605 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +020010606 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010607#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010608};
10609
10610static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
10611{
Paul Menagefe5c7cc2007-10-29 21:18:11 +010010612 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010613}
10614
10615struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +010010616 .name = "cpu",
10617 .create = cpu_cgroup_create,
10618 .destroy = cpu_cgroup_destroy,
10619 .can_attach = cpu_cgroup_can_attach,
10620 .attach = cpu_cgroup_attach,
10621 .populate = cpu_cgroup_populate,
10622 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -070010623 .early_init = 1,
10624};
10625
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010010626#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010627
10628#ifdef CONFIG_CGROUP_CPUACCT
10629
10630/*
10631 * CPU accounting code for task groups.
10632 *
10633 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
10634 * (balbir@in.ibm.com).
10635 */
10636
Bharata B Rao934352f2008-11-10 20:41:13 +053010637/* track cpu usage of a group of tasks and its child groups */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010638struct cpuacct {
10639 struct cgroup_subsys_state css;
10640 /* cpuusage holds pointer to a u64-type object on every cpu */
10641 u64 *cpuusage;
Bharata B Raoef12fef2009-03-31 10:02:22 +053010642 struct percpu_counter cpustat[CPUACCT_STAT_NSTATS];
Bharata B Rao934352f2008-11-10 20:41:13 +053010643 struct cpuacct *parent;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010644};
10645
10646struct cgroup_subsys cpuacct_subsys;
10647
10648/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +053010649static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010650{
Dhaval Giani32cd7562008-02-29 10:02:43 +053010651 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010652 struct cpuacct, css);
10653}
10654
10655/* return cpu accounting group to which this task belongs */
10656static inline struct cpuacct *task_ca(struct task_struct *tsk)
10657{
10658 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
10659 struct cpuacct, css);
10660}
10661
10662/* create a new cpu accounting group */
10663static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +053010664 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010665{
10666 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
Bharata B Raoef12fef2009-03-31 10:02:22 +053010667 int i;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010668
10669 if (!ca)
Bharata B Raoef12fef2009-03-31 10:02:22 +053010670 goto out;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010671
10672 ca->cpuusage = alloc_percpu(u64);
Bharata B Raoef12fef2009-03-31 10:02:22 +053010673 if (!ca->cpuusage)
10674 goto out_free_ca;
10675
10676 for (i = 0; i < CPUACCT_STAT_NSTATS; i++)
10677 if (percpu_counter_init(&ca->cpustat[i], 0))
10678 goto out_free_counters;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010679
Bharata B Rao934352f2008-11-10 20:41:13 +053010680 if (cgrp->parent)
10681 ca->parent = cgroup_ca(cgrp->parent);
10682
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010683 return &ca->css;
Bharata B Raoef12fef2009-03-31 10:02:22 +053010684
10685out_free_counters:
10686 while (--i >= 0)
10687 percpu_counter_destroy(&ca->cpustat[i]);
10688 free_percpu(ca->cpuusage);
10689out_free_ca:
10690 kfree(ca);
10691out:
10692 return ERR_PTR(-ENOMEM);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010693}
10694
10695/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +010010696static void
Dhaval Giani32cd7562008-02-29 10:02:43 +053010697cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010698{
Dhaval Giani32cd7562008-02-29 10:02:43 +053010699 struct cpuacct *ca = cgroup_ca(cgrp);
Bharata B Raoef12fef2009-03-31 10:02:22 +053010700 int i;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010701
Bharata B Raoef12fef2009-03-31 10:02:22 +053010702 for (i = 0; i < CPUACCT_STAT_NSTATS; i++)
10703 percpu_counter_destroy(&ca->cpustat[i]);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010704 free_percpu(ca->cpuusage);
10705 kfree(ca);
10706}
10707
Ken Chen720f5492008-12-15 22:02:01 -080010708static u64 cpuacct_cpuusage_read(struct cpuacct *ca, int cpu)
10709{
Rusty Russellb36128c2009-02-20 16:29:08 +090010710 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Ken Chen720f5492008-12-15 22:02:01 -080010711 u64 data;
10712
10713#ifndef CONFIG_64BIT
10714 /*
10715 * Take rq->lock to make 64-bit read safe on 32-bit platforms.
10716 */
10717 spin_lock_irq(&cpu_rq(cpu)->lock);
10718 data = *cpuusage;
10719 spin_unlock_irq(&cpu_rq(cpu)->lock);
10720#else
10721 data = *cpuusage;
10722#endif
10723
10724 return data;
10725}
10726
10727static void cpuacct_cpuusage_write(struct cpuacct *ca, int cpu, u64 val)
10728{
Rusty Russellb36128c2009-02-20 16:29:08 +090010729 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Ken Chen720f5492008-12-15 22:02:01 -080010730
10731#ifndef CONFIG_64BIT
10732 /*
10733 * Take rq->lock to make 64-bit write safe on 32-bit platforms.
10734 */
10735 spin_lock_irq(&cpu_rq(cpu)->lock);
10736 *cpuusage = val;
10737 spin_unlock_irq(&cpu_rq(cpu)->lock);
10738#else
10739 *cpuusage = val;
10740#endif
10741}
10742
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010743/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +053010744static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010745{
Dhaval Giani32cd7562008-02-29 10:02:43 +053010746 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010747 u64 totalcpuusage = 0;
10748 int i;
10749
Ken Chen720f5492008-12-15 22:02:01 -080010750 for_each_present_cpu(i)
10751 totalcpuusage += cpuacct_cpuusage_read(ca, i);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010752
10753 return totalcpuusage;
10754}
10755
Dhaval Giani0297b802008-02-29 10:02:44 +053010756static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
10757 u64 reset)
10758{
10759 struct cpuacct *ca = cgroup_ca(cgrp);
10760 int err = 0;
10761 int i;
10762
10763 if (reset) {
10764 err = -EINVAL;
10765 goto out;
10766 }
10767
Ken Chen720f5492008-12-15 22:02:01 -080010768 for_each_present_cpu(i)
10769 cpuacct_cpuusage_write(ca, i, 0);
Dhaval Giani0297b802008-02-29 10:02:44 +053010770
Dhaval Giani0297b802008-02-29 10:02:44 +053010771out:
10772 return err;
10773}
10774
Ken Chene9515c32008-12-15 22:04:15 -080010775static int cpuacct_percpu_seq_read(struct cgroup *cgroup, struct cftype *cft,
10776 struct seq_file *m)
10777{
10778 struct cpuacct *ca = cgroup_ca(cgroup);
10779 u64 percpu;
10780 int i;
10781
10782 for_each_present_cpu(i) {
10783 percpu = cpuacct_cpuusage_read(ca, i);
10784 seq_printf(m, "%llu ", (unsigned long long) percpu);
10785 }
10786 seq_printf(m, "\n");
10787 return 0;
10788}
10789
Bharata B Raoef12fef2009-03-31 10:02:22 +053010790static const char *cpuacct_stat_desc[] = {
10791 [CPUACCT_STAT_USER] = "user",
10792 [CPUACCT_STAT_SYSTEM] = "system",
10793};
10794
10795static int cpuacct_stats_show(struct cgroup *cgrp, struct cftype *cft,
10796 struct cgroup_map_cb *cb)
10797{
10798 struct cpuacct *ca = cgroup_ca(cgrp);
10799 int i;
10800
10801 for (i = 0; i < CPUACCT_STAT_NSTATS; i++) {
10802 s64 val = percpu_counter_read(&ca->cpustat[i]);
10803 val = cputime64_to_clock_t(val);
10804 cb->fill(cb, cpuacct_stat_desc[i], val);
10805 }
10806 return 0;
10807}
10808
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010809static struct cftype files[] = {
10810 {
10811 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -070010812 .read_u64 = cpuusage_read,
10813 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010814 },
Ken Chene9515c32008-12-15 22:04:15 -080010815 {
10816 .name = "usage_percpu",
10817 .read_seq_string = cpuacct_percpu_seq_read,
10818 },
Bharata B Raoef12fef2009-03-31 10:02:22 +053010819 {
10820 .name = "stat",
10821 .read_map = cpuacct_stats_show,
10822 },
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010823};
10824
Dhaval Giani32cd7562008-02-29 10:02:43 +053010825static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010826{
Dhaval Giani32cd7562008-02-29 10:02:43 +053010827 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010828}
10829
10830/*
10831 * charge this task's execution time to its accounting group.
10832 *
10833 * called with rq->lock held.
10834 */
10835static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
10836{
10837 struct cpuacct *ca;
Bharata B Rao934352f2008-11-10 20:41:13 +053010838 int cpu;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010839
Li Zefanc40c6f82009-02-26 15:40:15 +080010840 if (unlikely(!cpuacct_subsys.active))
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010841 return;
10842
Bharata B Rao934352f2008-11-10 20:41:13 +053010843 cpu = task_cpu(tsk);
Bharata B Raoa18b83b2009-03-23 10:02:53 +053010844
10845 rcu_read_lock();
10846
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010847 ca = task_ca(tsk);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010848
Bharata B Rao934352f2008-11-10 20:41:13 +053010849 for (; ca; ca = ca->parent) {
Rusty Russellb36128c2009-02-20 16:29:08 +090010850 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010851 *cpuusage += cputime;
10852 }
Bharata B Raoa18b83b2009-03-23 10:02:53 +053010853
10854 rcu_read_unlock();
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010855}
10856
Bharata B Raoef12fef2009-03-31 10:02:22 +053010857/*
10858 * Charge the system/user time to the task's accounting group.
10859 */
10860static void cpuacct_update_stats(struct task_struct *tsk,
10861 enum cpuacct_stat_index idx, cputime_t val)
10862{
10863 struct cpuacct *ca;
10864
10865 if (unlikely(!cpuacct_subsys.active))
10866 return;
10867
10868 rcu_read_lock();
10869 ca = task_ca(tsk);
10870
10871 do {
10872 percpu_counter_add(&ca->cpustat[idx], val);
10873 ca = ca->parent;
10874 } while (ca);
10875 rcu_read_unlock();
10876}
10877
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010010878struct cgroup_subsys cpuacct_subsys = {
10879 .name = "cpuacct",
10880 .create = cpuacct_create,
10881 .destroy = cpuacct_destroy,
10882 .populate = cpuacct_populate,
10883 .subsys_id = cpuacct_subsys_id,
10884};
10885#endif /* CONFIG_CGROUP_CPUACCT */