blob: dfae1bf6d5b292e27cc6c7b6602a5d75a54dbd78 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * kernel/sched.c
3 *
4 * Kernel scheduler and related syscalls
5 *
6 * Copyright (C) 1991-2002 Linus Torvalds
7 *
8 * 1996-12-23 Modified by Dave Grothe to fix bugs in semaphores and
9 * make semaphores SMP safe
10 * 1998-11-19 Implemented schedule_timeout() and related stuff
11 * by Andrea Arcangeli
12 * 2002-01-04 New ultra-scalable O(1) scheduler by Ingo Molnar:
13 * hybrid priority-list and round-robin design with
14 * an array-switch method of distributing timeslices
15 * and per-CPU runqueues. Cleanups and useful suggestions
16 * by Davide Libenzi, preemptible kernel bits by Robert Love.
17 * 2003-09-03 Interactivity tuning by Con Kolivas.
18 * 2004-04-02 Scheduler domains code by Nick Piggin
Ingo Molnarc31f2e82007-07-09 18:52:01 +020019 * 2007-04-15 Work begun on replacing all interactivity tuning with a
20 * fair scheduling design by Con Kolivas.
21 * 2007-05-05 Load balancing (smp-nice) and other improvements
22 * by Peter Williams
23 * 2007-05-06 Interactivity improvements to CFS by Mike Galbraith
24 * 2007-07-01 Group scheduling enhancements by Srivatsa Vaddagiri
Ingo Molnarb9131762008-01-25 21:08:19 +010025 * 2007-11-29 RT balancing improvements by Steven Rostedt, Gregory Haskins,
26 * Thomas Gleixner, Mike Kravetz
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
29#include <linux/mm.h>
30#include <linux/module.h>
31#include <linux/nmi.h>
32#include <linux/init.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020033#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/highmem.h>
35#include <linux/smp_lock.h>
36#include <asm/mmu_context.h>
37#include <linux/interrupt.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080038#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/completion.h>
40#include <linux/kernel_stat.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070041#include <linux/debug_locks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/security.h>
43#include <linux/notifier.h>
44#include <linux/profile.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080045#include <linux/freezer.h>
akpm@osdl.org198e2f12006-01-12 01:05:30 -080046#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/blkdev.h>
48#include <linux/delay.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070049#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/smp.h>
51#include <linux/threads.h>
52#include <linux/timer.h>
53#include <linux/rcupdate.h>
54#include <linux/cpu.h>
55#include <linux/cpuset.h>
56#include <linux/percpu.h>
57#include <linux/kthread.h>
Alexey Dobriyanb5aadf72008-10-06 13:23:43 +040058#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/seq_file.h>
Nick Piggine692ab52007-07-26 13:40:43 +020060#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/syscalls.h>
62#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070063#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080064#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070065#include <linux/delayacct.h>
Eric Dumazet5517d862007-05-08 00:32:57 -070066#include <linux/reciprocal_div.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020067#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020068#include <linux/pagemap.h>
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010069#include <linux/hrtimer.h>
Reynes Philippe30914a52008-03-17 16:19:05 -070070#include <linux/tick.h>
Mike Travis434d53b2008-04-04 18:11:04 -070071#include <linux/bootmem.h>
Peter Zijlstraf00b45c2008-04-19 19:45:00 +020072#include <linux/debugfs.h>
73#include <linux/ctype.h>
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +020074#include <linux/ftrace.h>
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -040075#include <trace/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Eric Dumazet5517d862007-05-08 00:32:57 -070077#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020078#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Gregory Haskins6e0534f2008-05-12 21:21:01 +020080#include "sched_cpupri.h"
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/*
83 * Convert user-nice values [ -20 ... 0 ... 19 ]
84 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
85 * and back.
86 */
87#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
88#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
89#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
90
91/*
92 * 'User priority' is the nice value converted to something we
93 * can work with better when scaling various scheduler parameters,
94 * it's a [ 0 ... 39 ] range.
95 */
96#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
97#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
98#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
99
100/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100101 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100103#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200105#define NICE_0_LOAD SCHED_LOAD_SCALE
106#define NICE_0_SHIFT SCHED_LOAD_SHIFT
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 * These are the 'tuning knobs' of the scheduler:
110 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200111 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * Timeslices get refilled after they expire.
113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700115
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200116/*
117 * single value that denotes runtime == period, ie unlimited time.
118 */
119#define RUNTIME_INF ((u64)~0ULL)
120
Mathieu Desnoyers7e066fb2008-11-14 17:47:47 -0500121DEFINE_TRACE(sched_wait_task);
122DEFINE_TRACE(sched_wakeup);
123DEFINE_TRACE(sched_wakeup_new);
124DEFINE_TRACE(sched_switch);
125DEFINE_TRACE(sched_migrate_task);
126
Eric Dumazet5517d862007-05-08 00:32:57 -0700127#ifdef CONFIG_SMP
Steven Noonanfd2ab302009-01-11 01:04:22 -0800128
129static void double_rq_lock(struct rq *rq1, struct rq *rq2);
130
Eric Dumazet5517d862007-05-08 00:32:57 -0700131/*
132 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
133 * Since cpu_power is a 'constant', we can use a reciprocal divide.
134 */
135static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
136{
137 return reciprocal_divide(load, sg->reciprocal_cpu_power);
138}
139
140/*
141 * Each time a sched group cpu_power is changed,
142 * we must compute its reciprocal value
143 */
144static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
145{
146 sg->__cpu_power += val;
147 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
148}
149#endif
150
Ingo Molnare05606d2007-07-09 18:51:59 +0200151static inline int rt_policy(int policy)
152{
Roel Kluin3f33a7c2008-05-13 23:44:11 +0200153 if (unlikely(policy == SCHED_FIFO || policy == SCHED_RR))
Ingo Molnare05606d2007-07-09 18:51:59 +0200154 return 1;
155 return 0;
156}
157
158static inline int task_has_rt_policy(struct task_struct *p)
159{
160 return rt_policy(p->policy);
161}
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200164 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200166struct rt_prio_array {
167 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
168 struct list_head queue[MAX_RT_PRIO];
169};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200171struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100172 /* nests inside the rq lock: */
173 spinlock_t rt_runtime_lock;
174 ktime_t rt_period;
175 u64 rt_runtime;
176 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200177};
178
179static struct rt_bandwidth def_rt_bandwidth;
180
181static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
182
183static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
184{
185 struct rt_bandwidth *rt_b =
186 container_of(timer, struct rt_bandwidth, rt_period_timer);
187 ktime_t now;
188 int overrun;
189 int idle = 0;
190
191 for (;;) {
192 now = hrtimer_cb_get_time(timer);
193 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
194
195 if (!overrun)
196 break;
197
198 idle = do_sched_rt_period_timer(rt_b, overrun);
199 }
200
201 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
202}
203
204static
205void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
206{
207 rt_b->rt_period = ns_to_ktime(period);
208 rt_b->rt_runtime = runtime;
209
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200210 spin_lock_init(&rt_b->rt_runtime_lock);
211
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200212 hrtimer_init(&rt_b->rt_period_timer,
213 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
214 rt_b->rt_period_timer.function = sched_rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200215}
216
Krzysztof Heltc8bfff62008-09-05 23:46:19 +0200217static inline int rt_bandwidth_enabled(void)
218{
219 return sysctl_sched_rt_runtime >= 0;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200220}
221
222static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
223{
224 ktime_t now;
225
Hiroshi Shimamotocac64d02009-02-25 09:59:26 -0800226 if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200227 return;
228
229 if (hrtimer_active(&rt_b->rt_period_timer))
230 return;
231
232 spin_lock(&rt_b->rt_runtime_lock);
233 for (;;) {
234 if (hrtimer_active(&rt_b->rt_period_timer))
235 break;
236
237 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
238 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700239 hrtimer_start_expires(&rt_b->rt_period_timer,
240 HRTIMER_MODE_ABS);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200241 }
242 spin_unlock(&rt_b->rt_runtime_lock);
243}
244
245#ifdef CONFIG_RT_GROUP_SCHED
246static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
247{
248 hrtimer_cancel(&rt_b->rt_period_timer);
249}
250#endif
251
Heiko Carstens712555e2008-04-28 11:33:07 +0200252/*
253 * sched_domains_mutex serializes calls to arch_init_sched_domains,
254 * detach_destroy_domains and partition_sched_domains.
255 */
256static DEFINE_MUTEX(sched_domains_mutex);
257
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100258#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200259
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700260#include <linux/cgroup.h>
261
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200262struct cfs_rq;
263
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100264static LIST_HEAD(task_groups);
265
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200266/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200267struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100268#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700269 struct cgroup_subsys_state css;
270#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100271
Arun R Bharadwaj6c415b92008-12-01 20:49:05 +0530272#ifdef CONFIG_USER_SCHED
273 uid_t uid;
274#endif
275
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100276#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200277 /* schedulable entities of this group on each cpu */
278 struct sched_entity **se;
279 /* runqueue "owned" by this group on each cpu */
280 struct cfs_rq **cfs_rq;
281 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100282#endif
283
284#ifdef CONFIG_RT_GROUP_SCHED
285 struct sched_rt_entity **rt_se;
286 struct rt_rq **rt_rq;
287
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200288 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100289#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100290
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100291 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100292 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200293
294 struct task_group *parent;
295 struct list_head siblings;
296 struct list_head children;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200297};
298
Dhaval Giani354d60c2008-04-19 19:44:59 +0200299#ifdef CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200300
Arun R Bharadwaj6c415b92008-12-01 20:49:05 +0530301/* Helper function to pass uid information to create_sched_user() */
302void set_tg_uid(struct user_struct *user)
303{
304 user->tg->uid = user->uid;
305}
306
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200307/*
308 * Root task group.
309 * Every UID task group (including init_task_group aka UID-0) will
310 * be a child to this group.
311 */
312struct task_group root_task_group;
313
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100314#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200315/* Default task group's sched entity on each cpu */
316static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
317/* Default task group's cfs_rq on each cpu */
318static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200319#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100320
321#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100322static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
323static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200324#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +0200325#else /* !CONFIG_USER_SCHED */
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200326#define root_task_group init_task_group
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +0200327#endif /* CONFIG_USER_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100328
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100329/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100330 * a task group's cpu shares.
331 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100332static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100333
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100334#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100335#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100336# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200337#else /* !CONFIG_USER_SCHED */
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100338# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200339#endif /* CONFIG_USER_SCHED */
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200340
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800341/*
Lai Jiangshan2e084782008-06-12 16:42:58 +0800342 * A weight of 0 or 1 can cause arithmetics problems.
343 * A weight of a cfs_rq is the sum of weights of which entities
344 * are queued on this cfs_rq, so a weight of a entity should not be
345 * too large, so as the shares value of a task group.
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800346 * (The default weight is 1024 - so there's no practical
347 * limitation from this.)
348 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200349#define MIN_SHARES 2
Lai Jiangshan2e084782008-06-12 16:42:58 +0800350#define MAX_SHARES (1UL << 18)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200351
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100352static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100353#endif
354
355/* Default task group.
356 * Every task in system belong to this group at bootup.
357 */
Mike Travis434d53b2008-04-04 18:11:04 -0700358struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200359
360/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200361static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200362{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200363 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200364
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100365#ifdef CONFIG_USER_SCHED
David Howellsc69e8d92008-11-14 10:39:19 +1100366 rcu_read_lock();
367 tg = __task_cred(p)->user->tg;
368 rcu_read_unlock();
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100369#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700370 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
371 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200372#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100373 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200374#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200375 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200376}
377
378/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100379static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200380{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100381#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100382 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
383 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100384#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100385
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100386#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100387 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
388 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100389#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200390}
391
392#else
393
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100394static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Peter Zijlstra83378262008-06-27 13:41:37 +0200395static inline struct task_group *task_group(struct task_struct *p)
396{
397 return NULL;
398}
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200399
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100400#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200401
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200402/* CFS-related fields in a runqueue */
403struct cfs_rq {
404 struct load_weight load;
405 unsigned long nr_running;
406
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200407 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200408 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200409
410 struct rb_root tasks_timeline;
411 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200412
413 struct list_head tasks;
414 struct list_head *balance_iterator;
415
416 /*
417 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200418 * It is set to NULL otherwise (i.e when none are currently running).
419 */
Peter Zijlstra47932412008-11-04 21:25:09 +0100420 struct sched_entity *curr, *next, *last;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200421
Peter Zijlstra5ac5c4d2008-11-10 10:46:32 +0100422 unsigned int nr_spread_over;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200423
Ingo Molnar62160e32007-10-15 17:00:03 +0200424#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200425 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
426
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100427 /*
428 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200429 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
430 * (like users, containers etc.)
431 *
432 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
433 * list is used during load balance.
434 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100435 struct list_head leaf_cfs_rq_list;
436 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200437
438#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200439 /*
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200440 * the part of load.weight contributed by tasks
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200441 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200442 unsigned long task_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200443
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200444 /*
445 * h_load = weight * f(tg)
446 *
447 * Where f(tg) is the recursive weight fraction assigned to
448 * this group.
449 */
450 unsigned long h_load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200451
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200452 /*
453 * this cpu's part of tg->shares
454 */
455 unsigned long shares;
Peter Zijlstraf1d239f2008-06-27 13:41:38 +0200456
457 /*
458 * load.weight at the time we set shares
459 */
460 unsigned long rq_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200461#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200462#endif
463};
464
465/* Real-Time classes' related field in a runqueue: */
466struct rt_rq {
467 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100468 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100469#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -0500470 struct {
471 int curr; /* highest queued rt task prio */
Gregory Haskins398a1532009-01-14 09:10:04 -0500472#ifdef CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -0500473 int next; /* next highest */
Gregory Haskins398a1532009-01-14 09:10:04 -0500474#endif
Gregory Haskinse864c492008-12-29 09:39:49 -0500475 } highest_prio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100476#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100477#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100478 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100479 int overloaded;
Gregory Haskins917b6272008-12-29 09:39:53 -0500480 struct plist_head pushable_tasks;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100481#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100482 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100483 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200484 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100485 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200486 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100487
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100488#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100489 unsigned long rt_nr_boosted;
490
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100491 struct rq *rq;
492 struct list_head leaf_rt_rq_list;
493 struct task_group *tg;
494 struct sched_rt_entity *rt_se;
495#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200496};
497
Gregory Haskins57d885f2008-01-25 21:08:18 +0100498#ifdef CONFIG_SMP
499
500/*
501 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100502 * variables. Each exclusive cpuset essentially defines an island domain by
503 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100504 * exclusive cpuset is created, we also create and attach a new root-domain
505 * object.
506 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100507 */
508struct root_domain {
509 atomic_t refcount;
Rusty Russellc6c49272008-11-25 02:35:05 +1030510 cpumask_var_t span;
511 cpumask_var_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100512
Ingo Molnar0eab9142008-01-25 21:08:19 +0100513 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100514 * The "RT overload" flag: it gets set if a CPU has more than
515 * one runnable RT task.
516 */
Rusty Russellc6c49272008-11-25 02:35:05 +1030517 cpumask_var_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100518 atomic_t rto_count;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200519#ifdef CONFIG_SMP
520 struct cpupri cpupri;
521#endif
Vaidyanathan Srinivasan7a09b1a2008-12-18 23:26:22 +0530522#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
523 /*
524 * Preferred wake up cpu nominated by sched_mc balance that will be
525 * used when most cpus are idle in the system indicating overall very
526 * low system utilisation. Triggered at POWERSAVINGS_BALANCE_WAKEUP(2)
527 */
528 unsigned int sched_mc_preferred_wakeup_cpu;
529#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +0100530};
531
Gregory Haskinsdc938522008-01-25 21:08:26 +0100532/*
533 * By default the system creates a single root-domain with all cpus as
534 * members (mimicking the global state we have today).
535 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100536static struct root_domain def_root_domain;
537
538#endif
539
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200540/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 * This is the main, per-CPU runqueue data structure.
542 *
543 * Locking rule: those places that want to lock multiple runqueues
544 * (such as the load balancing or the thread migration code), lock
545 * acquire operations must be ordered by ascending &runqueue.
546 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700547struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200548 /* runqueue lock: */
549 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 /*
552 * nr_running and cpu_load should be in the same cacheline because
553 * remote CPUs use both these fields when doing load calculation.
554 */
555 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200556 #define CPU_LOAD_IDX_MAX 5
557 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700558#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200559 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700560 unsigned char in_nohz_recently;
561#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200562 /* capture load from *all* tasks on this cpu: */
563 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200564 unsigned long nr_load_updates;
565 u64 nr_switches;
566
567 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100568 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100569
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200570#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200571 /* list of leaf cfs_rq on this cpu: */
572 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100573#endif
574#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100575 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 /*
579 * This is part of a global counter where only the total sum
580 * over all CPUs matters. A task can increase this counter on
581 * one CPU and if it got migrated afterwards it may decrease
582 * it on another CPU. Always updated under the runqueue lock:
583 */
584 unsigned long nr_uninterruptible;
585
Ingo Molnar36c8b582006-07-03 00:25:41 -0700586 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800587 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200589
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200590 u64 clock;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 atomic_t nr_iowait;
593
594#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100595 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 struct sched_domain *sd;
597
Henrik Austada0a522c2009-02-13 20:35:45 +0100598 unsigned char idle_at_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* For active balancing */
600 int active_balance;
601 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200602 /* cpu of this runqueue: */
603 int cpu;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -0400604 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Peter Zijlstraa8a51d52008-06-27 13:41:26 +0200606 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Ingo Molnar36c8b582006-07-03 00:25:41 -0700608 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 struct list_head migration_queue;
610#endif
611
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100612#ifdef CONFIG_SCHED_HRTICK
Peter Zijlstra31656512008-07-18 18:01:23 +0200613#ifdef CONFIG_SMP
614 int hrtick_csd_pending;
615 struct call_single_data hrtick_csd;
616#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100617 struct hrtimer hrtick_timer;
618#endif
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620#ifdef CONFIG_SCHEDSTATS
621 /* latency stats */
622 struct sched_info rq_sched_info;
Ken Chen9c2c4802008-12-16 23:41:22 -0800623 unsigned long long rq_cpu_time;
624 /* could above be rq->cfs_rq.exec_clock + rq->rt_rq.rt_runtime ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200627 unsigned int yld_exp_empty;
628 unsigned int yld_act_empty;
629 unsigned int yld_both_empty;
630 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200633 unsigned int sched_switch;
634 unsigned int sched_count;
635 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200638 unsigned int ttwu_count;
639 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200640
641 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200642 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643#endif
644};
645
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700646static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Peter Zijlstra15afe092008-09-20 23:38:02 +0200648static inline void check_preempt_curr(struct rq *rq, struct task_struct *p, int sync)
Ingo Molnardd41f592007-07-09 18:51:59 +0200649{
Peter Zijlstra15afe092008-09-20 23:38:02 +0200650 rq->curr->sched_class->check_preempt_curr(rq, p, sync);
Ingo Molnardd41f592007-07-09 18:51:59 +0200651}
652
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700653static inline int cpu_of(struct rq *rq)
654{
655#ifdef CONFIG_SMP
656 return rq->cpu;
657#else
658 return 0;
659#endif
660}
661
Ingo Molnar20d315d2007-07-09 18:51:58 +0200662/*
Nick Piggin674311d2005-06-25 14:57:27 -0700663 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700664 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700665 *
666 * The domain tree of any CPU may only be accessed from within
667 * preempt-disabled sections.
668 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700669#define for_each_domain(cpu, __sd) \
670 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
673#define this_rq() (&__get_cpu_var(runqueues))
674#define task_rq(p) cpu_rq(task_cpu(p))
675#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
676
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200677static inline void update_rq_clock(struct rq *rq)
678{
679 rq->clock = sched_clock_cpu(cpu_of(rq));
680}
681
Ingo Molnare436d802007-07-19 21:28:35 +0200682/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200683 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
684 */
685#ifdef CONFIG_SCHED_DEBUG
686# define const_debug __read_mostly
687#else
688# define const_debug static const
689#endif
690
Ingo Molnar017730c2008-05-12 21:20:52 +0200691/**
692 * runqueue_is_locked
693 *
694 * Returns true if the current cpu runqueue is locked.
695 * This interface allows printk to be called with the runqueue lock
696 * held and know whether or not it is OK to wake up the klogd.
697 */
698int runqueue_is_locked(void)
699{
700 int cpu = get_cpu();
701 struct rq *rq = cpu_rq(cpu);
702 int ret;
703
704 ret = spin_is_locked(&rq->lock);
705 put_cpu();
706 return ret;
707}
708
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200709/*
710 * Debugging: various feature bits
711 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200712
713#define SCHED_FEAT(name, enabled) \
714 __SCHED_FEAT_##name ,
715
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200716enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200717#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200718};
719
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200720#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200721
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200722#define SCHED_FEAT(name, enabled) \
723 (1UL << __SCHED_FEAT_##name) * enabled |
724
725const_debug unsigned int sysctl_sched_features =
726#include "sched_features.h"
727 0;
728
729#undef SCHED_FEAT
730
731#ifdef CONFIG_SCHED_DEBUG
732#define SCHED_FEAT(name, enabled) \
733 #name ,
734
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700735static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200736#include "sched_features.h"
737 NULL
738};
739
740#undef SCHED_FEAT
741
Li Zefan34f3a812008-10-30 15:23:32 +0800742static int sched_feat_show(struct seq_file *m, void *v)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200743{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200744 int i;
745
746 for (i = 0; sched_feat_names[i]; i++) {
Li Zefan34f3a812008-10-30 15:23:32 +0800747 if (!(sysctl_sched_features & (1UL << i)))
748 seq_puts(m, "NO_");
749 seq_printf(m, "%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200750 }
Li Zefan34f3a812008-10-30 15:23:32 +0800751 seq_puts(m, "\n");
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200752
Li Zefan34f3a812008-10-30 15:23:32 +0800753 return 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200754}
755
756static ssize_t
757sched_feat_write(struct file *filp, const char __user *ubuf,
758 size_t cnt, loff_t *ppos)
759{
760 char buf[64];
761 char *cmp = buf;
762 int neg = 0;
763 int i;
764
765 if (cnt > 63)
766 cnt = 63;
767
768 if (copy_from_user(&buf, ubuf, cnt))
769 return -EFAULT;
770
771 buf[cnt] = 0;
772
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200773 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200774 neg = 1;
775 cmp += 3;
776 }
777
778 for (i = 0; sched_feat_names[i]; i++) {
779 int len = strlen(sched_feat_names[i]);
780
781 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
782 if (neg)
783 sysctl_sched_features &= ~(1UL << i);
784 else
785 sysctl_sched_features |= (1UL << i);
786 break;
787 }
788 }
789
790 if (!sched_feat_names[i])
791 return -EINVAL;
792
793 filp->f_pos += cnt;
794
795 return cnt;
796}
797
Li Zefan34f3a812008-10-30 15:23:32 +0800798static int sched_feat_open(struct inode *inode, struct file *filp)
799{
800 return single_open(filp, sched_feat_show, NULL);
801}
802
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200803static struct file_operations sched_feat_fops = {
Li Zefan34f3a812008-10-30 15:23:32 +0800804 .open = sched_feat_open,
805 .write = sched_feat_write,
806 .read = seq_read,
807 .llseek = seq_lseek,
808 .release = single_release,
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200809};
810
811static __init int sched_init_debug(void)
812{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200813 debugfs_create_file("sched_features", 0644, NULL, NULL,
814 &sched_feat_fops);
815
816 return 0;
817}
818late_initcall(sched_init_debug);
819
820#endif
821
822#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200823
824/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100825 * Number of tasks to iterate in a single balance run.
826 * Limited because this is done with IRQs disabled.
827 */
828const_debug unsigned int sysctl_sched_nr_migrate = 32;
829
830/*
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200831 * ratelimit for updating the group shares.
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200832 * default: 0.25ms
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200833 */
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200834unsigned int sysctl_sched_shares_ratelimit = 250000;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200835
836/*
Peter Zijlstraffda12a2008-10-17 19:27:02 +0200837 * Inject some fuzzyness into changing the per-cpu group shares
838 * this avoids remote rq-locks at the expense of fairness.
839 * default: 4
840 */
841unsigned int sysctl_sched_shares_thresh = 4;
842
843/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100844 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100845 * default: 1s
846 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100847unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100848
Ingo Molnar6892b752008-02-13 14:02:36 +0100849static __read_mostly int scheduler_running;
850
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100851/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100852 * part of the period that we allow rt tasks to run in us.
853 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100854 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100855int sysctl_sched_rt_runtime = 950000;
856
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200857static inline u64 global_rt_period(void)
858{
859 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
860}
861
862static inline u64 global_rt_runtime(void)
863{
roel kluine26873b2008-07-22 16:51:15 -0400864 if (sysctl_sched_rt_runtime < 0)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200865 return RUNTIME_INF;
866
867 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
868}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700871# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700873#ifndef finish_arch_switch
874# define finish_arch_switch(prev) do { } while (0)
875#endif
876
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100877static inline int task_current(struct rq *rq, struct task_struct *p)
878{
879 return rq->curr == p;
880}
881
Nick Piggin4866cde2005-06-25 14:57:23 -0700882#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700883static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700884{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100885 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700886}
887
Ingo Molnar70b97a72006-07-03 00:25:42 -0700888static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700889{
890}
891
Ingo Molnar70b97a72006-07-03 00:25:42 -0700892static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700893{
Ingo Molnarda04c032005-09-13 11:17:59 +0200894#ifdef CONFIG_DEBUG_SPINLOCK
895 /* this is a valid case when another task releases the spinlock */
896 rq->lock.owner = current;
897#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700898 /*
899 * If we are tracking spinlock dependencies then we have to
900 * fix up the runqueue lock - which gets 'carried over' from
901 * prev into current:
902 */
903 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
904
Nick Piggin4866cde2005-06-25 14:57:23 -0700905 spin_unlock_irq(&rq->lock);
906}
907
908#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700909static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700910{
911#ifdef CONFIG_SMP
912 return p->oncpu;
913#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100914 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700915#endif
916}
917
Ingo Molnar70b97a72006-07-03 00:25:42 -0700918static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700919{
920#ifdef CONFIG_SMP
921 /*
922 * We can optimise this out completely for !SMP, because the
923 * SMP rebalancing from interrupt is the only thing that cares
924 * here.
925 */
926 next->oncpu = 1;
927#endif
928#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
929 spin_unlock_irq(&rq->lock);
930#else
931 spin_unlock(&rq->lock);
932#endif
933}
934
Ingo Molnar70b97a72006-07-03 00:25:42 -0700935static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700936{
937#ifdef CONFIG_SMP
938 /*
939 * After ->oncpu is cleared, the task can be moved to a different CPU.
940 * We must ensure this doesn't happen until the switch is completely
941 * finished.
942 */
943 smp_wmb();
944 prev->oncpu = 0;
945#endif
946#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
947 local_irq_enable();
948#endif
949}
950#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700953 * __task_rq_lock - lock the runqueue a given task resides on.
954 * Must be called interrupts disabled.
955 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700956static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700957 __acquires(rq->lock)
958{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200959 for (;;) {
960 struct rq *rq = task_rq(p);
961 spin_lock(&rq->lock);
962 if (likely(rq == task_rq(p)))
963 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700964 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700965 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700966}
967
968/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100970 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 * explicitly disabling preemption.
972 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700973static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 __acquires(rq->lock)
975{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700976 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Andi Kleen3a5c3592007-10-15 17:00:14 +0200978 for (;;) {
979 local_irq_save(*flags);
980 rq = task_rq(p);
981 spin_lock(&rq->lock);
982 if (likely(rq == task_rq(p)))
983 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986}
987
Oleg Nesterovad474ca2008-11-10 15:39:30 +0100988void task_rq_unlock_wait(struct task_struct *p)
989{
990 struct rq *rq = task_rq(p);
991
992 smp_mb(); /* spin-unlock-wait is not a full memory barrier */
993 spin_unlock_wait(&rq->lock);
994}
995
Alexey Dobriyana9957442007-10-15 17:00:13 +0200996static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700997 __releases(rq->lock)
998{
999 spin_unlock(&rq->lock);
1000}
1001
Ingo Molnar70b97a72006-07-03 00:25:42 -07001002static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 __releases(rq->lock)
1004{
1005 spin_unlock_irqrestore(&rq->lock, *flags);
1006}
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -08001009 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001011static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 __acquires(rq->lock)
1013{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001014 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 local_irq_disable();
1017 rq = this_rq();
1018 spin_lock(&rq->lock);
1019
1020 return rq;
1021}
1022
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001023#ifdef CONFIG_SCHED_HRTICK
1024/*
1025 * Use HR-timers to deliver accurate preemption points.
1026 *
1027 * Its all a bit involved since we cannot program an hrt while holding the
1028 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1029 * reschedule event.
1030 *
1031 * When we get rescheduled we reprogram the hrtick_timer outside of the
1032 * rq->lock.
1033 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001034
1035/*
1036 * Use hrtick when:
1037 * - enabled by features
1038 * - hrtimer is actually high res
1039 */
1040static inline int hrtick_enabled(struct rq *rq)
1041{
1042 if (!sched_feat(HRTICK))
1043 return 0;
Ingo Molnarba420592008-07-20 11:02:06 +02001044 if (!cpu_active(cpu_of(rq)))
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001045 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001046 return hrtimer_is_hres_active(&rq->hrtick_timer);
1047}
1048
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001049static void hrtick_clear(struct rq *rq)
1050{
1051 if (hrtimer_active(&rq->hrtick_timer))
1052 hrtimer_cancel(&rq->hrtick_timer);
1053}
1054
1055/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001056 * High-resolution timer tick.
1057 * Runs from hardirq context with interrupts disabled.
1058 */
1059static enum hrtimer_restart hrtick(struct hrtimer *timer)
1060{
1061 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1062
1063 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1064
1065 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001066 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001067 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1068 spin_unlock(&rq->lock);
1069
1070 return HRTIMER_NORESTART;
1071}
1072
Rabin Vincent95e904c2008-05-11 05:55:33 +05301073#ifdef CONFIG_SMP
Peter Zijlstra31656512008-07-18 18:01:23 +02001074/*
1075 * called from hardirq (IPI) context
1076 */
1077static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001078{
Peter Zijlstra31656512008-07-18 18:01:23 +02001079 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001080
Peter Zijlstra31656512008-07-18 18:01:23 +02001081 spin_lock(&rq->lock);
1082 hrtimer_restart(&rq->hrtick_timer);
1083 rq->hrtick_csd_pending = 0;
1084 spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001085}
1086
Peter Zijlstra31656512008-07-18 18:01:23 +02001087/*
1088 * Called to set the hrtick timer state.
1089 *
1090 * called with rq->lock held and irqs disabled
1091 */
1092static void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001093{
Peter Zijlstra31656512008-07-18 18:01:23 +02001094 struct hrtimer *timer = &rq->hrtick_timer;
1095 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001096
Arjan van de Vencc584b22008-09-01 15:02:30 -07001097 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +02001098
1099 if (rq == this_rq()) {
1100 hrtimer_restart(timer);
1101 } else if (!rq->hrtick_csd_pending) {
1102 __smp_call_function_single(cpu_of(rq), &rq->hrtick_csd);
1103 rq->hrtick_csd_pending = 1;
1104 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001105}
1106
1107static int
1108hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1109{
1110 int cpu = (int)(long)hcpu;
1111
1112 switch (action) {
1113 case CPU_UP_CANCELED:
1114 case CPU_UP_CANCELED_FROZEN:
1115 case CPU_DOWN_PREPARE:
1116 case CPU_DOWN_PREPARE_FROZEN:
1117 case CPU_DEAD:
1118 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +02001119 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001120 return NOTIFY_OK;
1121 }
1122
1123 return NOTIFY_DONE;
1124}
1125
Rakib Mullickfa748202008-09-22 14:55:45 -07001126static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001127{
1128 hotcpu_notifier(hotplug_hrtick, 0);
1129}
Peter Zijlstra31656512008-07-18 18:01:23 +02001130#else
1131/*
1132 * Called to set the hrtick timer state.
1133 *
1134 * called with rq->lock held and irqs disabled
1135 */
1136static void hrtick_start(struct rq *rq, u64 delay)
1137{
1138 hrtimer_start(&rq->hrtick_timer, ns_to_ktime(delay), HRTIMER_MODE_REL);
1139}
1140
Andrew Morton006c75f2008-09-22 14:55:46 -07001141static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +02001142{
1143}
Rabin Vincent95e904c2008-05-11 05:55:33 +05301144#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001145
1146static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001147{
Peter Zijlstra31656512008-07-18 18:01:23 +02001148#ifdef CONFIG_SMP
1149 rq->hrtick_csd_pending = 0;
1150
1151 rq->hrtick_csd.flags = 0;
1152 rq->hrtick_csd.func = __hrtick_start;
1153 rq->hrtick_csd.info = rq;
1154#endif
1155
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001156 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1157 rq->hrtick_timer.function = hrtick;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001158}
Andrew Morton006c75f2008-09-22 14:55:46 -07001159#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001160static inline void hrtick_clear(struct rq *rq)
1161{
1162}
1163
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001164static inline void init_rq_hrtick(struct rq *rq)
1165{
1166}
1167
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001168static inline void init_hrtick(void)
1169{
1170}
Andrew Morton006c75f2008-09-22 14:55:46 -07001171#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001172
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001173/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001174 * resched_task - mark a task 'to be rescheduled now'.
1175 *
1176 * On UP this means the setting of the need_resched flag, on SMP it
1177 * might also involve a cross-CPU call to trigger the scheduler on
1178 * the target CPU.
1179 */
1180#ifdef CONFIG_SMP
1181
1182#ifndef tsk_is_polling
1183#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1184#endif
1185
Peter Zijlstra31656512008-07-18 18:01:23 +02001186static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001187{
1188 int cpu;
1189
1190 assert_spin_locked(&task_rq(p)->lock);
1191
Peter Zijlstra31656512008-07-18 18:01:23 +02001192 if (unlikely(test_tsk_thread_flag(p, TIF_NEED_RESCHED)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001193 return;
1194
Peter Zijlstra31656512008-07-18 18:01:23 +02001195 set_tsk_thread_flag(p, TIF_NEED_RESCHED);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001196
1197 cpu = task_cpu(p);
1198 if (cpu == smp_processor_id())
1199 return;
1200
1201 /* NEED_RESCHED must be visible before we test polling */
1202 smp_mb();
1203 if (!tsk_is_polling(p))
1204 smp_send_reschedule(cpu);
1205}
1206
1207static void resched_cpu(int cpu)
1208{
1209 struct rq *rq = cpu_rq(cpu);
1210 unsigned long flags;
1211
1212 if (!spin_trylock_irqsave(&rq->lock, flags))
1213 return;
1214 resched_task(cpu_curr(cpu));
1215 spin_unlock_irqrestore(&rq->lock, flags);
1216}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001217
1218#ifdef CONFIG_NO_HZ
1219/*
1220 * When add_timer_on() enqueues a timer into the timer wheel of an
1221 * idle CPU then this timer might expire before the next timer event
1222 * which is scheduled to wake up that CPU. In case of a completely
1223 * idle system the next event might even be infinite time into the
1224 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1225 * leaves the inner idle loop so the newly added timer is taken into
1226 * account when the CPU goes back to idle and evaluates the timer
1227 * wheel for the next timer event.
1228 */
1229void wake_up_idle_cpu(int cpu)
1230{
1231 struct rq *rq = cpu_rq(cpu);
1232
1233 if (cpu == smp_processor_id())
1234 return;
1235
1236 /*
1237 * This is safe, as this function is called with the timer
1238 * wheel base lock of (cpu) held. When the CPU is on the way
1239 * to idle and has not yet set rq->curr to idle then it will
1240 * be serialized on the timer wheel base lock and take the new
1241 * timer into account automatically.
1242 */
1243 if (rq->curr != rq->idle)
1244 return;
1245
1246 /*
1247 * We can set TIF_RESCHED on the idle task of the other CPU
1248 * lockless. The worst case is that the other CPU runs the
1249 * idle task through an additional NOOP schedule()
1250 */
1251 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1252
1253 /* NEED_RESCHED must be visible before we test polling */
1254 smp_mb();
1255 if (!tsk_is_polling(rq->idle))
1256 smp_send_reschedule(cpu);
1257}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001258#endif /* CONFIG_NO_HZ */
Thomas Gleixner06d83082008-03-22 09:20:24 +01001259
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001260#else /* !CONFIG_SMP */
Peter Zijlstra31656512008-07-18 18:01:23 +02001261static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001262{
1263 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001264 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001265}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001266#endif /* CONFIG_SMP */
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001267
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001268#if BITS_PER_LONG == 32
1269# define WMULT_CONST (~0UL)
1270#else
1271# define WMULT_CONST (1UL << 32)
1272#endif
1273
1274#define WMULT_SHIFT 32
1275
Ingo Molnar194081e2007-08-09 11:16:51 +02001276/*
1277 * Shift right and round:
1278 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001279#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001280
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001281/*
1282 * delta *= weight / lw
1283 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001284static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001285calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1286 struct load_weight *lw)
1287{
1288 u64 tmp;
1289
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001290 if (!lw->inv_weight) {
1291 if (BITS_PER_LONG > 32 && unlikely(lw->weight >= WMULT_CONST))
1292 lw->inv_weight = 1;
1293 else
1294 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)
1295 / (lw->weight+1);
1296 }
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001297
1298 tmp = (u64)delta_exec * weight;
1299 /*
1300 * Check whether we'd overflow the 64-bit multiplication:
1301 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001302 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001303 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001304 WMULT_SHIFT/2);
1305 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001306 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001307
Ingo Molnarecf691d2007-08-02 17:41:40 +02001308 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001309}
1310
Ingo Molnar10919852007-10-15 17:00:04 +02001311static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001312{
1313 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001314 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001315}
1316
Ingo Molnar10919852007-10-15 17:00:04 +02001317static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001318{
1319 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001320 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001321}
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001324 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1325 * of tasks with abnormal "nice" values across CPUs the contribution that
1326 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001327 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001328 * scaled version of the new time slice allocation that they receive on time
1329 * slice expiry etc.
1330 */
1331
Peter Zijlstracce7ade2009-01-15 14:53:37 +01001332#define WEIGHT_IDLEPRIO 3
1333#define WMULT_IDLEPRIO 1431655765
Ingo Molnardd41f592007-07-09 18:51:59 +02001334
1335/*
1336 * Nice levels are multiplicative, with a gentle 10% change for every
1337 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1338 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1339 * that remained on nice 0.
1340 *
1341 * The "10% effect" is relative and cumulative: from _any_ nice level,
1342 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001343 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1344 * If a task goes up by ~10% and another task goes down by ~10% then
1345 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001346 */
1347static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001348 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1349 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1350 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1351 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1352 /* 0 */ 1024, 820, 655, 526, 423,
1353 /* 5 */ 335, 272, 215, 172, 137,
1354 /* 10 */ 110, 87, 70, 56, 45,
1355 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001356};
1357
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001358/*
1359 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1360 *
1361 * In cases where the weight does not change often, we can use the
1362 * precalculated inverse to speed up arithmetics by turning divisions
1363 * into multiplications:
1364 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001365static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001366 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1367 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1368 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1369 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1370 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1371 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1372 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1373 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001374};
Peter Williams2dd73a42006-06-27 02:54:34 -07001375
Ingo Molnardd41f592007-07-09 18:51:59 +02001376static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1377
1378/*
1379 * runqueue iterator, to support SMP load-balancing between different
1380 * scheduling classes, without having to expose their internal data
1381 * structures to the load-balancing proper:
1382 */
1383struct rq_iterator {
1384 void *arg;
1385 struct task_struct *(*start)(void *);
1386 struct task_struct *(*next)(void *);
1387};
1388
Peter Williamse1d14842007-10-24 18:23:51 +02001389#ifdef CONFIG_SMP
1390static unsigned long
1391balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1392 unsigned long max_load_move, struct sched_domain *sd,
1393 enum cpu_idle_type idle, int *all_pinned,
1394 int *this_best_prio, struct rq_iterator *iterator);
1395
1396static int
1397iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1398 struct sched_domain *sd, enum cpu_idle_type idle,
1399 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001400#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001401
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001402#ifdef CONFIG_CGROUP_CPUACCT
1403static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1404#else
1405static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1406#endif
1407
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001408static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1409{
1410 update_load_add(&rq->load, load);
1411}
1412
1413static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1414{
1415 update_load_sub(&rq->load, load);
1416}
1417
Ingo Molnar7940ca32008-08-19 13:40:47 +02001418#if (defined(CONFIG_SMP) && defined(CONFIG_FAIR_GROUP_SCHED)) || defined(CONFIG_RT_GROUP_SCHED)
Peter Zijlstraeb755802008-08-19 12:33:05 +02001419typedef int (*tg_visitor)(struct task_group *, void *);
1420
1421/*
1422 * Iterate the full tree, calling @down when first entering a node and @up when
1423 * leaving it for the final time.
1424 */
1425static int walk_tg_tree(tg_visitor down, tg_visitor up, void *data)
1426{
1427 struct task_group *parent, *child;
1428 int ret;
1429
1430 rcu_read_lock();
1431 parent = &root_task_group;
1432down:
1433 ret = (*down)(parent, data);
1434 if (ret)
1435 goto out_unlock;
1436 list_for_each_entry_rcu(child, &parent->children, siblings) {
1437 parent = child;
1438 goto down;
1439
1440up:
1441 continue;
1442 }
1443 ret = (*up)(parent, data);
1444 if (ret)
1445 goto out_unlock;
1446
1447 child = parent;
1448 parent = parent->parent;
1449 if (parent)
1450 goto up;
1451out_unlock:
1452 rcu_read_unlock();
1453
1454 return ret;
1455}
1456
1457static int tg_nop(struct task_group *tg, void *data)
1458{
1459 return 0;
1460}
1461#endif
1462
Gregory Haskinse7693a32008-01-25 21:08:09 +01001463#ifdef CONFIG_SMP
1464static unsigned long source_load(int cpu, int type);
1465static unsigned long target_load(int cpu, int type);
Gregory Haskinse7693a32008-01-25 21:08:09 +01001466static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001467
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001468static unsigned long cpu_avg_load_per_task(int cpu)
1469{
1470 struct rq *rq = cpu_rq(cpu);
Ingo Molnaraf6d5962008-11-29 20:45:15 +01001471 unsigned long nr_running = ACCESS_ONCE(rq->nr_running);
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001472
Steven Rostedt4cd42622008-11-26 21:04:24 -05001473 if (nr_running)
1474 rq->avg_load_per_task = rq->load.weight / nr_running;
Balbir Singha2d47772008-11-12 16:19:00 +05301475 else
1476 rq->avg_load_per_task = 0;
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001477
1478 return rq->avg_load_per_task;
1479}
1480
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001481#ifdef CONFIG_FAIR_GROUP_SCHED
1482
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001483static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1484
1485/*
1486 * Calculate and set the cpu's group shares.
1487 */
1488static void
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001489update_group_shares_cpu(struct task_group *tg, int cpu,
1490 unsigned long sd_shares, unsigned long sd_rq_weight)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001491{
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001492 unsigned long shares;
1493 unsigned long rq_weight;
1494
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001495 if (!tg->se[cpu])
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001496 return;
1497
Ken Chenec4e0e22008-11-18 22:41:57 -08001498 rq_weight = tg->cfs_rq[cpu]->rq_weight;
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001499
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001500 /*
1501 * \Sum shares * rq_weight
1502 * shares = -----------------------
1503 * \Sum rq_weight
1504 *
1505 */
Ken Chenec4e0e22008-11-18 22:41:57 -08001506 shares = (sd_shares * rq_weight) / sd_rq_weight;
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001507 shares = clamp_t(unsigned long, shares, MIN_SHARES, MAX_SHARES);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001508
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001509 if (abs(shares - tg->se[cpu]->load.weight) >
1510 sysctl_sched_shares_thresh) {
1511 struct rq *rq = cpu_rq(cpu);
1512 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001513
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001514 spin_lock_irqsave(&rq->lock, flags);
Ken Chenec4e0e22008-11-18 22:41:57 -08001515 tg->cfs_rq[cpu]->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001516
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001517 __set_se_shares(tg->se[cpu], shares);
1518 spin_unlock_irqrestore(&rq->lock, flags);
1519 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001520}
1521
1522/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001523 * Re-compute the task group their per cpu shares over the given domain.
1524 * This needs to be done in a bottom-up fashion because the rq weight of a
1525 * parent group depends on the shares of its child groups.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001526 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001527static int tg_shares_up(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001528{
Ken Chenec4e0e22008-11-18 22:41:57 -08001529 unsigned long weight, rq_weight = 0;
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001530 unsigned long shares = 0;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001531 struct sched_domain *sd = data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001532 int i;
1533
Rusty Russell758b2cd2008-11-25 02:35:04 +10301534 for_each_cpu(i, sched_domain_span(sd)) {
Ken Chenec4e0e22008-11-18 22:41:57 -08001535 /*
1536 * If there are currently no tasks on the cpu pretend there
1537 * is one of average load so that when a new task gets to
1538 * run here it will not get delayed by group starvation.
1539 */
1540 weight = tg->cfs_rq[i]->load.weight;
1541 if (!weight)
1542 weight = NICE_0_LOAD;
1543
1544 tg->cfs_rq[i]->rq_weight = weight;
1545 rq_weight += weight;
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001546 shares += tg->cfs_rq[i]->shares;
1547 }
1548
1549 if ((!shares && rq_weight) || shares > tg->shares)
1550 shares = tg->shares;
1551
1552 if (!sd->parent || !(sd->parent->flags & SD_LOAD_BALANCE))
1553 shares = tg->shares;
1554
Rusty Russell758b2cd2008-11-25 02:35:04 +10301555 for_each_cpu(i, sched_domain_span(sd))
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001556 update_group_shares_cpu(tg, i, shares, rq_weight);
Peter Zijlstraeb755802008-08-19 12:33:05 +02001557
1558 return 0;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001559}
1560
1561/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001562 * Compute the cpu's hierarchical load factor for each task group.
1563 * This needs to be done in a top-down fashion because the load of a child
1564 * group is a fraction of its parents load.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001565 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001566static int tg_load_down(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001567{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001568 unsigned long load;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001569 long cpu = (long)data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001570
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001571 if (!tg->parent) {
1572 load = cpu_rq(cpu)->load.weight;
1573 } else {
1574 load = tg->parent->cfs_rq[cpu]->h_load;
1575 load *= tg->cfs_rq[cpu]->shares;
1576 load /= tg->parent->cfs_rq[cpu]->load.weight + 1;
1577 }
1578
1579 tg->cfs_rq[cpu]->h_load = load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001580
Peter Zijlstraeb755802008-08-19 12:33:05 +02001581 return 0;
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001582}
1583
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001584static void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001585{
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001586 u64 now = cpu_clock(raw_smp_processor_id());
1587 s64 elapsed = now - sd->last_update;
1588
1589 if (elapsed >= (s64)(u64)sysctl_sched_shares_ratelimit) {
1590 sd->last_update = now;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001591 walk_tg_tree(tg_nop, tg_shares_up, sd);
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001592 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001593}
1594
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001595static void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1596{
1597 spin_unlock(&rq->lock);
1598 update_shares(sd);
1599 spin_lock(&rq->lock);
1600}
1601
Peter Zijlstraeb755802008-08-19 12:33:05 +02001602static void update_h_load(long cpu)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001603{
Peter Zijlstraeb755802008-08-19 12:33:05 +02001604 walk_tg_tree(tg_load_down, tg_nop, (void *)cpu);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001605}
1606
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001607#else
1608
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001609static inline void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001610{
1611}
1612
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001613static inline void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1614{
1615}
1616
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001617#endif
1618
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001619#ifdef CONFIG_PREEMPT
1620
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001621/*
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001622 * fair double_lock_balance: Safely acquires both rq->locks in a fair
1623 * way at the expense of forcing extra atomic operations in all
1624 * invocations. This assures that the double_lock is acquired using the
1625 * same underlying policy as the spinlock_t on this architecture, which
1626 * reduces latency compared to the unfair variant below. However, it
1627 * also adds more overhead and therefore may reduce throughput.
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001628 */
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001629static inline int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
1630 __releases(this_rq->lock)
1631 __acquires(busiest->lock)
1632 __acquires(this_rq->lock)
1633{
1634 spin_unlock(&this_rq->lock);
1635 double_rq_lock(this_rq, busiest);
1636
1637 return 1;
1638}
1639
1640#else
1641/*
1642 * Unfair double_lock_balance: Optimizes throughput at the expense of
1643 * latency by eliminating extra atomic operations when the locks are
1644 * already in proper order on entry. This favors lower cpu-ids and will
1645 * grant the double lock to lower cpus over higher ids under contention,
1646 * regardless of entry order into the function.
1647 */
1648static int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001649 __releases(this_rq->lock)
1650 __acquires(busiest->lock)
1651 __acquires(this_rq->lock)
1652{
1653 int ret = 0;
1654
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001655 if (unlikely(!spin_trylock(&busiest->lock))) {
1656 if (busiest < this_rq) {
1657 spin_unlock(&this_rq->lock);
1658 spin_lock(&busiest->lock);
1659 spin_lock_nested(&this_rq->lock, SINGLE_DEPTH_NESTING);
1660 ret = 1;
1661 } else
1662 spin_lock_nested(&busiest->lock, SINGLE_DEPTH_NESTING);
1663 }
1664 return ret;
1665}
1666
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001667#endif /* CONFIG_PREEMPT */
1668
1669/*
1670 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1671 */
1672static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
1673{
1674 if (unlikely(!irqs_disabled())) {
1675 /* printk() doesn't work good under rq->lock */
1676 spin_unlock(&this_rq->lock);
1677 BUG_ON(1);
1678 }
1679
1680 return _double_lock_balance(this_rq, busiest);
1681}
1682
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001683static inline void double_unlock_balance(struct rq *this_rq, struct rq *busiest)
1684 __releases(busiest->lock)
1685{
1686 spin_unlock(&busiest->lock);
1687 lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_);
1688}
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001689#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001690
1691#ifdef CONFIG_FAIR_GROUP_SCHED
1692static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1693{
Vegard Nossum30432092008-06-27 21:35:50 +02001694#ifdef CONFIG_SMP
Ingo Molnar34e83e82008-06-27 15:42:36 +02001695 cfs_rq->shares = shares;
1696#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001697}
1698#endif
1699
Ingo Molnardd41f592007-07-09 18:51:59 +02001700#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001701#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001702#include "sched_fair.c"
1703#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001704#ifdef CONFIG_SCHED_DEBUG
1705# include "sched_debug.c"
1706#endif
1707
1708#define sched_class_highest (&rt_sched_class)
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04001709#define for_each_class(class) \
1710 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001711
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001712static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001713{
1714 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001715}
1716
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001717static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001718{
1719 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001720}
1721
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001722static void set_load_weight(struct task_struct *p)
1723{
1724 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001725 p->se.load.weight = prio_to_weight[0] * 2;
1726 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1727 return;
1728 }
1729
1730 /*
1731 * SCHED_IDLE tasks get minimal weight:
1732 */
1733 if (p->policy == SCHED_IDLE) {
1734 p->se.load.weight = WEIGHT_IDLEPRIO;
1735 p->se.load.inv_weight = WMULT_IDLEPRIO;
1736 return;
1737 }
1738
1739 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1740 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001741}
1742
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001743static void update_avg(u64 *avg, u64 sample)
1744{
1745 s64 diff = sample - *avg;
1746 *avg += diff >> 3;
1747}
1748
Ingo Molnar8159f872007-08-09 11:16:49 +02001749static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001750{
Peter Zijlstra831451a2009-01-14 12:39:18 +01001751 if (wakeup)
1752 p->se.start_runtime = p->se.sum_exec_runtime;
1753
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001754 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001755 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001756 p->se.on_rq = 1;
1757}
1758
Ingo Molnar69be72c2007-08-09 11:16:49 +02001759static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001760{
Peter Zijlstra831451a2009-01-14 12:39:18 +01001761 if (sleep) {
1762 if (p->se.last_wakeup) {
1763 update_avg(&p->se.avg_overlap,
1764 p->se.sum_exec_runtime - p->se.last_wakeup);
1765 p->se.last_wakeup = 0;
1766 } else {
1767 update_avg(&p->se.avg_wakeup,
1768 sysctl_sched_wakeup_granularity);
1769 }
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001770 }
1771
Ankita Garg46ac22b2008-07-01 14:30:06 +05301772 sched_info_dequeued(p);
Ingo Molnarf02231e2007-08-09 11:16:48 +02001773 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001774 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001775}
1776
1777/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001778 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001779 */
Ingo Molnar14531182007-07-09 18:51:59 +02001780static inline int __normal_prio(struct task_struct *p)
1781{
Ingo Molnardd41f592007-07-09 18:51:59 +02001782 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001783}
1784
1785/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001786 * Calculate the expected normal priority: i.e. priority
1787 * without taking RT-inheritance into account. Might be
1788 * boosted by interactivity modifiers. Changes upon fork,
1789 * setprio syscalls, and whenever the interactivity
1790 * estimator recalculates.
1791 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001792static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001793{
1794 int prio;
1795
Ingo Molnare05606d2007-07-09 18:51:59 +02001796 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001797 prio = MAX_RT_PRIO-1 - p->rt_priority;
1798 else
1799 prio = __normal_prio(p);
1800 return prio;
1801}
1802
1803/*
1804 * Calculate the current priority, i.e. the priority
1805 * taken into account by the scheduler. This value might
1806 * be boosted by RT tasks, or might be boosted by
1807 * interactivity modifiers. Will be RT if the task got
1808 * RT-boosted. If not then it returns p->normal_prio.
1809 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001810static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001811{
1812 p->normal_prio = normal_prio(p);
1813 /*
1814 * If we are RT tasks or we were boosted to RT priority,
1815 * keep the priority unchanged. Otherwise, update priority
1816 * to the normal priority:
1817 */
1818 if (!rt_prio(p->prio))
1819 return p->normal_prio;
1820 return p->prio;
1821}
1822
1823/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001824 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001826static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001828 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001829 rq->nr_uninterruptible--;
1830
Ingo Molnar8159f872007-08-09 11:16:49 +02001831 enqueue_task(rq, p, wakeup);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001832 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
1834
1835/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 * deactivate_task - remove a task from the runqueue.
1837 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001838static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001840 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001841 rq->nr_uninterruptible++;
1842
Ingo Molnar69be72c2007-08-09 11:16:49 +02001843 dequeue_task(rq, p, sleep);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001844 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845}
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847/**
1848 * task_curr - is this task currently executing on a CPU?
1849 * @p: the task in question.
1850 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001851inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852{
1853 return cpu_curr(task_cpu(p)) == p;
1854}
1855
Ingo Molnardd41f592007-07-09 18:51:59 +02001856static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1857{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001858 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001859#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001860 /*
1861 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1862 * successfuly executed on another CPU. We must ensure that updates of
1863 * per-task data have been completed by this moment.
1864 */
1865 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001866 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001867#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001868}
1869
Steven Rostedtcb469842008-01-25 21:08:22 +01001870static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1871 const struct sched_class *prev_class,
1872 int oldprio, int running)
1873{
1874 if (prev_class != p->sched_class) {
1875 if (prev_class->switched_from)
1876 prev_class->switched_from(rq, p, running);
1877 p->sched_class->switched_to(rq, p, running);
1878 } else
1879 p->sched_class->prio_changed(rq, p, oldprio, running);
1880}
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001883
Thomas Gleixnere958b362008-06-04 23:22:32 +02001884/* Used instead of source_load when we know the type == 0 */
1885static unsigned long weighted_cpuload(const int cpu)
1886{
1887 return cpu_rq(cpu)->load.weight;
1888}
1889
Ingo Molnarcc367732007-10-15 17:00:18 +02001890/*
1891 * Is this task likely cache-hot:
1892 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001893static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001894task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1895{
1896 s64 delta;
1897
Ingo Molnarf540a602008-03-15 17:10:34 +01001898 /*
1899 * Buddy candidates are cache hot:
1900 */
Peter Zijlstra47932412008-11-04 21:25:09 +01001901 if (sched_feat(CACHE_HOT_BUDDY) &&
1902 (&p->se == cfs_rq_of(&p->se)->next ||
1903 &p->se == cfs_rq_of(&p->se)->last))
Ingo Molnarf540a602008-03-15 17:10:34 +01001904 return 1;
1905
Ingo Molnarcc367732007-10-15 17:00:18 +02001906 if (p->sched_class != &fair_sched_class)
1907 return 0;
1908
Ingo Molnar6bc16652007-10-15 17:00:18 +02001909 if (sysctl_sched_migration_cost == -1)
1910 return 1;
1911 if (sysctl_sched_migration_cost == 0)
1912 return 0;
1913
Ingo Molnarcc367732007-10-15 17:00:18 +02001914 delta = now - p->se.exec_start;
1915
1916 return delta < (s64)sysctl_sched_migration_cost;
1917}
1918
1919
Ingo Molnardd41f592007-07-09 18:51:59 +02001920void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001921{
Ingo Molnardd41f592007-07-09 18:51:59 +02001922 int old_cpu = task_cpu(p);
1923 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001924 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1925 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001926 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001927
1928 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001929
Peter Zijlstracbc34ed2008-12-10 08:08:22 +01001930 trace_sched_migrate_task(p, task_cpu(p), new_cpu);
1931
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001932#ifdef CONFIG_SCHEDSTATS
1933 if (p->se.wait_start)
1934 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001935 if (p->se.sleep_start)
1936 p->se.sleep_start -= clock_offset;
1937 if (p->se.block_start)
1938 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001939 if (old_cpu != new_cpu) {
1940 schedstat_inc(p, se.nr_migrations);
1941 if (task_hot(p, old_rq->clock, NULL))
1942 schedstat_inc(p, se.nr_forced2_migrations);
1943 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001944#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001945 p->se.vruntime -= old_cfsrq->min_vruntime -
1946 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001947
1948 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001949}
1950
Ingo Molnar70b97a72006-07-03 00:25:42 -07001951struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Ingo Molnar36c8b582006-07-03 00:25:41 -07001954 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 int dest_cpu;
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001958};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960/*
1961 * The task's runqueue lock must be held.
1962 * Returns true if you have to wait for migration thread.
1963 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001964static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001965migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001967 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 /*
1970 * If the task is not on a runqueue (and not running), then
1971 * it is sufficient to simply update the task's cpu field.
1972 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001973 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 set_task_cpu(p, dest_cpu);
1975 return 0;
1976 }
1977
1978 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 req->task = p;
1980 req->dest_cpu = dest_cpu;
1981 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 return 1;
1984}
1985
1986/*
1987 * wait_task_inactive - wait for a thread to unschedule.
1988 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07001989 * If @match_state is nonzero, it's the @p->state value just checked and
1990 * not expected to change. If it changes, i.e. @p might have woken up,
1991 * then return zero. When we succeed in waiting for @p to be off its CPU,
1992 * we return a positive number (its total switch count). If a second call
1993 * a short while later returns the same number, the caller can be sure that
1994 * @p has remained unscheduled the whole time.
1995 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 * The caller must ensure that the task *will* unschedule sometime soon,
1997 * else this function might spin for a *long* time. This function can't
1998 * be called with interrupts off, or it may introduce deadlock with
1999 * smp_call_function() if an IPI is sent by the same process we are
2000 * waiting to become inactive.
2001 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002002unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003{
2004 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002005 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002006 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002007 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Andi Kleen3a5c3592007-10-15 17:00:14 +02002009 for (;;) {
2010 /*
2011 * We do the initial early heuristics without holding
2012 * any task-queue locks at all. We'll only try to get
2013 * the runqueue lock when things look like they will
2014 * work out!
2015 */
2016 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002017
Andi Kleen3a5c3592007-10-15 17:00:14 +02002018 /*
2019 * If the task is actively running on another CPU
2020 * still, just relax and busy-wait without holding
2021 * any locks.
2022 *
2023 * NOTE! Since we don't hold any locks, it's not
2024 * even sure that "rq" stays as the right runqueue!
2025 * But we don't care, since "task_running()" will
2026 * return false if the runqueue has changed and p
2027 * is actually now running somewhere else!
2028 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002029 while (task_running(rq, p)) {
2030 if (match_state && unlikely(p->state != match_state))
2031 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02002032 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07002033 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002034
Andi Kleen3a5c3592007-10-15 17:00:14 +02002035 /*
2036 * Ok, time to look more closely! We need the rq
2037 * lock now, to be *sure*. If we're wrong, we'll
2038 * just go back and repeat.
2039 */
2040 rq = task_rq_lock(p, &flags);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002041 trace_sched_wait_task(rq, p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002042 running = task_running(rq, p);
2043 on_rq = p->se.on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002044 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07002045 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07002046 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Andi Kleen3a5c3592007-10-15 17:00:14 +02002047 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002048
Andi Kleen3a5c3592007-10-15 17:00:14 +02002049 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07002050 * If it changed from the expected state, bail out now.
2051 */
2052 if (unlikely(!ncsw))
2053 break;
2054
2055 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02002056 * Was it really running after all now that we
2057 * checked with the proper locks actually held?
2058 *
2059 * Oops. Go back and try again..
2060 */
2061 if (unlikely(running)) {
2062 cpu_relax();
2063 continue;
2064 }
2065
2066 /*
2067 * It's not enough that it's not actively running,
2068 * it must be off the runqueue _entirely_, and not
2069 * preempted!
2070 *
2071 * So if it wa still runnable (but just not actively
2072 * running right now), it's preempted, and we should
2073 * yield - it could be a while.
2074 */
2075 if (unlikely(on_rq)) {
2076 schedule_timeout_uninterruptible(1);
2077 continue;
2078 }
2079
2080 /*
2081 * Ahh, all good. It wasn't running, and it wasn't
2082 * runnable, which means that it will never become
2083 * running in the future either. We're all done!
2084 */
2085 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07002087
2088 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089}
2090
2091/***
2092 * kick_process - kick a running thread to enter/exit the kernel
2093 * @p: the to-be-kicked thread
2094 *
2095 * Cause a process which is running on another CPU to enter
2096 * kernel-mode, without any delay. (to get signals handled.)
2097 *
2098 * NOTE: this function doesnt have to take the runqueue lock,
2099 * because all it wants to ensure is that the remote task enters
2100 * the kernel. If the IPI races and the task has been migrated
2101 * to another CPU then no harm is done and the purpose has been
2102 * achieved as well.
2103 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002104void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
2106 int cpu;
2107
2108 preempt_disable();
2109 cpu = task_cpu(p);
2110 if ((cpu != smp_processor_id()) && task_curr(p))
2111 smp_send_reschedule(cpu);
2112 preempt_enable();
2113}
2114
2115/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002116 * Return a low guess at the load of a migration-source cpu weighted
2117 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 *
2119 * We want to under-estimate the load of migration sources, to
2120 * balance conservatively.
2121 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002122static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002123{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002124 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002125 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002126
Peter Zijlstra93b75212008-06-27 13:41:33 +02002127 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002128 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002129
Ingo Molnardd41f592007-07-09 18:51:59 +02002130 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
2132
2133/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002134 * Return a high guess at the load of a migration-target cpu weighted
2135 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002137static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002138{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002139 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002140 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002141
Peter Zijlstra93b75212008-06-27 13:41:33 +02002142 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002143 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002144
Ingo Molnardd41f592007-07-09 18:51:59 +02002145 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002146}
2147
2148/*
Nick Piggin147cbb42005-06-25 14:57:19 -07002149 * find_idlest_group finds and returns the least busy CPU group within the
2150 * domain.
2151 */
2152static struct sched_group *
2153find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2154{
2155 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2156 unsigned long min_load = ULONG_MAX, this_load = 0;
2157 int load_idx = sd->forkexec_idx;
2158 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2159
2160 do {
2161 unsigned long load, avg_load;
2162 int local_group;
2163 int i;
2164
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002165 /* Skip over this group if it has no CPUs allowed */
Rusty Russell758b2cd2008-11-25 02:35:04 +10302166 if (!cpumask_intersects(sched_group_cpus(group),
2167 &p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002168 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002169
Rusty Russell758b2cd2008-11-25 02:35:04 +10302170 local_group = cpumask_test_cpu(this_cpu,
2171 sched_group_cpus(group));
Nick Piggin147cbb42005-06-25 14:57:19 -07002172
2173 /* Tally up the load of all CPUs in the group */
2174 avg_load = 0;
2175
Rusty Russell758b2cd2008-11-25 02:35:04 +10302176 for_each_cpu(i, sched_group_cpus(group)) {
Nick Piggin147cbb42005-06-25 14:57:19 -07002177 /* Bias balancing toward cpus of our domain */
2178 if (local_group)
2179 load = source_load(i, load_idx);
2180 else
2181 load = target_load(i, load_idx);
2182
2183 avg_load += load;
2184 }
2185
2186 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002187 avg_load = sg_div_cpu_power(group,
2188 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002189
2190 if (local_group) {
2191 this_load = avg_load;
2192 this = group;
2193 } else if (avg_load < min_load) {
2194 min_load = avg_load;
2195 idlest = group;
2196 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002197 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002198
2199 if (!idlest || 100*this_load < imbalance*min_load)
2200 return NULL;
2201 return idlest;
2202}
2203
2204/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002205 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002206 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002207static int
Rusty Russell758b2cd2008-11-25 02:35:04 +10302208find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07002209{
2210 unsigned long load, min_load = ULONG_MAX;
2211 int idlest = -1;
2212 int i;
2213
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002214 /* Traverse only the allowed CPUs */
Rusty Russell758b2cd2008-11-25 02:35:04 +10302215 for_each_cpu_and(i, sched_group_cpus(group), &p->cpus_allowed) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002216 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002217
2218 if (load < min_load || (load == min_load && i == this_cpu)) {
2219 min_load = load;
2220 idlest = i;
2221 }
2222 }
2223
2224 return idlest;
2225}
2226
Nick Piggin476d1392005-06-25 14:57:29 -07002227/*
2228 * sched_balance_self: balance the current task (running on cpu) in domains
2229 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2230 * SD_BALANCE_EXEC.
2231 *
2232 * Balance, ie. select the least loaded group.
2233 *
2234 * Returns the target CPU number, or the same CPU if no balancing is needed.
2235 *
2236 * preempt must be disabled.
2237 */
2238static int sched_balance_self(int cpu, int flag)
2239{
2240 struct task_struct *t = current;
2241 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002242
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002243 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002244 /*
2245 * If power savings logic is enabled for a domain, stop there.
2246 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002247 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2248 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002249 if (tmp->flags & flag)
2250 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002251 }
Nick Piggin476d1392005-06-25 14:57:29 -07002252
Peter Zijlstra039a1c412008-06-27 13:41:25 +02002253 if (sd)
2254 update_shares(sd);
2255
Nick Piggin476d1392005-06-25 14:57:29 -07002256 while (sd) {
Nick Piggin476d1392005-06-25 14:57:29 -07002257 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002258 int new_cpu, weight;
2259
2260 if (!(sd->flags & flag)) {
2261 sd = sd->child;
2262 continue;
2263 }
Nick Piggin476d1392005-06-25 14:57:29 -07002264
Nick Piggin476d1392005-06-25 14:57:29 -07002265 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002266 if (!group) {
2267 sd = sd->child;
2268 continue;
2269 }
Nick Piggin476d1392005-06-25 14:57:29 -07002270
Rusty Russell758b2cd2008-11-25 02:35:04 +10302271 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002272 if (new_cpu == -1 || new_cpu == cpu) {
2273 /* Now try balancing at a lower domain level of cpu */
2274 sd = sd->child;
2275 continue;
2276 }
Nick Piggin476d1392005-06-25 14:57:29 -07002277
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002278 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002279 cpu = new_cpu;
Rusty Russell758b2cd2008-11-25 02:35:04 +10302280 weight = cpumask_weight(sched_domain_span(sd));
Nick Piggin476d1392005-06-25 14:57:29 -07002281 sd = NULL;
Nick Piggin476d1392005-06-25 14:57:29 -07002282 for_each_domain(cpu, tmp) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302283 if (weight <= cpumask_weight(sched_domain_span(tmp)))
Nick Piggin476d1392005-06-25 14:57:29 -07002284 break;
2285 if (tmp->flags & flag)
2286 sd = tmp;
2287 }
2288 /* while loop will break here if sd == NULL */
2289 }
2290
2291 return cpu;
2292}
2293
2294#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296/***
2297 * try_to_wake_up - wake up a thread
2298 * @p: the to-be-woken-up thread
2299 * @state: the mask of task states that can be woken
2300 * @sync: do a synchronous wakeup?
2301 *
2302 * Put it on the run-queue if it's not already there. The "current"
2303 * thread is always on the run-queue (except when the actual
2304 * re-schedule is in progress), and as such you're allowed to do
2305 * the simpler "current->state = TASK_RUNNING" to mark yourself
2306 * runnable without the overhead of this.
2307 *
2308 * returns failure only if the task is already active.
2309 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002310static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311{
Ingo Molnarcc367732007-10-15 17:00:18 +02002312 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 unsigned long flags;
2314 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002315 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Ingo Molnarb85d0662008-03-16 20:03:22 +01002317 if (!sched_feat(SYNC_WAKEUPS))
2318 sync = 0;
2319
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002320#ifdef CONFIG_SMP
2321 if (sched_feat(LB_WAKEUP_UPDATE)) {
2322 struct sched_domain *sd;
2323
2324 this_cpu = raw_smp_processor_id();
2325 cpu = task_cpu(p);
2326
2327 for_each_domain(this_cpu, sd) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302328 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002329 update_shares(sd);
2330 break;
2331 }
2332 }
2333 }
2334#endif
2335
Linus Torvalds04e2f172008-02-23 18:05:03 -08002336 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 rq = task_rq_lock(p, &flags);
Mike Galbraith03e89e42008-12-16 08:45:30 +01002338 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 old_state = p->state;
2340 if (!(old_state & state))
2341 goto out;
2342
Ingo Molnardd41f592007-07-09 18:51:59 +02002343 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 goto out_running;
2345
2346 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002347 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 this_cpu = smp_processor_id();
2349
2350#ifdef CONFIG_SMP
2351 if (unlikely(task_running(rq, p)))
2352 goto out_activate;
2353
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002354 cpu = p->sched_class->select_task_rq(p, sync);
2355 if (cpu != orig_cpu) {
2356 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 task_rq_unlock(rq, &flags);
2358 /* might preempt at this point */
2359 rq = task_rq_lock(p, &flags);
2360 old_state = p->state;
2361 if (!(old_state & state))
2362 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002363 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 goto out_running;
2365
2366 this_cpu = smp_processor_id();
2367 cpu = task_cpu(p);
2368 }
2369
Gregory Haskinse7693a32008-01-25 21:08:09 +01002370#ifdef CONFIG_SCHEDSTATS
2371 schedstat_inc(rq, ttwu_count);
2372 if (cpu == this_cpu)
2373 schedstat_inc(rq, ttwu_local);
2374 else {
2375 struct sched_domain *sd;
2376 for_each_domain(this_cpu, sd) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302377 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Gregory Haskinse7693a32008-01-25 21:08:09 +01002378 schedstat_inc(sd, ttwu_wake_remote);
2379 break;
2380 }
2381 }
2382 }
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002383#endif /* CONFIG_SCHEDSTATS */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385out_activate:
2386#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002387 schedstat_inc(p, se.nr_wakeups);
2388 if (sync)
2389 schedstat_inc(p, se.nr_wakeups_sync);
2390 if (orig_cpu != cpu)
2391 schedstat_inc(p, se.nr_wakeups_migrate);
2392 if (cpu == this_cpu)
2393 schedstat_inc(p, se.nr_wakeups_local);
2394 else
2395 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnardd41f592007-07-09 18:51:59 +02002396 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 success = 1;
2398
Peter Zijlstra831451a2009-01-14 12:39:18 +01002399 /*
2400 * Only attribute actual wakeups done by this task.
2401 */
2402 if (!in_interrupt()) {
2403 struct sched_entity *se = &current->se;
2404 u64 sample = se->sum_exec_runtime;
2405
2406 if (se->last_wakeup)
2407 sample -= se->last_wakeup;
2408 else
2409 sample -= se->start_runtime;
2410 update_avg(&se->avg_wakeup, sample);
2411
2412 se->last_wakeup = se->sum_exec_runtime;
2413 }
2414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415out_running:
Peter Zijlstra468a15b2008-12-16 08:07:03 +01002416 trace_sched_wakeup(rq, p, success);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002417 check_preempt_curr(rq, p, sync);
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002420#ifdef CONFIG_SMP
2421 if (p->sched_class->task_wake_up)
2422 p->sched_class->task_wake_up(rq, p);
2423#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424out:
2425 task_rq_unlock(rq, &flags);
2426
2427 return success;
2428}
2429
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002430int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002432 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434EXPORT_SYMBOL(wake_up_process);
2435
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002436int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
2438 return try_to_wake_up(p, state, 0);
2439}
2440
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441/*
2442 * Perform scheduler related setup for a newly forked process p.
2443 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002444 *
2445 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002447static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
Ingo Molnardd41f592007-07-09 18:51:59 +02002449 p->se.exec_start = 0;
2450 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002451 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002452 p->se.last_wakeup = 0;
2453 p->se.avg_overlap = 0;
Peter Zijlstra831451a2009-01-14 12:39:18 +01002454 p->se.start_runtime = 0;
2455 p->se.avg_wakeup = sysctl_sched_wakeup_granularity;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002456
2457#ifdef CONFIG_SCHEDSTATS
2458 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002459 p->se.sum_sleep_runtime = 0;
2460 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002461 p->se.block_start = 0;
2462 p->se.sleep_max = 0;
2463 p->se.block_max = 0;
2464 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002465 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002466 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002467#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002468
Peter Zijlstrafa717062008-01-25 21:08:27 +01002469 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002470 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002471 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002472
Avi Kivitye107be32007-07-26 13:40:43 +02002473#ifdef CONFIG_PREEMPT_NOTIFIERS
2474 INIT_HLIST_HEAD(&p->preempt_notifiers);
2475#endif
2476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 /*
2478 * We mark the process as running here, but have not actually
2479 * inserted it onto the runqueue yet. This guarantees that
2480 * nobody will actually run it, and a signal or other external
2481 * event cannot wake it up and insert it on the runqueue either.
2482 */
2483 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002484}
2485
2486/*
2487 * fork()/clone()-time setup:
2488 */
2489void sched_fork(struct task_struct *p, int clone_flags)
2490{
2491 int cpu = get_cpu();
2492
2493 __sched_fork(p);
2494
2495#ifdef CONFIG_SMP
2496 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2497#endif
Ingo Molnar02e4bac22007-10-15 17:00:11 +02002498 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002499
2500 /*
2501 * Make sure we do not leak PI boosting priority to the child:
2502 */
2503 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002504 if (!rt_prio(p->prio))
2505 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002506
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002507#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002508 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002509 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002511#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002512 p->oncpu = 0;
2513#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002515 /* Want to start with kernel preemption disabled. */
Al Viroa1261f542005-11-13 16:06:55 -08002516 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05002518 plist_node_init(&p->pushable_tasks, MAX_PRIO);
2519
Nick Piggin476d1392005-06-25 14:57:29 -07002520 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521}
2522
2523/*
2524 * wake_up_new_task - wake up a newly created task for the first time.
2525 *
2526 * This function will do some initial scheduler statistics housekeeping
2527 * that must be done for every newly created context, then puts the task
2528 * on the runqueue and wakes it.
2529 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002530void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531{
2532 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002533 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
2535 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002537 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
2539 p->prio = effective_prio(p);
2540
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002541 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002542 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002545 * Let the scheduling class do new task startup
2546 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002548 p->sched_class->task_new(rq, p);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02002549 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 }
Ingo Molnarc71dd422008-12-19 01:09:51 +01002551 trace_sched_wakeup_new(rq, p, 1);
Peter Zijlstra15afe092008-09-20 23:38:02 +02002552 check_preempt_curr(rq, p, 0);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002553#ifdef CONFIG_SMP
2554 if (p->sched_class->task_wake_up)
2555 p->sched_class->task_wake_up(rq, p);
2556#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002557 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558}
2559
Avi Kivitye107be32007-07-26 13:40:43 +02002560#ifdef CONFIG_PREEMPT_NOTIFIERS
2561
2562/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002563 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2564 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002565 */
2566void preempt_notifier_register(struct preempt_notifier *notifier)
2567{
2568 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2569}
2570EXPORT_SYMBOL_GPL(preempt_notifier_register);
2571
2572/**
2573 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002574 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002575 *
2576 * This is safe to call from within a preemption notifier.
2577 */
2578void preempt_notifier_unregister(struct preempt_notifier *notifier)
2579{
2580 hlist_del(&notifier->link);
2581}
2582EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2583
2584static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2585{
2586 struct preempt_notifier *notifier;
2587 struct hlist_node *node;
2588
2589 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2590 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2591}
2592
2593static void
2594fire_sched_out_preempt_notifiers(struct task_struct *curr,
2595 struct task_struct *next)
2596{
2597 struct preempt_notifier *notifier;
2598 struct hlist_node *node;
2599
2600 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2601 notifier->ops->sched_out(notifier, next);
2602}
2603
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002604#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002605
2606static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2607{
2608}
2609
2610static void
2611fire_sched_out_preempt_notifiers(struct task_struct *curr,
2612 struct task_struct *next)
2613{
2614}
2615
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002616#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002617
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002619 * prepare_task_switch - prepare to switch tasks
2620 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002621 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002622 * @next: the task we are going to switch to.
2623 *
2624 * This is called with the rq lock held and interrupts off. It must
2625 * be paired with a subsequent finish_task_switch after the context
2626 * switch.
2627 *
2628 * prepare_task_switch sets up locking and calls architecture specific
2629 * hooks.
2630 */
Avi Kivitye107be32007-07-26 13:40:43 +02002631static inline void
2632prepare_task_switch(struct rq *rq, struct task_struct *prev,
2633 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002634{
Avi Kivitye107be32007-07-26 13:40:43 +02002635 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002636 prepare_lock_switch(rq, next);
2637 prepare_arch_switch(next);
2638}
2639
2640/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002642 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 * @prev: the thread we just switched away from.
2644 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002645 * finish_task_switch must be called after the context switch, paired
2646 * with a prepare_task_switch call before the context switch.
2647 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2648 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 *
2650 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002651 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 * with the lock held can cause deadlocks; see schedule() for
2653 * details.)
2654 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002655static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 __releases(rq->lock)
2657{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002659 long prev_state;
Gregory Haskins967fc042008-12-29 09:39:52 -05002660#ifdef CONFIG_SMP
2661 int post_schedule = 0;
2662
2663 if (current->sched_class->needs_post_schedule)
2664 post_schedule = current->sched_class->needs_post_schedule(rq);
2665#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
2667 rq->prev_mm = NULL;
2668
2669 /*
2670 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002671 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002672 * schedule one last time. The schedule call will never return, and
2673 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002674 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 * still held, otherwise prev could be scheduled on another cpu, die
2676 * there before we look at prev->state, and then the reference would
2677 * be dropped twice.
2678 * Manfred Spraul <manfred@colorfullife.com>
2679 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002680 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002681 finish_arch_switch(prev);
2682 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002683#ifdef CONFIG_SMP
Gregory Haskins967fc042008-12-29 09:39:52 -05002684 if (post_schedule)
Steven Rostedt9a897c52008-01-25 21:08:22 +01002685 current->sched_class->post_schedule(rq);
2686#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002687
Avi Kivitye107be32007-07-26 13:40:43 +02002688 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 if (mm)
2690 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002691 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002692 /*
2693 * Remove function-return probe instances associated with this
2694 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002695 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002696 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699}
2700
2701/**
2702 * schedule_tail - first thing a freshly forked thread must call.
2703 * @prev: the thread we just switched away from.
2704 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002705asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 __releases(rq->lock)
2707{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002708 struct rq *rq = this_rq();
2709
Nick Piggin4866cde2005-06-25 14:57:23 -07002710 finish_task_switch(rq, prev);
2711#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2712 /* In this case, finish_task_switch does not reenable preemption */
2713 preempt_enable();
2714#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002716 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717}
2718
2719/*
2720 * context_switch - switch to the new MM and the new
2721 * thread's register state.
2722 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002723static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002724context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002725 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726{
Ingo Molnardd41f592007-07-09 18:51:59 +02002727 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Avi Kivitye107be32007-07-26 13:40:43 +02002729 prepare_task_switch(rq, prev, next);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -04002730 trace_sched_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002731 mm = next->mm;
2732 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002733 /*
2734 * For paravirt, this is coupled with an exit in switch_to to
2735 * combine the page table reload and the switch backend into
2736 * one hypercall.
2737 */
2738 arch_enter_lazy_cpu_mode();
2739
Ingo Molnardd41f592007-07-09 18:51:59 +02002740 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 next->active_mm = oldmm;
2742 atomic_inc(&oldmm->mm_count);
2743 enter_lazy_tlb(oldmm, next);
2744 } else
2745 switch_mm(oldmm, mm, next);
2746
Ingo Molnardd41f592007-07-09 18:51:59 +02002747 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 rq->prev_mm = oldmm;
2750 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002751 /*
2752 * Since the runqueue lock will be released by the next
2753 * task (which is an invalid locking op but in the case
2754 * of the scheduler it's an obvious special-case), so we
2755 * do an early lockdep release here:
2756 */
2757#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002758 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002759#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
2761 /* Here we just switch the register state and the stack. */
2762 switch_to(prev, next, prev);
2763
Ingo Molnardd41f592007-07-09 18:51:59 +02002764 barrier();
2765 /*
2766 * this_rq must be evaluated again because prev may have moved
2767 * CPUs since it called schedule(), thus the 'rq' on its stack
2768 * frame will be invalid.
2769 */
2770 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771}
2772
2773/*
2774 * nr_running, nr_uninterruptible and nr_context_switches:
2775 *
2776 * externally visible scheduler statistics: current number of runnable
2777 * threads, current number of uninterruptible-sleeping threads, total
2778 * number of context switches performed since bootup.
2779 */
2780unsigned long nr_running(void)
2781{
2782 unsigned long i, sum = 0;
2783
2784 for_each_online_cpu(i)
2785 sum += cpu_rq(i)->nr_running;
2786
2787 return sum;
2788}
2789
2790unsigned long nr_uninterruptible(void)
2791{
2792 unsigned long i, sum = 0;
2793
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002794 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 sum += cpu_rq(i)->nr_uninterruptible;
2796
2797 /*
2798 * Since we read the counters lockless, it might be slightly
2799 * inaccurate. Do not allow it to go below zero though:
2800 */
2801 if (unlikely((long)sum < 0))
2802 sum = 0;
2803
2804 return sum;
2805}
2806
2807unsigned long long nr_context_switches(void)
2808{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002809 int i;
2810 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002812 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 sum += cpu_rq(i)->nr_switches;
2814
2815 return sum;
2816}
2817
2818unsigned long nr_iowait(void)
2819{
2820 unsigned long i, sum = 0;
2821
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002822 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2824
2825 return sum;
2826}
2827
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002828unsigned long nr_active(void)
2829{
2830 unsigned long i, running = 0, uninterruptible = 0;
2831
2832 for_each_online_cpu(i) {
2833 running += cpu_rq(i)->nr_running;
2834 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2835 }
2836
2837 if (unlikely((long)uninterruptible < 0))
2838 uninterruptible = 0;
2839
2840 return running + uninterruptible;
2841}
2842
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002844 * Update rq->cpu_load[] statistics. This function is usually called every
2845 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002846 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002847static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002848{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002849 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002850 int i, scale;
2851
2852 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002853
2854 /* Update our load: */
2855 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2856 unsigned long old_load, new_load;
2857
2858 /* scale is effectively 1 << i now, and >> i divides by scale */
2859
2860 old_load = this_rq->cpu_load[i];
2861 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002862 /*
2863 * Round up the averaging division if load is increasing. This
2864 * prevents us from getting stuck on 9 if the load is 10, for
2865 * example.
2866 */
2867 if (new_load > old_load)
2868 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002869 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2870 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002871}
2872
Ingo Molnardd41f592007-07-09 18:51:59 +02002873#ifdef CONFIG_SMP
2874
Ingo Molnar48f24c42006-07-03 00:25:40 -07002875/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 * double_rq_lock - safely lock two runqueues
2877 *
2878 * Note this does not disable interrupts like task_rq_lock,
2879 * you need to do so manually before calling.
2880 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002881static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 __acquires(rq1->lock)
2883 __acquires(rq2->lock)
2884{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002885 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 if (rq1 == rq2) {
2887 spin_lock(&rq1->lock);
2888 __acquire(rq2->lock); /* Fake it out ;) */
2889 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002890 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 spin_lock(&rq1->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002892 spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 } else {
2894 spin_lock(&rq2->lock);
Peter Zijlstra5e710e32008-07-30 13:26:57 +02002895 spin_lock_nested(&rq1->lock, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 }
2897 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002898 update_rq_clock(rq1);
2899 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900}
2901
2902/*
2903 * double_rq_unlock - safely unlock two runqueues
2904 *
2905 * Note this does not restore interrupts like task_rq_unlock,
2906 * you need to do so manually after calling.
2907 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002908static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 __releases(rq1->lock)
2910 __releases(rq2->lock)
2911{
2912 spin_unlock(&rq1->lock);
2913 if (rq1 != rq2)
2914 spin_unlock(&rq2->lock);
2915 else
2916 __release(rq2->lock);
2917}
2918
2919/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 * If dest_cpu is allowed for this process, migrate the task to it.
2921 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002922 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 * the cpu_allowed mask is restored.
2924 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002925static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002927 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002929 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
2931 rq = task_rq_lock(p, &flags);
Rusty Russell96f874e22008-11-25 02:35:14 +10302932 if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed)
Max Krasnyanskye761b772008-07-15 04:43:49 -07002933 || unlikely(!cpu_active(dest_cpu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 goto out;
2935
2936 /* force the process onto the specified CPU */
2937 if (migrate_task(p, dest_cpu, &req)) {
2938 /* Need to wait for migration thread (might exit: take ref). */
2939 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002940
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 get_task_struct(mt);
2942 task_rq_unlock(rq, &flags);
2943 wake_up_process(mt);
2944 put_task_struct(mt);
2945 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002946
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 return;
2948 }
2949out:
2950 task_rq_unlock(rq, &flags);
2951}
2952
2953/*
Nick Piggin476d1392005-06-25 14:57:29 -07002954 * sched_exec - execve() is a valuable balancing opportunity, because at
2955 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 */
2957void sched_exec(void)
2958{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002960 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002962 if (new_cpu != this_cpu)
2963 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964}
2965
2966/*
2967 * pull_task - move a task from a remote runqueue to the local runqueue.
2968 * Both runqueues must be locked.
2969 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002970static void pull_task(struct rq *src_rq, struct task_struct *p,
2971 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002973 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002975 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 /*
2977 * Note that idle threads have a prio of MAX_PRIO, for this test
2978 * to be always true for them.
2979 */
Peter Zijlstra15afe092008-09-20 23:38:02 +02002980 check_preempt_curr(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981}
2982
2983/*
2984 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2985 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002986static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002987int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002988 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002989 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990{
2991 /*
2992 * We do not migrate tasks that are:
2993 * 1) running (obviously), or
2994 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2995 * 3) are cache-hot on their current CPU.
2996 */
Rusty Russell96f874e22008-11-25 02:35:14 +10302997 if (!cpumask_test_cpu(this_cpu, &p->cpus_allowed)) {
Ingo Molnarcc367732007-10-15 17:00:18 +02002998 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003000 }
Nick Piggin81026792005-06-25 14:57:07 -07003001 *all_pinned = 0;
3002
Ingo Molnarcc367732007-10-15 17:00:18 +02003003 if (task_running(rq, p)) {
3004 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07003005 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
Ingo Molnarda84d962007-10-15 17:00:18 +02003008 /*
3009 * Aggressive migration if:
3010 * 1) task is cache cold, or
3011 * 2) too many balance attempts have failed.
3012 */
3013
Ingo Molnar6bc16652007-10-15 17:00:18 +02003014 if (!task_hot(p, rq->clock, sd) ||
3015 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003016#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02003017 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003018 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02003019 schedstat_inc(p, se.nr_forced_migrations);
3020 }
Ingo Molnarda84d962007-10-15 17:00:18 +02003021#endif
3022 return 1;
3023 }
3024
Ingo Molnarcc367732007-10-15 17:00:18 +02003025 if (task_hot(p, rq->clock, sd)) {
3026 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02003027 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 return 1;
3030}
3031
Peter Williamse1d14842007-10-24 18:23:51 +02003032static unsigned long
3033balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3034 unsigned long max_load_move, struct sched_domain *sd,
3035 enum cpu_idle_type idle, int *all_pinned,
3036 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003037{
Peter Zijlstra051c6762008-06-27 13:41:31 +02003038 int loops = 0, pulled = 0, pinned = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02003039 struct task_struct *p;
3040 long rem_load_move = max_load_move;
3041
Peter Williamse1d14842007-10-24 18:23:51 +02003042 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003043 goto out;
3044
3045 pinned = 1;
3046
3047 /*
3048 * Start the load-balancing iterator:
3049 */
3050 p = iterator->start(iterator->arg);
3051next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003052 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003053 goto out;
Peter Zijlstra051c6762008-06-27 13:41:31 +02003054
3055 if ((p->se.load.weight >> 1) > rem_load_move ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003056 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003057 p = iterator->next(iterator->arg);
3058 goto next;
3059 }
3060
3061 pull_task(busiest, p, this_rq, this_cpu);
3062 pulled++;
3063 rem_load_move -= p->se.load.weight;
3064
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003065#ifdef CONFIG_PREEMPT
3066 /*
3067 * NEWIDLE balancing is a source of latency, so preemptible kernels
3068 * will stop after the first task is pulled to minimize the critical
3069 * section.
3070 */
3071 if (idle == CPU_NEWLY_IDLE)
3072 goto out;
3073#endif
3074
Ingo Molnardd41f592007-07-09 18:51:59 +02003075 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003076 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003077 */
Peter Williamse1d14842007-10-24 18:23:51 +02003078 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003079 if (p->prio < *this_best_prio)
3080 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003081 p = iterator->next(iterator->arg);
3082 goto next;
3083 }
3084out:
3085 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003086 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003087 * so we can safely collect pull_task() stats here rather than
3088 * inside pull_task().
3089 */
3090 schedstat_add(sd, lb_gained[idle], pulled);
3091
3092 if (all_pinned)
3093 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003094
3095 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003096}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003097
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098/*
Peter Williams43010652007-08-09 11:16:46 +02003099 * move_tasks tries to move up to max_load_move weighted load from busiest to
3100 * this_rq, as part of a balancing operation within domain "sd".
3101 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 *
3103 * Called with both runqueues locked.
3104 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003105static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003106 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003107 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003108 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003110 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003111 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003112 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Ingo Molnardd41f592007-07-09 18:51:59 +02003114 do {
Peter Williams43010652007-08-09 11:16:46 +02003115 total_load_moved +=
3116 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003117 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003118 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003119 class = class->next;
Gregory Haskinsc4acb2c2008-06-27 14:29:55 -06003120
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003121#ifdef CONFIG_PREEMPT
3122 /*
3123 * NEWIDLE balancing is a source of latency, so preemptible
3124 * kernels will stop after the first task is pulled to minimize
3125 * the critical section.
3126 */
Gregory Haskinsc4acb2c2008-06-27 14:29:55 -06003127 if (idle == CPU_NEWLY_IDLE && this_rq->nr_running)
3128 break;
Gregory Haskins7e96fa52008-12-29 09:39:50 -05003129#endif
Peter Williams43010652007-08-09 11:16:46 +02003130 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Peter Williams43010652007-08-09 11:16:46 +02003132 return total_load_moved > 0;
3133}
3134
Peter Williamse1d14842007-10-24 18:23:51 +02003135static int
3136iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3137 struct sched_domain *sd, enum cpu_idle_type idle,
3138 struct rq_iterator *iterator)
3139{
3140 struct task_struct *p = iterator->start(iterator->arg);
3141 int pinned = 0;
3142
3143 while (p) {
3144 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3145 pull_task(busiest, p, this_rq, this_cpu);
3146 /*
3147 * Right now, this is only the second place pull_task()
3148 * is called, so we can safely collect pull_task()
3149 * stats here rather than inside pull_task().
3150 */
3151 schedstat_inc(sd, lb_gained[idle]);
3152
3153 return 1;
3154 }
3155 p = iterator->next(iterator->arg);
3156 }
3157
3158 return 0;
3159}
3160
Peter Williams43010652007-08-09 11:16:46 +02003161/*
3162 * move_one_task tries to move exactly one task from busiest to this_rq, as
3163 * part of active balancing operations within "domain".
3164 * Returns 1 if successful and 0 otherwise.
3165 *
3166 * Called with both runqueues locked.
3167 */
3168static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3169 struct sched_domain *sd, enum cpu_idle_type idle)
3170{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003171 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003172
3173 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003174 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003175 return 1;
3176
3177 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178}
3179
3180/*
3181 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003182 * domain. It calculates and returns the amount of weighted load which
3183 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 */
3185static struct sched_group *
3186find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003187 unsigned long *imbalance, enum cpu_idle_type idle,
Rusty Russell96f874e22008-11-25 02:35:14 +10303188 int *sd_idle, const struct cpumask *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189{
3190 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3191 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003192 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003193 unsigned long busiest_load_per_task, busiest_nr_running;
3194 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003195 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003196#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3197 int power_savings_balance = 1;
3198 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3199 unsigned long min_nr_running = ULONG_MAX;
3200 struct sched_group *group_min = NULL, *group_leader = NULL;
3201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
3203 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003204 busiest_load_per_task = busiest_nr_running = 0;
3205 this_load_per_task = this_nr_running = 0;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003206
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003207 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003208 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003209 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003210 load_idx = sd->newidle_idx;
3211 else
3212 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
3214 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003215 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 int local_group;
3217 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003218 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003219 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003220 unsigned long sum_nr_running, sum_weighted_load;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003221 unsigned long sum_avg_load_per_task;
3222 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
Rusty Russell758b2cd2008-11-25 02:35:04 +10303224 local_group = cpumask_test_cpu(this_cpu,
3225 sched_group_cpus(group));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003227 if (local_group)
Rusty Russell758b2cd2008-11-25 02:35:04 +10303228 balance_cpu = cpumask_first(sched_group_cpus(group));
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003229
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003231 sum_weighted_load = sum_nr_running = avg_load = 0;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003232 sum_avg_load_per_task = avg_load_per_task = 0;
3233
Ken Chen908a7c12007-10-17 16:55:11 +02003234 max_cpu_load = 0;
3235 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Rusty Russell758b2cd2008-11-25 02:35:04 +10303237 for_each_cpu_and(i, sched_group_cpus(group), cpus) {
3238 struct rq *rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003239
Suresh Siddha9439aab2007-07-19 21:28:35 +02003240 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003241 *sd_idle = 0;
3242
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003244 if (local_group) {
3245 if (idle_cpu(i) && !first_idle_cpu) {
3246 first_idle_cpu = 1;
3247 balance_cpu = i;
3248 }
3249
Nick Piggina2000572006-02-10 01:51:02 -08003250 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003251 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003252 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003253 if (load > max_cpu_load)
3254 max_cpu_load = load;
3255 if (min_cpu_load > load)
3256 min_cpu_load = load;
3257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
3259 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003260 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003261 sum_weighted_load += weighted_cpuload(i);
Peter Zijlstra408ed062008-06-27 13:41:28 +02003262
3263 sum_avg_load_per_task += cpu_avg_load_per_task(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 }
3265
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003266 /*
3267 * First idle cpu or the first cpu(busiest) in this sched group
3268 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003269 * domains. In the newly idle case, we will allow all the cpu's
3270 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003271 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003272 if (idle != CPU_NEWLY_IDLE && local_group &&
3273 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003274 *balance = 0;
3275 goto ret;
3276 }
3277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003279 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
3281 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003282 avg_load = sg_div_cpu_power(group,
3283 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
Peter Zijlstra408ed062008-06-27 13:41:28 +02003285
3286 /*
3287 * Consider the group unbalanced when the imbalance is larger
3288 * than the average weight of two tasks.
3289 *
3290 * APZ: with cgroup the avg task weight can vary wildly and
3291 * might not be a suitable number - should we keep a
3292 * normalized nr_running number somewhere that negates
3293 * the hierarchy?
3294 */
3295 avg_load_per_task = sg_div_cpu_power(group,
3296 sum_avg_load_per_task * SCHED_LOAD_SCALE);
3297
3298 if ((max_cpu_load - min_cpu_load) > 2*avg_load_per_task)
Ken Chen908a7c12007-10-17 16:55:11 +02003299 __group_imb = 1;
3300
Eric Dumazet5517d862007-05-08 00:32:57 -07003301 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003302
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 if (local_group) {
3304 this_load = avg_load;
3305 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003306 this_nr_running = sum_nr_running;
3307 this_load_per_task = sum_weighted_load;
3308 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003309 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 max_load = avg_load;
3311 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003312 busiest_nr_running = sum_nr_running;
3313 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003314 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003316
3317#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3318 /*
3319 * Busy processors will not participate in power savings
3320 * balance.
3321 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003322 if (idle == CPU_NOT_IDLE ||
3323 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3324 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003325
3326 /*
3327 * If the local group is idle or completely loaded
3328 * no need to do power savings balance at this domain
3329 */
3330 if (local_group && (this_nr_running >= group_capacity ||
3331 !this_nr_running))
3332 power_savings_balance = 0;
3333
Ingo Molnardd41f592007-07-09 18:51:59 +02003334 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003335 * If a group is already running at full capacity or idle,
3336 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003337 */
3338 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003339 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003340 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003341
Ingo Molnardd41f592007-07-09 18:51:59 +02003342 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003343 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003344 * This is the group from where we need to pick up the load
3345 * for saving power
3346 */
3347 if ((sum_nr_running < min_nr_running) ||
3348 (sum_nr_running == min_nr_running &&
Vaidyanathan Srinivasand5679bd2008-12-18 23:26:16 +05303349 cpumask_first(sched_group_cpus(group)) >
Rusty Russell758b2cd2008-11-25 02:35:04 +10303350 cpumask_first(sched_group_cpus(group_min)))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003351 group_min = group;
3352 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003353 min_load_per_task = sum_weighted_load /
3354 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003355 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003356
Ingo Molnardd41f592007-07-09 18:51:59 +02003357 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003358 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003359 * capacity but still has some space to pick up some load
3360 * from other group and save more power
3361 */
3362 if (sum_nr_running <= group_capacity - 1) {
3363 if (sum_nr_running > leader_nr_running ||
3364 (sum_nr_running == leader_nr_running &&
Vaidyanathan Srinivasand5679bd2008-12-18 23:26:16 +05303365 cpumask_first(sched_group_cpus(group)) <
Rusty Russell758b2cd2008-11-25 02:35:04 +10303366 cpumask_first(sched_group_cpus(group_leader)))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003367 group_leader = group;
3368 leader_nr_running = sum_nr_running;
3369 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003370 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003371group_next:
3372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 group = group->next;
3374 } while (group != sd->groups);
3375
Peter Williams2dd73a42006-06-27 02:54:34 -07003376 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 goto out_balanced;
3378
3379 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3380
3381 if (this_load >= avg_load ||
3382 100*max_load <= sd->imbalance_pct*this_load)
3383 goto out_balanced;
3384
Peter Williams2dd73a42006-06-27 02:54:34 -07003385 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003386 if (group_imb)
3387 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3388
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 /*
3390 * We're trying to get all the cpus to the average_load, so we don't
3391 * want to push ourselves above the average load, nor do we wish to
3392 * reduce the max loaded cpu below the average load, as either of these
3393 * actions would just result in more rebalancing later, and ping-pong
3394 * tasks around. Thus we look for the minimum possible imbalance.
3395 * Negative imbalances (*we* are more loaded than anyone else) will
3396 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003397 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 * appear as very large values with unsigned longs.
3399 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003400 if (max_load <= busiest_load_per_task)
3401 goto out_balanced;
3402
3403 /*
3404 * In the presence of smp nice balancing, certain scenarios can have
3405 * max load less than avg load(as we skip the groups at or below
3406 * its cpu_power, while calculating max_load..)
3407 */
3408 if (max_load < avg_load) {
3409 *imbalance = 0;
3410 goto small_imbalance;
3411 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003412
3413 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003414 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003415
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003417 *imbalance = min(max_pull * busiest->__cpu_power,
3418 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 / SCHED_LOAD_SCALE;
3420
Peter Williams2dd73a42006-06-27 02:54:34 -07003421 /*
3422 * if *imbalance is less than the average load per runnable task
3423 * there is no gaurantee that any tasks will be moved so we'll have
3424 * a think about bumping its value to force at least one task to be
3425 * moved
3426 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003427 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003428 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003429 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
Peter Williams2dd73a42006-06-27 02:54:34 -07003431small_imbalance:
3432 pwr_move = pwr_now = 0;
3433 imbn = 2;
3434 if (this_nr_running) {
3435 this_load_per_task /= this_nr_running;
3436 if (busiest_load_per_task > this_load_per_task)
3437 imbn = 1;
3438 } else
Peter Zijlstra408ed062008-06-27 13:41:28 +02003439 this_load_per_task = cpu_avg_load_per_task(this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07003440
Peter Zijlstra01c8c572008-10-24 11:06:12 +02003441 if (max_load - this_load + busiest_load_per_task >=
Ingo Molnardd41f592007-07-09 18:51:59 +02003442 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003443 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 return busiest;
3445 }
3446
3447 /*
3448 * OK, we don't have enough imbalance to justify moving tasks,
3449 * however we may be able to increase total CPU power used by
3450 * moving them.
3451 */
3452
Eric Dumazet5517d862007-05-08 00:32:57 -07003453 pwr_now += busiest->__cpu_power *
3454 min(busiest_load_per_task, max_load);
3455 pwr_now += this->__cpu_power *
3456 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 pwr_now /= SCHED_LOAD_SCALE;
3458
3459 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003460 tmp = sg_div_cpu_power(busiest,
3461 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003463 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003464 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003467 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003468 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003469 tmp = sg_div_cpu_power(this,
3470 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003472 tmp = sg_div_cpu_power(this,
3473 busiest_load_per_task * SCHED_LOAD_SCALE);
3474 pwr_move += this->__cpu_power *
3475 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 pwr_move /= SCHED_LOAD_SCALE;
3477
3478 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003479 if (pwr_move > pwr_now)
3480 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 }
3482
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 return busiest;
3484
3485out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003486#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003487 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003488 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003490 if (this == group_leader && group_leader != group_min) {
3491 *imbalance = min_load_per_task;
Vaidyanathan Srinivasan7a09b1a2008-12-18 23:26:22 +05303492 if (sched_mc_power_savings >= POWERSAVINGS_BALANCE_WAKEUP) {
3493 cpu_rq(this_cpu)->rd->sched_mc_preferred_wakeup_cpu =
Ingo Molnar9924da42008-12-19 00:53:40 +01003494 cpumask_first(sched_group_cpus(group_leader));
Vaidyanathan Srinivasan7a09b1a2008-12-18 23:26:22 +05303495 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003496 return group_min;
3497 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003498#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003499ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 *imbalance = 0;
3501 return NULL;
3502}
3503
3504/*
3505 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3506 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003507static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003508find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Rusty Russell96f874e22008-11-25 02:35:14 +10303509 unsigned long imbalance, const struct cpumask *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003511 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003512 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 int i;
3514
Rusty Russell758b2cd2008-11-25 02:35:04 +10303515 for_each_cpu(i, sched_group_cpus(group)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003516 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003517
Rusty Russell96f874e22008-11-25 02:35:14 +10303518 if (!cpumask_test_cpu(i, cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003519 continue;
3520
Ingo Molnar48f24c42006-07-03 00:25:40 -07003521 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003522 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
Ingo Molnardd41f592007-07-09 18:51:59 +02003524 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003525 continue;
3526
Ingo Molnardd41f592007-07-09 18:51:59 +02003527 if (wl > max_load) {
3528 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003529 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 }
3531 }
3532
3533 return busiest;
3534}
3535
3536/*
Nick Piggin77391d72005-06-25 14:57:30 -07003537 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3538 * so long as it is large enough.
3539 */
3540#define MAX_PINNED_INTERVAL 512
3541
3542/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3544 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003546static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003547 struct sched_domain *sd, enum cpu_idle_type idle,
Rusty Russell96f874e22008-11-25 02:35:14 +10303548 int *balance, struct cpumask *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549{
Peter Williams43010652007-08-09 11:16:46 +02003550 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003553 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003554 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07003555
Rusty Russell96f874e22008-11-25 02:35:14 +10303556 cpumask_setall(cpus);
Mike Travis7c16ec52008-04-04 18:11:11 -07003557
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003558 /*
3559 * When power savings policy is enabled for the parent domain, idle
3560 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003561 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003562 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003563 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003564 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003565 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003566 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567
Ingo Molnar2d723762007-10-15 17:00:12 +02003568 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003570redo:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02003571 update_shares(sd);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003572 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003573 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003574
Chen, Kenneth W06066712006-12-10 02:20:35 -08003575 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003576 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 if (!group) {
3579 schedstat_inc(sd, lb_nobusyg[idle]);
3580 goto out_balanced;
3581 }
3582
Mike Travis7c16ec52008-04-04 18:11:11 -07003583 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 if (!busiest) {
3585 schedstat_inc(sd, lb_nobusyq[idle]);
3586 goto out_balanced;
3587 }
3588
Nick Piggindb935db2005-06-25 14:57:11 -07003589 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
3591 schedstat_add(sd, lb_imbalance[idle], imbalance);
3592
Peter Williams43010652007-08-09 11:16:46 +02003593 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 if (busiest->nr_running > 1) {
3595 /*
3596 * Attempt to move tasks. If find_busiest_group has found
3597 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003598 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 * correctly treated as an imbalance.
3600 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003601 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003602 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003603 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003604 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003605 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003606 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003607
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003608 /*
3609 * some other cpu did the load balance for us.
3610 */
Peter Williams43010652007-08-09 11:16:46 +02003611 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003612 resched_cpu(this_cpu);
3613
Nick Piggin81026792005-06-25 14:57:07 -07003614 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003615 if (unlikely(all_pinned)) {
Rusty Russell96f874e22008-11-25 02:35:14 +10303616 cpumask_clear_cpu(cpu_of(busiest), cpus);
3617 if (!cpumask_empty(cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003618 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003619 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 }
Nick Piggin81026792005-06-25 14:57:07 -07003622
Peter Williams43010652007-08-09 11:16:46 +02003623 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 schedstat_inc(sd, lb_failed[idle]);
3625 sd->nr_balance_failed++;
3626
3627 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003629 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003630
3631 /* don't kick the migration_thread, if the curr
3632 * task on busiest cpu can't be moved to this_cpu
3633 */
Rusty Russell96f874e22008-11-25 02:35:14 +10303634 if (!cpumask_test_cpu(this_cpu,
3635 &busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003636 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003637 all_pinned = 1;
3638 goto out_one_pinned;
3639 }
3640
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 if (!busiest->active_balance) {
3642 busiest->active_balance = 1;
3643 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003644 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003646 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003647 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 wake_up_process(busiest->migration_thread);
3649
3650 /*
3651 * We've kicked active balancing, reset the failure
3652 * counter.
3653 */
Nick Piggin39507452005-06-25 14:57:09 -07003654 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 }
Nick Piggin81026792005-06-25 14:57:07 -07003656 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 sd->nr_balance_failed = 0;
3658
Nick Piggin81026792005-06-25 14:57:07 -07003659 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 /* We were unbalanced, so reset the balancing interval */
3661 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003662 } else {
3663 /*
3664 * If we've begun active balancing, start to back off. This
3665 * case may not be covered by the all_pinned logic if there
3666 * is only 1 task on the busy runqueue (because we don't call
3667 * move_tasks).
3668 */
3669 if (sd->balance_interval < sd->max_interval)
3670 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 }
3672
Peter Williams43010652007-08-09 11:16:46 +02003673 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003674 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003675 ld_moved = -1;
3676
3677 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
3679out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 schedstat_inc(sd, lb_balanced[idle]);
3681
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003682 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003683
3684out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003686 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3687 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 sd->balance_interval *= 2;
3689
Ingo Molnar48f24c42006-07-03 00:25:40 -07003690 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003691 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003692 ld_moved = -1;
3693 else
3694 ld_moved = 0;
3695out:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02003696 if (ld_moved)
3697 update_shares(sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003698 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699}
3700
3701/*
3702 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3703 * tasks if there is an imbalance.
3704 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003705 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 * this_rq is locked.
3707 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003708static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003709load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
Rusty Russell96f874e22008-11-25 02:35:14 +10303710 struct cpumask *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711{
3712 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003713 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003715 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003716 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003717 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003718
Rusty Russell96f874e22008-11-25 02:35:14 +10303719 cpumask_setall(cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003720
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003721 /*
3722 * When power savings policy is enabled for the parent domain, idle
3723 * sibling can pick up load irrespective of busy siblings. In this case,
3724 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003725 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003726 */
3727 if (sd->flags & SD_SHARE_CPUPOWER &&
3728 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003729 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
Ingo Molnar2d723762007-10-15 17:00:12 +02003731 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003732redo:
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02003733 update_shares_locked(this_rq, sd);
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003734 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003735 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003737 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003738 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 }
3740
Mike Travis7c16ec52008-04-04 18:11:11 -07003741 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003742 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003743 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003744 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 }
3746
Nick Piggindb935db2005-06-25 14:57:11 -07003747 BUG_ON(busiest == this_rq);
3748
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003749 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003750
Peter Williams43010652007-08-09 11:16:46 +02003751 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003752 if (busiest->nr_running > 1) {
3753 /* Attempt to move tasks */
3754 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003755 /* this_rq->clock is already updated */
3756 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003757 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003758 imbalance, sd, CPU_NEWLY_IDLE,
3759 &all_pinned);
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02003760 double_unlock_balance(this_rq, busiest);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003761
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003762 if (unlikely(all_pinned)) {
Rusty Russell96f874e22008-11-25 02:35:14 +10303763 cpumask_clear_cpu(cpu_of(busiest), cpus);
3764 if (!cpumask_empty(cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003765 goto redo;
3766 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003767 }
3768
Peter Williams43010652007-08-09 11:16:46 +02003769 if (!ld_moved) {
Vaidyanathan Srinivasan36dffab2008-12-20 10:06:38 +05303770 int active_balance = 0;
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05303771
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003772 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003773 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3774 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003775 return -1;
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05303776
3777 if (sched_mc_power_savings < POWERSAVINGS_BALANCE_WAKEUP)
3778 return -1;
3779
3780 if (sd->nr_balance_failed++ < 2)
3781 return -1;
3782
3783 /*
3784 * The only task running in a non-idle cpu can be moved to this
3785 * cpu in an attempt to completely freeup the other CPU
3786 * package. The same method used to move task in load_balance()
3787 * have been extended for load_balance_newidle() to speedup
3788 * consolidation at sched_mc=POWERSAVINGS_BALANCE_WAKEUP (2)
3789 *
3790 * The package power saving logic comes from
3791 * find_busiest_group(). If there are no imbalance, then
3792 * f_b_g() will return NULL. However when sched_mc={1,2} then
3793 * f_b_g() will select a group from which a running task may be
3794 * pulled to this cpu in order to make the other package idle.
3795 * If there is no opportunity to make a package idle and if
3796 * there are no imbalance, then f_b_g() will return NULL and no
3797 * action will be taken in load_balance_newidle().
3798 *
3799 * Under normal task pull operation due to imbalance, there
3800 * will be more than one task in the source run queue and
3801 * move_tasks() will succeed. ld_moved will be true and this
3802 * active balance code will not be triggered.
3803 */
3804
3805 /* Lock busiest in correct order while this_rq is held */
3806 double_lock_balance(this_rq, busiest);
3807
3808 /*
3809 * don't kick the migration_thread, if the curr
3810 * task on busiest cpu can't be moved to this_cpu
3811 */
Mike Travis6ca09df2008-12-31 18:08:45 -08003812 if (!cpumask_test_cpu(this_cpu, &busiest->curr->cpus_allowed)) {
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05303813 double_unlock_balance(this_rq, busiest);
3814 all_pinned = 1;
3815 return ld_moved;
3816 }
3817
3818 if (!busiest->active_balance) {
3819 busiest->active_balance = 1;
3820 busiest->push_cpu = this_cpu;
3821 active_balance = 1;
3822 }
3823
3824 double_unlock_balance(this_rq, busiest);
Peter Zijlstrada8d5082009-01-07 15:28:57 +01003825 /*
3826 * Should not call ttwu while holding a rq->lock
3827 */
3828 spin_unlock(&this_rq->lock);
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05303829 if (active_balance)
3830 wake_up_process(busiest->migration_thread);
Peter Zijlstrada8d5082009-01-07 15:28:57 +01003831 spin_lock(&this_rq->lock);
Vaidyanathan Srinivasanad273b32008-12-18 23:26:36 +05303832
Nick Piggin5969fe02005-09-10 00:26:19 -07003833 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003834 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02003836 update_shares_locked(this_rq, sd);
Peter Williams43010652007-08-09 11:16:46 +02003837 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003838
3839out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003840 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003841 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003842 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003843 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003844 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003845
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003846 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847}
3848
3849/*
3850 * idle_balance is called by schedule() if this_cpu is about to become
3851 * idle. Attempts to pull tasks from other CPUs.
3852 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003853static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854{
3855 struct sched_domain *sd;
Vaidyanathan Srinivasanefbe0272008-12-08 20:52:49 +05303856 int pulled_task = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02003857 unsigned long next_balance = jiffies + HZ;
Rusty Russell4d2732c2008-11-25 02:35:10 +10303858 cpumask_var_t tmpmask;
3859
3860 if (!alloc_cpumask_var(&tmpmask, GFP_ATOMIC))
3861 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862
3863 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003864 unsigned long interval;
3865
3866 if (!(sd->flags & SD_LOAD_BALANCE))
3867 continue;
3868
3869 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003870 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003871 pulled_task = load_balance_newidle(this_cpu, this_rq,
Rusty Russell4d2732c2008-11-25 02:35:10 +10303872 sd, tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003873
3874 interval = msecs_to_jiffies(sd->balance_interval);
3875 if (time_after(next_balance, sd->last_balance + interval))
3876 next_balance = sd->last_balance + interval;
3877 if (pulled_task)
3878 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003880 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003881 /*
3882 * We are going idle. next_balance may be set based on
3883 * a busy processor. So reset next_balance.
3884 */
3885 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003886 }
Rusty Russell4d2732c2008-11-25 02:35:10 +10303887 free_cpumask_var(tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888}
3889
3890/*
3891 * active_load_balance is run by migration threads. It pushes running tasks
3892 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3893 * running on each physical CPU where possible, and avoids physical /
3894 * logical imbalances.
3895 *
3896 * Called with busiest_rq locked.
3897 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003898static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899{
Nick Piggin39507452005-06-25 14:57:09 -07003900 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003901 struct sched_domain *sd;
3902 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003903
Ingo Molnar48f24c42006-07-03 00:25:40 -07003904 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003905 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003906 return;
3907
3908 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
3910 /*
Nick Piggin39507452005-06-25 14:57:09 -07003911 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003912 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003913 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 */
Nick Piggin39507452005-06-25 14:57:09 -07003915 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916
Nick Piggin39507452005-06-25 14:57:09 -07003917 /* move a task from busiest_rq to target_rq */
3918 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003919 update_rq_clock(busiest_rq);
3920 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
Nick Piggin39507452005-06-25 14:57:09 -07003922 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003923 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003924 if ((sd->flags & SD_LOAD_BALANCE) &&
Rusty Russell758b2cd2008-11-25 02:35:04 +10303925 cpumask_test_cpu(busiest_cpu, sched_domain_span(sd)))
Nick Piggin39507452005-06-25 14:57:09 -07003926 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928
Ingo Molnar48f24c42006-07-03 00:25:40 -07003929 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003930 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931
Peter Williams43010652007-08-09 11:16:46 +02003932 if (move_one_task(target_rq, target_cpu, busiest_rq,
3933 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003934 schedstat_inc(sd, alb_pushed);
3935 else
3936 schedstat_inc(sd, alb_failed);
3937 }
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02003938 double_unlock_balance(busiest_rq, target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939}
3940
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003941#ifdef CONFIG_NO_HZ
3942static struct {
3943 atomic_t load_balancer;
Rusty Russell7d1e6a92008-11-25 02:35:09 +10303944 cpumask_var_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003945} nohz ____cacheline_aligned = {
3946 .load_balancer = ATOMIC_INIT(-1),
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003947};
3948
Christoph Lameter7835b982006-12-10 02:20:22 -08003949/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003950 * This routine will try to nominate the ilb (idle load balancing)
3951 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3952 * load balancing on behalf of all those cpus. If all the cpus in the system
3953 * go into this tickless mode, then there will be no ilb owner (as there is
3954 * no need for one) and all the cpus will sleep till the next wakeup event
3955 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003956 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003957 * For the ilb owner, tick is not stopped. And this tick will be used
3958 * for idle load balancing. ilb owner will still be part of
3959 * nohz.cpu_mask..
3960 *
3961 * While stopping the tick, this cpu will become the ilb owner if there
3962 * is no other owner. And will be the owner till that cpu becomes busy
3963 * or if all cpus in the system stop their ticks at which point
3964 * there is no need for ilb owner.
3965 *
3966 * When the ilb owner becomes busy, it nominates another owner, during the
3967 * next busy scheduler_tick()
3968 */
3969int select_nohz_load_balancer(int stop_tick)
3970{
3971 int cpu = smp_processor_id();
3972
3973 if (stop_tick) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003974 cpu_rq(cpu)->in_nohz_recently = 1;
3975
Suresh Siddha483b4ee2009-02-04 11:59:44 -08003976 if (!cpu_active(cpu)) {
3977 if (atomic_read(&nohz.load_balancer) != cpu)
3978 return 0;
3979
3980 /*
3981 * If we are going offline and still the leader,
3982 * give up!
3983 */
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003984 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3985 BUG();
Suresh Siddha483b4ee2009-02-04 11:59:44 -08003986
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003987 return 0;
3988 }
3989
Suresh Siddha483b4ee2009-02-04 11:59:44 -08003990 cpumask_set_cpu(cpu, nohz.cpu_mask);
3991
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003992 /* time for ilb owner also to sleep */
Rusty Russell7d1e6a92008-11-25 02:35:09 +10303993 if (cpumask_weight(nohz.cpu_mask) == num_online_cpus()) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003994 if (atomic_read(&nohz.load_balancer) == cpu)
3995 atomic_set(&nohz.load_balancer, -1);
3996 return 0;
3997 }
3998
3999 if (atomic_read(&nohz.load_balancer) == -1) {
4000 /* make me the ilb owner */
4001 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
4002 return 1;
4003 } else if (atomic_read(&nohz.load_balancer) == cpu)
4004 return 1;
4005 } else {
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304006 if (!cpumask_test_cpu(cpu, nohz.cpu_mask))
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004007 return 0;
4008
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304009 cpumask_clear_cpu(cpu, nohz.cpu_mask);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004010
4011 if (atomic_read(&nohz.load_balancer) == cpu)
4012 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4013 BUG();
4014 }
4015 return 0;
4016}
4017#endif
4018
4019static DEFINE_SPINLOCK(balancing);
4020
4021/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004022 * It checks each scheduling domain to see if it is due to be balanced,
4023 * and initiates a balancing operation if so.
4024 *
4025 * Balancing parameters are set up in arch_init_sched_domains.
4026 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004027static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08004028{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004029 int balance = 1;
4030 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08004031 unsigned long interval;
4032 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004033 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08004034 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004035 int update_next_balance = 0;
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004036 int need_serialize;
Rusty Russella0e90242008-11-25 02:35:11 +10304037 cpumask_var_t tmp;
4038
4039 /* Fails alloc? Rebalancing probably not a priority right now. */
4040 if (!alloc_cpumask_var(&tmp, GFP_ATOMIC))
4041 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004043 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 if (!(sd->flags & SD_LOAD_BALANCE))
4045 continue;
4046
4047 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004048 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 interval *= sd->busy_factor;
4050
4051 /* scale ms to jiffies */
4052 interval = msecs_to_jiffies(interval);
4053 if (unlikely(!interval))
4054 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02004055 if (interval > HZ*NR_CPUS/10)
4056 interval = HZ*NR_CPUS/10;
4057
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004058 need_serialize = sd->flags & SD_SERIALIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004060 if (need_serialize) {
Christoph Lameter08c183f2006-12-10 02:20:29 -08004061 if (!spin_trylock(&balancing))
4062 goto out;
4063 }
4064
Christoph Lameterc9819f42006-12-10 02:20:25 -08004065 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Rusty Russella0e90242008-11-25 02:35:11 +10304066 if (load_balance(cpu, rq, sd, idle, &balance, tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004067 /*
4068 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07004069 * longer idle, or one of our SMT siblings is
4070 * not idle.
4071 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004072 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004074 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 }
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004076 if (need_serialize)
Christoph Lameter08c183f2006-12-10 02:20:29 -08004077 spin_unlock(&balancing);
4078out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02004079 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08004080 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004081 update_next_balance = 1;
4082 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004083
4084 /*
4085 * Stop the load balance at this level. There is another
4086 * CPU in our sched group which is doing load balancing more
4087 * actively.
4088 */
4089 if (!balance)
4090 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004092
4093 /*
4094 * next_balance will be updated only when there is a need.
4095 * When the cpu is attached to null domain for ex, it will not be
4096 * updated.
4097 */
4098 if (likely(update_next_balance))
4099 rq->next_balance = next_balance;
Rusty Russella0e90242008-11-25 02:35:11 +10304100
4101 free_cpumask_var(tmp);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004102}
4103
4104/*
4105 * run_rebalance_domains is triggered when needed from the scheduler tick.
4106 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4107 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4108 */
4109static void run_rebalance_domains(struct softirq_action *h)
4110{
Ingo Molnardd41f592007-07-09 18:51:59 +02004111 int this_cpu = smp_processor_id();
4112 struct rq *this_rq = cpu_rq(this_cpu);
4113 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4114 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004115
Ingo Molnardd41f592007-07-09 18:51:59 +02004116 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004117
4118#ifdef CONFIG_NO_HZ
4119 /*
4120 * If this cpu is the owner for idle load balancing, then do the
4121 * balancing on behalf of the other idle cpus whose ticks are
4122 * stopped.
4123 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004124 if (this_rq->idle_at_tick &&
4125 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004126 struct rq *rq;
4127 int balance_cpu;
4128
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304129 for_each_cpu(balance_cpu, nohz.cpu_mask) {
4130 if (balance_cpu == this_cpu)
4131 continue;
4132
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004133 /*
4134 * If this cpu gets work to do, stop the load balancing
4135 * work being done for other cpus. Next load
4136 * balancing owner will pick it up.
4137 */
4138 if (need_resched())
4139 break;
4140
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004141 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004142
4143 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004144 if (time_after(this_rq->next_balance, rq->next_balance))
4145 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004146 }
4147 }
4148#endif
4149}
4150
4151/*
4152 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4153 *
4154 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4155 * idle load balancing owner or decide to stop the periodic load balancing,
4156 * if the whole system is idle.
4157 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004158static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004159{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004160#ifdef CONFIG_NO_HZ
4161 /*
4162 * If we were in the nohz mode recently and busy at the current
4163 * scheduler tick, then check if we need to nominate new idle
4164 * load balancer.
4165 */
4166 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4167 rq->in_nohz_recently = 0;
4168
4169 if (atomic_read(&nohz.load_balancer) == cpu) {
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304170 cpumask_clear_cpu(cpu, nohz.cpu_mask);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004171 atomic_set(&nohz.load_balancer, -1);
4172 }
4173
4174 if (atomic_read(&nohz.load_balancer) == -1) {
4175 /*
4176 * simple selection for now: Nominate the
4177 * first cpu in the nohz list to be the next
4178 * ilb owner.
4179 *
4180 * TBD: Traverse the sched domains and nominate
4181 * the nearest cpu in the nohz.cpu_mask.
4182 */
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304183 int ilb = cpumask_first(nohz.cpu_mask);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004184
Mike Travis434d53b2008-04-04 18:11:04 -07004185 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004186 resched_cpu(ilb);
4187 }
4188 }
4189
4190 /*
4191 * If this cpu is idle and doing idle load balancing for all the
4192 * cpus with ticks stopped, is it time for that to stop?
4193 */
4194 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304195 cpumask_weight(nohz.cpu_mask) == num_online_cpus()) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004196 resched_cpu(cpu);
4197 return;
4198 }
4199
4200 /*
4201 * If this cpu is idle and the idle load balancing is done by
4202 * someone else, then no need raise the SCHED_SOFTIRQ
4203 */
4204 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
Rusty Russell7d1e6a92008-11-25 02:35:09 +10304205 cpumask_test_cpu(cpu, nohz.cpu_mask))
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004206 return;
4207#endif
4208 if (time_after_eq(jiffies, rq->next_balance))
4209 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210}
Ingo Molnardd41f592007-07-09 18:51:59 +02004211
4212#else /* CONFIG_SMP */
4213
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214/*
4215 * on UP we do not need to balance between CPUs:
4216 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004217static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218{
4219}
Ingo Molnardd41f592007-07-09 18:51:59 +02004220
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221#endif
4222
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223DEFINE_PER_CPU(struct kernel_stat, kstat);
4224
4225EXPORT_PER_CPU_SYMBOL(kstat);
4226
4227/*
Frank Mayharf06febc2008-09-12 09:54:39 -07004228 * Return any ns on the sched_clock that have not yet been banked in
4229 * @p in case that task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 */
Frank Mayharbb34d922008-09-12 09:54:39 -07004231unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004234 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07004235 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004236
Ingo Molnar41b86e92007-07-09 18:51:58 +02004237 rq = task_rq_lock(p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02004238
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004239 if (task_current(rq, p)) {
Frank Mayharf06febc2008-09-12 09:54:39 -07004240 u64 delta_exec;
4241
Ingo Molnara8e504d2007-08-09 11:16:47 +02004242 update_rq_clock(rq);
4243 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004244 if ((s64)delta_exec > 0)
Frank Mayharbb34d922008-09-12 09:54:39 -07004245 ns = delta_exec;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004246 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07004247
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 task_rq_unlock(rq, &flags);
4249
4250 return ns;
4251}
4252
4253/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 * Account user cpu time to a process.
4255 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 * @cputime: the cpu time spent in user space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004257 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004259void account_user_time(struct task_struct *p, cputime_t cputime,
4260 cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261{
4262 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4263 cputime64_t tmp;
4264
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004265 /* Add user time to process. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004267 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07004268 account_group_user_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269
4270 /* Add user time to cpustat. */
4271 tmp = cputime_to_cputime64(cputime);
4272 if (TASK_NICE(p) > 0)
4273 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4274 else
4275 cpustat->user = cputime64_add(cpustat->user, tmp);
Jonathan Lim49b5cf32008-07-25 01:48:40 -07004276 /* Account for user time used */
4277 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278}
4279
4280/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004281 * Account guest cpu time to a process.
4282 * @p: the process that the cpu time gets accounted to
4283 * @cputime: the cpu time spent in virtual machine since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004284 * @cputime_scaled: cputime scaled by cpu frequency
Laurent Vivier94886b82007-10-15 17:00:19 +02004285 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004286static void account_guest_time(struct task_struct *p, cputime_t cputime,
4287 cputime_t cputime_scaled)
Laurent Vivier94886b82007-10-15 17:00:19 +02004288{
4289 cputime64_t tmp;
4290 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4291
4292 tmp = cputime_to_cputime64(cputime);
4293
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004294 /* Add guest time to process. */
Laurent Vivier94886b82007-10-15 17:00:19 +02004295 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004296 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07004297 account_group_user_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02004298 p->gtime = cputime_add(p->gtime, cputime);
4299
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004300 /* Add guest time to cpustat. */
Laurent Vivier94886b82007-10-15 17:00:19 +02004301 cpustat->user = cputime64_add(cpustat->user, tmp);
4302 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4303}
4304
4305/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 * Account system cpu time to a process.
4307 * @p: the process that the cpu time gets accounted to
4308 * @hardirq_offset: the offset to subtract from hardirq_count()
4309 * @cputime: the cpu time spent in kernel space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004310 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 */
4312void account_system_time(struct task_struct *p, int hardirq_offset,
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004313 cputime_t cputime, cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314{
4315 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 cputime64_t tmp;
4317
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004318 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004319 account_guest_time(p, cputime, cputime_scaled);
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004320 return;
4321 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004322
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004323 /* Add system time to process. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 p->stime = cputime_add(p->stime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01004325 p->stimescaled = cputime_add(p->stimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07004326 account_group_system_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
4328 /* Add system time to cpustat. */
4329 tmp = cputime_to_cputime64(cputime);
4330 if (hardirq_count() - hardirq_offset)
4331 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4332 else if (softirq_count())
4333 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 else
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004335 cpustat->system = cputime64_add(cpustat->system, tmp);
4336
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 /* Account for system time used */
4338 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339}
4340
4341/*
4342 * Account for involuntary wait time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 * @steal: the cpu time spent in involuntary wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004345void account_steal_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004348 cputime64_t cputime64 = cputime_to_cputime64(cputime);
4349
4350 cpustat->steal = cputime64_add(cpustat->steal, cputime64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351}
4352
Christoph Lameter7835b982006-12-10 02:20:22 -08004353/*
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004354 * Account for idle time.
4355 * @cputime: the cpu time spent in idle wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004357void account_idle_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358{
4359 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004360 cputime64_t cputime64 = cputime_to_cputime64(cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 struct rq *rq = this_rq();
4362
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004363 if (atomic_read(&rq->nr_iowait) > 0)
4364 cpustat->iowait = cputime64_add(cpustat->iowait, cputime64);
4365 else
4366 cpustat->idle = cputime64_add(cpustat->idle, cputime64);
Christoph Lameter7835b982006-12-10 02:20:22 -08004367}
4368
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004369#ifndef CONFIG_VIRT_CPU_ACCOUNTING
4370
4371/*
4372 * Account a single tick of cpu time.
4373 * @p: the process that the cpu time gets accounted to
4374 * @user_tick: indicates if the tick is a user or a system tick
4375 */
4376void account_process_tick(struct task_struct *p, int user_tick)
4377{
4378 cputime_t one_jiffy = jiffies_to_cputime(1);
4379 cputime_t one_jiffy_scaled = cputime_to_scaled(one_jiffy);
4380 struct rq *rq = this_rq();
4381
4382 if (user_tick)
4383 account_user_time(p, one_jiffy, one_jiffy_scaled);
4384 else if (p != rq->idle)
4385 account_system_time(p, HARDIRQ_OFFSET, one_jiffy,
4386 one_jiffy_scaled);
4387 else
4388 account_idle_time(one_jiffy);
4389}
4390
4391/*
4392 * Account multiple ticks of steal time.
4393 * @p: the process from which the cpu time has been stolen
4394 * @ticks: number of stolen ticks
4395 */
4396void account_steal_ticks(unsigned long ticks)
4397{
4398 account_steal_time(jiffies_to_cputime(ticks));
4399}
4400
4401/*
4402 * Account multiple ticks of idle time.
4403 * @ticks: number of stolen ticks
4404 */
4405void account_idle_ticks(unsigned long ticks)
4406{
4407 account_idle_time(jiffies_to_cputime(ticks));
4408}
4409
4410#endif
4411
Christoph Lameter7835b982006-12-10 02:20:22 -08004412/*
Balbir Singh49048622008-09-05 18:12:23 +02004413 * Use precise platform statistics if available:
4414 */
4415#ifdef CONFIG_VIRT_CPU_ACCOUNTING
4416cputime_t task_utime(struct task_struct *p)
4417{
4418 return p->utime;
4419}
4420
4421cputime_t task_stime(struct task_struct *p)
4422{
4423 return p->stime;
4424}
4425#else
4426cputime_t task_utime(struct task_struct *p)
4427{
4428 clock_t utime = cputime_to_clock_t(p->utime),
4429 total = utime + cputime_to_clock_t(p->stime);
4430 u64 temp;
4431
4432 /*
4433 * Use CFS's precise accounting:
4434 */
4435 temp = (u64)nsec_to_clock_t(p->se.sum_exec_runtime);
4436
4437 if (total) {
4438 temp *= utime;
4439 do_div(temp, total);
4440 }
4441 utime = (clock_t)temp;
4442
4443 p->prev_utime = max(p->prev_utime, clock_t_to_cputime(utime));
4444 return p->prev_utime;
4445}
4446
4447cputime_t task_stime(struct task_struct *p)
4448{
4449 clock_t stime;
4450
4451 /*
4452 * Use CFS's precise accounting. (we subtract utime from
4453 * the total, to make sure the total observed by userspace
4454 * grows monotonically - apps rely on that):
4455 */
4456 stime = nsec_to_clock_t(p->se.sum_exec_runtime) -
4457 cputime_to_clock_t(task_utime(p));
4458
4459 if (stime >= 0)
4460 p->prev_stime = max(p->prev_stime, clock_t_to_cputime(stime));
4461
4462 return p->prev_stime;
4463}
4464#endif
4465
4466inline cputime_t task_gtime(struct task_struct *p)
4467{
4468 return p->gtime;
4469}
4470
4471/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004472 * This function gets called by the timer code, with HZ frequency.
4473 * We call it with interrupts disabled.
4474 *
4475 * It also gets called by the fork code, when changing the parent's
4476 * timeslices.
4477 */
4478void scheduler_tick(void)
4479{
Christoph Lameter7835b982006-12-10 02:20:22 -08004480 int cpu = smp_processor_id();
4481 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004482 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004483
4484 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004485
Ingo Molnardd41f592007-07-09 18:51:59 +02004486 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004487 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004488 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004489 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004490 spin_unlock(&rq->lock);
4491
Christoph Lametere418e1c2006-12-10 02:20:23 -08004492#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004493 rq->idle_at_tick = idle_cpu(cpu);
4494 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004495#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496}
4497
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004498#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
4499 defined(CONFIG_PREEMPT_TRACER))
4500
4501static inline unsigned long get_parent_ip(unsigned long addr)
4502{
4503 if (in_lock_functions(addr)) {
4504 addr = CALLER_ADDR2;
4505 if (in_lock_functions(addr))
4506 addr = CALLER_ADDR3;
4507 }
4508 return addr;
4509}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510
Srinivasa Ds43627582008-02-23 15:24:04 -08004511void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004513#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 /*
4515 * Underflow?
4516 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004517 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4518 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004519#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004521#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 /*
4523 * Spinlock count overflowing soon?
4524 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004525 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4526 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004527#endif
4528 if (preempt_count() == val)
4529 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530}
4531EXPORT_SYMBOL(add_preempt_count);
4532
Srinivasa Ds43627582008-02-23 15:24:04 -08004533void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004535#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 /*
4537 * Underflow?
4538 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01004539 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004540 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 /*
4542 * Is the spinlock portion underflowing?
4543 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004544 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4545 !(preempt_count() & PREEMPT_MASK)))
4546 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004547#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004548
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004549 if (preempt_count() == val)
4550 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 preempt_count() -= val;
4552}
4553EXPORT_SYMBOL(sub_preempt_count);
4554
4555#endif
4556
4557/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004558 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004560static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561{
Satyam Sharma838225b2007-10-24 18:23:50 +02004562 struct pt_regs *regs = get_irq_regs();
4563
4564 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4565 prev->comm, prev->pid, preempt_count());
4566
Ingo Molnardd41f592007-07-09 18:51:59 +02004567 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07004568 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02004569 if (irqs_disabled())
4570 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004571
4572 if (regs)
4573 show_regs(regs);
4574 else
4575 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004576}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577
Ingo Molnardd41f592007-07-09 18:51:59 +02004578/*
4579 * Various schedule()-time debugging checks and statistics:
4580 */
4581static inline void schedule_debug(struct task_struct *prev)
4582{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004584 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 * schedule() atomically, we ignore that path for now.
4586 * Otherwise, whine if we are scheduling when we should not be.
4587 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02004588 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02004589 __schedule_bug(prev);
4590
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4592
Ingo Molnar2d723762007-10-15 17:00:12 +02004593 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004594#ifdef CONFIG_SCHEDSTATS
4595 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004596 schedstat_inc(this_rq(), bkl_count);
4597 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004598 }
4599#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004600}
4601
4602/*
4603 * Pick up the highest-prio task:
4604 */
4605static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004606pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004607{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004608 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004609 struct task_struct *p;
4610
4611 /*
4612 * Optimization: we know that if all tasks are in
4613 * the fair class we can call that function directly:
4614 */
4615 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004616 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004617 if (likely(p))
4618 return p;
4619 }
4620
4621 class = sched_class_highest;
4622 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004623 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004624 if (p)
4625 return p;
4626 /*
4627 * Will never be NULL as the idle class always
4628 * returns a non-NULL p:
4629 */
4630 class = class->next;
4631 }
4632}
4633
4634/*
4635 * schedule() is the main scheduler function.
4636 */
4637asmlinkage void __sched schedule(void)
4638{
4639 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004640 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004641 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02004642 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02004643
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644need_resched:
4645 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004646 cpu = smp_processor_id();
4647 rq = cpu_rq(cpu);
4648 rcu_qsctr_inc(cpu);
4649 prev = rq->curr;
4650 switch_count = &prev->nivcsw;
4651
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 release_kernel_lock(prev);
4653need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654
Ingo Molnardd41f592007-07-09 18:51:59 +02004655 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656
Peter Zijlstra31656512008-07-18 18:01:23 +02004657 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004658 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004659
Peter Zijlstra8cd162c2008-10-15 20:37:23 +02004660 spin_lock_irq(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004661 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004662 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663
Ingo Molnardd41f592007-07-09 18:51:59 +02004664 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Oleg Nesterov16882c12008-06-08 21:20:41 +04004665 if (unlikely(signal_pending_state(prev->state, prev)))
Ingo Molnardd41f592007-07-09 18:51:59 +02004666 prev->state = TASK_RUNNING;
Oleg Nesterov16882c12008-06-08 21:20:41 +04004667 else
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004668 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004669 switch_count = &prev->nvcsw;
4670 }
4671
Steven Rostedt9a897c52008-01-25 21:08:22 +01004672#ifdef CONFIG_SMP
4673 if (prev->sched_class->pre_schedule)
4674 prev->sched_class->pre_schedule(rq, prev);
4675#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004676
Ingo Molnardd41f592007-07-09 18:51:59 +02004677 if (unlikely(!rq->nr_running))
4678 idle_balance(cpu, rq);
4679
Ingo Molnar31ee5292007-08-09 11:16:49 +02004680 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004681 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004684 sched_info_switch(prev, next);
4685
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 rq->nr_switches++;
4687 rq->curr = next;
4688 ++*switch_count;
4689
Ingo Molnardd41f592007-07-09 18:51:59 +02004690 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004691 /*
4692 * the context switch might have flipped the stack from under
4693 * us, hence refresh the local variables.
4694 */
4695 cpu = smp_processor_id();
4696 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 } else
4698 spin_unlock_irq(&rq->lock);
4699
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004700 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004702
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 preempt_enable_no_resched();
4704 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4705 goto need_resched;
4706}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707EXPORT_SYMBOL(schedule);
4708
4709#ifdef CONFIG_PREEMPT
4710/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004711 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004712 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713 * occur there and call schedule directly.
4714 */
4715asmlinkage void __sched preempt_schedule(void)
4716{
4717 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004718
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 /*
4720 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004721 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004723 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724 return;
4725
Andi Kleen3a5c3592007-10-15 17:00:14 +02004726 do {
4727 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004728 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004729 sub_preempt_count(PREEMPT_ACTIVE);
4730
4731 /*
4732 * Check again in case we missed a preemption opportunity
4733 * between schedule and now.
4734 */
4735 barrier();
4736 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738EXPORT_SYMBOL(preempt_schedule);
4739
4740/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004741 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 * off of irq context.
4743 * Note, that this is called and return with irqs disabled. This will
4744 * protect us against recursive calling from irq.
4745 */
4746asmlinkage void __sched preempt_schedule_irq(void)
4747{
4748 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004749
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004750 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 BUG_ON(ti->preempt_count || !irqs_disabled());
4752
Andi Kleen3a5c3592007-10-15 17:00:14 +02004753 do {
4754 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004755 local_irq_enable();
4756 schedule();
4757 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004758 sub_preempt_count(PREEMPT_ACTIVE);
4759
4760 /*
4761 * Check again in case we missed a preemption opportunity
4762 * between schedule and now.
4763 */
4764 barrier();
4765 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766}
4767
4768#endif /* CONFIG_PREEMPT */
4769
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004770int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4771 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004773 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775EXPORT_SYMBOL(default_wake_function);
4776
4777/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004778 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4779 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 * number) then we wake all the non-exclusive tasks and one exclusive task.
4781 *
4782 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004783 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4785 */
Johannes Weiner777c6c52009-02-04 15:12:14 -08004786void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4787 int nr_exclusive, int sync, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004789 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004791 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004792 unsigned flags = curr->flags;
4793
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004795 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 break;
4797 }
4798}
4799
4800/**
4801 * __wake_up - wake up threads blocked on a waitqueue.
4802 * @q: the waitqueue
4803 * @mode: which threads
4804 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004805 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004807void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004808 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809{
4810 unsigned long flags;
4811
4812 spin_lock_irqsave(&q->lock, flags);
4813 __wake_up_common(q, mode, nr_exclusive, 0, key);
4814 spin_unlock_irqrestore(&q->lock, flags);
4815}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816EXPORT_SYMBOL(__wake_up);
4817
4818/*
4819 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4820 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004821void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822{
4823 __wake_up_common(q, mode, 1, 0, NULL);
4824}
4825
4826/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004827 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 * @q: the waitqueue
4829 * @mode: which threads
4830 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4831 *
4832 * The sync wakeup differs that the waker knows that it will schedule
4833 * away soon, so while the target thread will be woken up, it will not
4834 * be migrated to another CPU - ie. the two threads are 'synchronized'
4835 * with each other. This can prevent needless bouncing between CPUs.
4836 *
4837 * On UP it can prevent extra preemption.
4838 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004839void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004840__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841{
4842 unsigned long flags;
4843 int sync = 1;
4844
4845 if (unlikely(!q))
4846 return;
4847
4848 if (unlikely(!nr_exclusive))
4849 sync = 0;
4850
4851 spin_lock_irqsave(&q->lock, flags);
4852 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4853 spin_unlock_irqrestore(&q->lock, flags);
4854}
4855EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4856
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004857/**
4858 * complete: - signals a single thread waiting on this completion
4859 * @x: holds the state of this particular completion
4860 *
4861 * This will wake up a single thread waiting on this completion. Threads will be
4862 * awakened in the same order in which they were queued.
4863 *
4864 * See also complete_all(), wait_for_completion() and related routines.
4865 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004866void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867{
4868 unsigned long flags;
4869
4870 spin_lock_irqsave(&x->wait.lock, flags);
4871 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004872 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 spin_unlock_irqrestore(&x->wait.lock, flags);
4874}
4875EXPORT_SYMBOL(complete);
4876
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004877/**
4878 * complete_all: - signals all threads waiting on this completion
4879 * @x: holds the state of this particular completion
4880 *
4881 * This will wake up all threads waiting on this particular completion event.
4882 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004883void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884{
4885 unsigned long flags;
4886
4887 spin_lock_irqsave(&x->wait.lock, flags);
4888 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004889 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 spin_unlock_irqrestore(&x->wait.lock, flags);
4891}
4892EXPORT_SYMBOL(complete_all);
4893
Andi Kleen8cbbe862007-10-15 17:00:14 +02004894static inline long __sched
4895do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897 if (!x->done) {
4898 DECLARE_WAITQUEUE(wait, current);
4899
4900 wait.flags |= WQ_FLAG_EXCLUSIVE;
4901 __add_wait_queue_tail(&x->wait, &wait);
4902 do {
Oleg Nesterov94d3d822008-08-20 16:54:41 -07004903 if (signal_pending_state(state, current)) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04004904 timeout = -ERESTARTSYS;
4905 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004906 }
4907 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004909 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004911 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004913 if (!x->done)
4914 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 }
4916 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04004917 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004918}
4919
4920static long __sched
4921wait_for_common(struct completion *x, long timeout, int state)
4922{
4923 might_sleep();
4924
4925 spin_lock_irq(&x->wait.lock);
4926 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004928 return timeout;
4929}
4930
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004931/**
4932 * wait_for_completion: - waits for completion of a task
4933 * @x: holds the state of this particular completion
4934 *
4935 * This waits to be signaled for completion of a specific task. It is NOT
4936 * interruptible and there is no timeout.
4937 *
4938 * See also similar routines (i.e. wait_for_completion_timeout()) with timeout
4939 * and interrupt capability. Also see complete().
4940 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004941void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004942{
4943 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944}
4945EXPORT_SYMBOL(wait_for_completion);
4946
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004947/**
4948 * wait_for_completion_timeout: - waits for completion of a task (w/timeout)
4949 * @x: holds the state of this particular completion
4950 * @timeout: timeout value in jiffies
4951 *
4952 * This waits for either a completion of a specific task to be signaled or for a
4953 * specified timeout to expire. The timeout is in jiffies. It is not
4954 * interruptible.
4955 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004956unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4958{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004959 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960}
4961EXPORT_SYMBOL(wait_for_completion_timeout);
4962
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004963/**
4964 * wait_for_completion_interruptible: - waits for completion of a task (w/intr)
4965 * @x: holds the state of this particular completion
4966 *
4967 * This waits for completion of a specific task to be signaled. It is
4968 * interruptible.
4969 */
Andi Kleen8cbbe862007-10-15 17:00:14 +02004970int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971{
Andi Kleen51e97992007-10-18 21:32:55 +02004972 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4973 if (t == -ERESTARTSYS)
4974 return t;
4975 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976}
4977EXPORT_SYMBOL(wait_for_completion_interruptible);
4978
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004979/**
4980 * wait_for_completion_interruptible_timeout: - waits for completion (w/(to,intr))
4981 * @x: holds the state of this particular completion
4982 * @timeout: timeout value in jiffies
4983 *
4984 * This waits for either a completion of a specific task to be signaled or for a
4985 * specified timeout to expire. It is interruptible. The timeout is in jiffies.
4986 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004987unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988wait_for_completion_interruptible_timeout(struct completion *x,
4989 unsigned long timeout)
4990{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004991 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992}
4993EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4994
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004995/**
4996 * wait_for_completion_killable: - waits for completion of a task (killable)
4997 * @x: holds the state of this particular completion
4998 *
4999 * This waits to be signaled for completion of a specific task. It can be
5000 * interrupted by a kill signal.
5001 */
Matthew Wilcox009e5772007-12-06 12:29:54 -05005002int __sched wait_for_completion_killable(struct completion *x)
5003{
5004 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
5005 if (t == -ERESTARTSYS)
5006 return t;
5007 return 0;
5008}
5009EXPORT_SYMBOL(wait_for_completion_killable);
5010
Dave Chinnerbe4de352008-08-15 00:40:44 -07005011/**
5012 * try_wait_for_completion - try to decrement a completion without blocking
5013 * @x: completion structure
5014 *
5015 * Returns: 0 if a decrement cannot be done without blocking
5016 * 1 if a decrement succeeded.
5017 *
5018 * If a completion is being used as a counting completion,
5019 * attempt to decrement the counter without blocking. This
5020 * enables us to avoid waiting if the resource the completion
5021 * is protecting is not available.
5022 */
5023bool try_wait_for_completion(struct completion *x)
5024{
5025 int ret = 1;
5026
5027 spin_lock_irq(&x->wait.lock);
5028 if (!x->done)
5029 ret = 0;
5030 else
5031 x->done--;
5032 spin_unlock_irq(&x->wait.lock);
5033 return ret;
5034}
5035EXPORT_SYMBOL(try_wait_for_completion);
5036
5037/**
5038 * completion_done - Test to see if a completion has any waiters
5039 * @x: completion structure
5040 *
5041 * Returns: 0 if there are waiters (wait_for_completion() in progress)
5042 * 1 if there are no waiters.
5043 *
5044 */
5045bool completion_done(struct completion *x)
5046{
5047 int ret = 1;
5048
5049 spin_lock_irq(&x->wait.lock);
5050 if (!x->done)
5051 ret = 0;
5052 spin_unlock_irq(&x->wait.lock);
5053 return ret;
5054}
5055EXPORT_SYMBOL(completion_done);
5056
Andi Kleen8cbbe862007-10-15 17:00:14 +02005057static long __sched
5058sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02005059{
5060 unsigned long flags;
5061 wait_queue_t wait;
5062
5063 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064
Andi Kleen8cbbe862007-10-15 17:00:14 +02005065 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
Andi Kleen8cbbe862007-10-15 17:00:14 +02005067 spin_lock_irqsave(&q->lock, flags);
5068 __add_wait_queue(q, &wait);
5069 spin_unlock(&q->lock);
5070 timeout = schedule_timeout(timeout);
5071 spin_lock_irq(&q->lock);
5072 __remove_wait_queue(q, &wait);
5073 spin_unlock_irqrestore(&q->lock, flags);
5074
5075 return timeout;
5076}
5077
5078void __sched interruptible_sleep_on(wait_queue_head_t *q)
5079{
5080 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082EXPORT_SYMBOL(interruptible_sleep_on);
5083
Ingo Molnar0fec1712007-07-09 18:52:01 +02005084long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005085interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005087 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089EXPORT_SYMBOL(interruptible_sleep_on_timeout);
5090
Ingo Molnar0fec1712007-07-09 18:52:01 +02005091void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005093 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095EXPORT_SYMBOL(sleep_on);
5096
Ingo Molnar0fec1712007-07-09 18:52:01 +02005097long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098{
Andi Kleen8cbbe862007-10-15 17:00:14 +02005099 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101EXPORT_SYMBOL(sleep_on_timeout);
5102
Ingo Molnarb29739f2006-06-27 02:54:51 -07005103#ifdef CONFIG_RT_MUTEXES
5104
5105/*
5106 * rt_mutex_setprio - set the current priority of a task
5107 * @p: task
5108 * @prio: prio value (kernel-internal form)
5109 *
5110 * This function changes the 'effective' priority of a task. It does
5111 * not touch ->normal_prio like __setscheduler().
5112 *
5113 * Used by the rt_mutex code to implement priority inheritance logic.
5114 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005115void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07005116{
5117 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005118 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005119 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01005120 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005121
5122 BUG_ON(prio < 0 || prio > MAX_PRIO);
5123
5124 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005125 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005126
Andrew Mortond5f9f942007-05-08 20:27:06 -07005127 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005128 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005129 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005130 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02005131 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005132 if (running)
5133 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02005134
5135 if (rt_prio(prio))
5136 p->sched_class = &rt_sched_class;
5137 else
5138 p->sched_class = &fair_sched_class;
5139
Ingo Molnarb29739f2006-06-27 02:54:51 -07005140 p->prio = prio;
5141
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005142 if (running)
5143 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005144 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02005145 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005146
5147 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005148 }
5149 task_rq_unlock(rq, &flags);
5150}
5151
5152#endif
5153
Ingo Molnar36c8b582006-07-03 00:25:41 -07005154void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155{
Ingo Molnardd41f592007-07-09 18:51:59 +02005156 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005158 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159
5160 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
5161 return;
5162 /*
5163 * We have to be careful, if called from sys_setpriority(),
5164 * the task might be in the middle of scheduling on another CPU.
5165 */
5166 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005167 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 /*
5169 * The RT priorities are set via sched_setscheduler(), but we still
5170 * allow the 'normal' nice value to be set - but as expected
5171 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02005172 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173 */
Ingo Molnare05606d2007-07-09 18:51:59 +02005174 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175 p->static_prio = NICE_TO_PRIO(nice);
5176 goto out_unlock;
5177 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005178 on_rq = p->se.on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02005179 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02005180 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07005183 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005184 old_prio = p->prio;
5185 p->prio = effective_prio(p);
5186 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
Ingo Molnardd41f592007-07-09 18:51:59 +02005188 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02005189 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07005191 * If the task increased its priority or is running and
5192 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07005194 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 resched_task(rq->curr);
5196 }
5197out_unlock:
5198 task_rq_unlock(rq, &flags);
5199}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200EXPORT_SYMBOL(set_user_nice);
5201
Matt Mackalle43379f2005-05-01 08:59:00 -07005202/*
5203 * can_nice - check if a task can reduce its nice value
5204 * @p: task
5205 * @nice: nice value
5206 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005207int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07005208{
Matt Mackall024f4742005-08-18 11:24:19 -07005209 /* convert nice value [19,-20] to rlimit style value [1,40] */
5210 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005211
Matt Mackalle43379f2005-05-01 08:59:00 -07005212 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
5213 capable(CAP_SYS_NICE));
5214}
5215
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216#ifdef __ARCH_WANT_SYS_NICE
5217
5218/*
5219 * sys_nice - change the priority of the current process.
5220 * @increment: priority increment
5221 *
5222 * sys_setpriority is a more generic, but much slower function that
5223 * does similar things.
5224 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005225SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005227 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228
5229 /*
5230 * Setpriority might change our priority at the same moment.
5231 * We don't have to worry. Conceptually one call occurs first
5232 * and we have a single winner.
5233 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005234 if (increment < -40)
5235 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 if (increment > 40)
5237 increment = 40;
5238
Américo Wang2b8f8362009-02-16 18:54:21 +08005239 nice = TASK_NICE(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 if (nice < -20)
5241 nice = -20;
5242 if (nice > 19)
5243 nice = 19;
5244
Matt Mackalle43379f2005-05-01 08:59:00 -07005245 if (increment < 0 && !can_nice(current, nice))
5246 return -EPERM;
5247
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 retval = security_task_setnice(current, nice);
5249 if (retval)
5250 return retval;
5251
5252 set_user_nice(current, nice);
5253 return 0;
5254}
5255
5256#endif
5257
5258/**
5259 * task_prio - return the priority value of a given task.
5260 * @p: the task in question.
5261 *
5262 * This is the priority value as seen by users in /proc.
5263 * RT tasks are offset by -200. Normal tasks are centered
5264 * around 0, value goes from -16 to +15.
5265 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005266int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267{
5268 return p->prio - MAX_RT_PRIO;
5269}
5270
5271/**
5272 * task_nice - return the nice value of a given task.
5273 * @p: the task in question.
5274 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005275int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276{
5277 return TASK_NICE(p);
5278}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005279EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280
5281/**
5282 * idle_cpu - is a given cpu idle currently?
5283 * @cpu: the processor in question.
5284 */
5285int idle_cpu(int cpu)
5286{
5287 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5288}
5289
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290/**
5291 * idle_task - return the idle task for a given cpu.
5292 * @cpu: the processor in question.
5293 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005294struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295{
5296 return cpu_rq(cpu)->idle;
5297}
5298
5299/**
5300 * find_process_by_pid - find a process with a matching PID value.
5301 * @pid: the pid in question.
5302 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005303static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005305 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306}
5307
5308/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005309static void
5310__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311{
Ingo Molnardd41f592007-07-09 18:51:59 +02005312 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005313
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005315 switch (p->policy) {
5316 case SCHED_NORMAL:
5317 case SCHED_BATCH:
5318 case SCHED_IDLE:
5319 p->sched_class = &fair_sched_class;
5320 break;
5321 case SCHED_FIFO:
5322 case SCHED_RR:
5323 p->sched_class = &rt_sched_class;
5324 break;
5325 }
5326
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005328 p->normal_prio = normal_prio(p);
5329 /* we are holding p->pi_lock already */
5330 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005331 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332}
5333
David Howellsc69e8d92008-11-14 10:39:19 +11005334/*
5335 * check the target process has a UID that matches the current process's
5336 */
5337static bool check_same_owner(struct task_struct *p)
5338{
5339 const struct cred *cred = current_cred(), *pcred;
5340 bool match;
5341
5342 rcu_read_lock();
5343 pcred = __task_cred(p);
5344 match = (cred->euid == pcred->euid ||
5345 cred->euid == pcred->uid);
5346 rcu_read_unlock();
5347 return match;
5348}
5349
Rusty Russell961ccdd2008-06-23 13:55:38 +10005350static int __sched_setscheduler(struct task_struct *p, int policy,
5351 struct sched_param *param, bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005353 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005355 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005356 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
Steven Rostedt66e53932006-06-27 02:54:44 -07005358 /* may grab non-irq protected spin_locks */
5359 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360recheck:
5361 /* double check policy once rq lock held */
5362 if (policy < 0)
5363 policy = oldpolicy = p->policy;
5364 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005365 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5366 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005367 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368 /*
5369 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005370 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5371 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 */
5373 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005374 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005375 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005377 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378 return -EINVAL;
5379
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005380 /*
5381 * Allow unprivileged RT tasks to decrease priority:
5382 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10005383 if (user && !capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005384 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005385 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005386
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005387 if (!lock_task_sighand(p, &flags))
5388 return -ESRCH;
5389 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5390 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005391
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005392 /* can't set/change the rt policy */
5393 if (policy != p->policy && !rlim_rtprio)
5394 return -EPERM;
5395
5396 /* can't increase priority */
5397 if (param->sched_priority > p->rt_priority &&
5398 param->sched_priority > rlim_rtprio)
5399 return -EPERM;
5400 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005401 /*
5402 * Like positive nice levels, dont allow tasks to
5403 * move out of SCHED_IDLE either:
5404 */
5405 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5406 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005407
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005408 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11005409 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005410 return -EPERM;
5411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005413 if (user) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005414#ifdef CONFIG_RT_GROUP_SCHED
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005415 /*
5416 * Do not allow realtime tasks into groups that have no runtime
5417 * assigned.
5418 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02005419 if (rt_bandwidth_enabled() && rt_policy(policy) &&
5420 task_group(p)->rt_bandwidth.rt_runtime == 0)
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005421 return -EPERM;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005422#endif
5423
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005424 retval = security_task_setscheduler(p, policy, param);
5425 if (retval)
5426 return retval;
5427 }
5428
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005430 * make sure no PI-waiters arrive (or leave) while we are
5431 * changing the priority of the task:
5432 */
5433 spin_lock_irqsave(&p->pi_lock, flags);
5434 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435 * To be able to change p->policy safely, the apropriate
5436 * runqueue lock must be held.
5437 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005438 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 /* recheck policy now with rq lock held */
5440 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5441 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005442 __task_rq_unlock(rq);
5443 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444 goto recheck;
5445 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005446 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005447 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005448 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005449 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005450 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005451 if (running)
5452 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02005453
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005455 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02005456
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005457 if (running)
5458 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005459 if (on_rq) {
5460 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005461
5462 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005464 __task_rq_unlock(rq);
5465 spin_unlock_irqrestore(&p->pi_lock, flags);
5466
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005467 rt_mutex_adjust_pi(p);
5468
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469 return 0;
5470}
Rusty Russell961ccdd2008-06-23 13:55:38 +10005471
5472/**
5473 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
5474 * @p: the task in question.
5475 * @policy: new policy.
5476 * @param: structure containing the new RT priority.
5477 *
5478 * NOTE that the task may be already dead.
5479 */
5480int sched_setscheduler(struct task_struct *p, int policy,
5481 struct sched_param *param)
5482{
5483 return __sched_setscheduler(p, policy, param, true);
5484}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485EXPORT_SYMBOL_GPL(sched_setscheduler);
5486
Rusty Russell961ccdd2008-06-23 13:55:38 +10005487/**
5488 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
5489 * @p: the task in question.
5490 * @policy: new policy.
5491 * @param: structure containing the new RT priority.
5492 *
5493 * Just like sched_setscheduler, only don't bother checking if the
5494 * current context has permission. For example, this is needed in
5495 * stop_machine(): we create temporary high priority worker threads,
5496 * but our caller might not have that capability.
5497 */
5498int sched_setscheduler_nocheck(struct task_struct *p, int policy,
5499 struct sched_param *param)
5500{
5501 return __sched_setscheduler(p, policy, param, false);
5502}
5503
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005504static int
5505do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507 struct sched_param lparam;
5508 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005509 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510
5511 if (!param || pid < 0)
5512 return -EINVAL;
5513 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5514 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005515
5516 rcu_read_lock();
5517 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005519 if (p != NULL)
5520 retval = sched_setscheduler(p, policy, &lparam);
5521 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005522
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523 return retval;
5524}
5525
5526/**
5527 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5528 * @pid: the pid in question.
5529 * @policy: new policy.
5530 * @param: structure containing the new RT priority.
5531 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005532SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
5533 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534{
Jason Baronc21761f2006-01-18 17:43:03 -08005535 /* negative values for policy are not valid */
5536 if (policy < 0)
5537 return -EINVAL;
5538
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539 return do_sched_setscheduler(pid, policy, param);
5540}
5541
5542/**
5543 * sys_sched_setparam - set/change the RT priority of a thread
5544 * @pid: the pid in question.
5545 * @param: structure containing the new RT priority.
5546 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005547SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548{
5549 return do_sched_setscheduler(pid, -1, param);
5550}
5551
5552/**
5553 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5554 * @pid: the pid in question.
5555 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005556SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005558 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005559 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560
5561 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005562 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563
5564 retval = -ESRCH;
5565 read_lock(&tasklist_lock);
5566 p = find_process_by_pid(pid);
5567 if (p) {
5568 retval = security_task_getscheduler(p);
5569 if (!retval)
5570 retval = p->policy;
5571 }
5572 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573 return retval;
5574}
5575
5576/**
5577 * sys_sched_getscheduler - get the RT priority of a thread
5578 * @pid: the pid in question.
5579 * @param: structure containing the RT priority.
5580 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005581SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582{
5583 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005584 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005585 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586
5587 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005588 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589
5590 read_lock(&tasklist_lock);
5591 p = find_process_by_pid(pid);
5592 retval = -ESRCH;
5593 if (!p)
5594 goto out_unlock;
5595
5596 retval = security_task_getscheduler(p);
5597 if (retval)
5598 goto out_unlock;
5599
5600 lp.sched_priority = p->rt_priority;
5601 read_unlock(&tasklist_lock);
5602
5603 /*
5604 * This one might sleep, we cannot do it with a spinlock held ...
5605 */
5606 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5607
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608 return retval;
5609
5610out_unlock:
5611 read_unlock(&tasklist_lock);
5612 return retval;
5613}
5614
Rusty Russell96f874e22008-11-25 02:35:14 +10305615long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305617 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005618 struct task_struct *p;
5619 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005621 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622 read_lock(&tasklist_lock);
5623
5624 p = find_process_by_pid(pid);
5625 if (!p) {
5626 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005627 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628 return -ESRCH;
5629 }
5630
5631 /*
5632 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005633 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634 * usage count and then drop tasklist_lock.
5635 */
5636 get_task_struct(p);
5637 read_unlock(&tasklist_lock);
5638
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305639 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
5640 retval = -ENOMEM;
5641 goto out_put_task;
5642 }
5643 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
5644 retval = -ENOMEM;
5645 goto out_free_cpus_allowed;
5646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 retval = -EPERM;
David Howellsc69e8d92008-11-14 10:39:19 +11005648 if (!check_same_owner(p) && !capable(CAP_SYS_NICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649 goto out_unlock;
5650
David Quigleye7834f82006-06-23 02:03:59 -07005651 retval = security_task_setscheduler(p, 0, NULL);
5652 if (retval)
5653 goto out_unlock;
5654
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305655 cpuset_cpus_allowed(p, cpus_allowed);
5656 cpumask_and(new_mask, in_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005657 again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305658 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659
Paul Menage8707d8b2007-10-18 23:40:22 -07005660 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305661 cpuset_cpus_allowed(p, cpus_allowed);
5662 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07005663 /*
5664 * We must have raced with a concurrent cpuset
5665 * update. Just reset the cpus_allowed to the
5666 * cpuset's cpus_allowed
5667 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305668 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005669 goto again;
5670 }
5671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305673 free_cpumask_var(new_mask);
5674out_free_cpus_allowed:
5675 free_cpumask_var(cpus_allowed);
5676out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005678 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679 return retval;
5680}
5681
5682static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e22008-11-25 02:35:14 +10305683 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684{
Rusty Russell96f874e22008-11-25 02:35:14 +10305685 if (len < cpumask_size())
5686 cpumask_clear(new_mask);
5687 else if (len > cpumask_size())
5688 len = cpumask_size();
5689
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5691}
5692
5693/**
5694 * sys_sched_setaffinity - set the cpu affinity of a process
5695 * @pid: pid of the process
5696 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5697 * @user_mask_ptr: user-space pointer to the new cpu mask
5698 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005699SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
5700 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305702 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703 int retval;
5704
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305705 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
5706 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305708 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
5709 if (retval == 0)
5710 retval = sched_setaffinity(pid, new_mask);
5711 free_cpumask_var(new_mask);
5712 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713}
5714
Rusty Russell96f874e22008-11-25 02:35:14 +10305715long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005717 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005720 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721 read_lock(&tasklist_lock);
5722
5723 retval = -ESRCH;
5724 p = find_process_by_pid(pid);
5725 if (!p)
5726 goto out_unlock;
5727
David Quigleye7834f82006-06-23 02:03:59 -07005728 retval = security_task_getscheduler(p);
5729 if (retval)
5730 goto out_unlock;
5731
Rusty Russell96f874e22008-11-25 02:35:14 +10305732 cpumask_and(mask, &p->cpus_allowed, cpu_online_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733
5734out_unlock:
5735 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005736 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737
Ulrich Drepper9531b622007-08-09 11:16:46 +02005738 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739}
5740
5741/**
5742 * sys_sched_getaffinity - get the cpu affinity of a process
5743 * @pid: pid of the process
5744 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5745 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5746 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005747SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
5748 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749{
5750 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10305751 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752
Rusty Russellf17c8602008-11-25 02:35:11 +10305753 if (len < cpumask_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754 return -EINVAL;
5755
Rusty Russellf17c8602008-11-25 02:35:11 +10305756 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
5757 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758
Rusty Russellf17c8602008-11-25 02:35:11 +10305759 ret = sched_getaffinity(pid, mask);
5760 if (ret == 0) {
5761 if (copy_to_user(user_mask_ptr, mask, cpumask_size()))
5762 ret = -EFAULT;
5763 else
5764 ret = cpumask_size();
5765 }
5766 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767
Rusty Russellf17c8602008-11-25 02:35:11 +10305768 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769}
5770
5771/**
5772 * sys_sched_yield - yield the current processor to other threads.
5773 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005774 * This function yields the current CPU to other tasks. If there are no
5775 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005777SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005779 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780
Ingo Molnar2d723762007-10-15 17:00:12 +02005781 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005782 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783
5784 /*
5785 * Since we are going to call schedule() anyway, there's
5786 * no need to preempt or enable interrupts:
5787 */
5788 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005789 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790 _raw_spin_unlock(&rq->lock);
5791 preempt_enable_no_resched();
5792
5793 schedule();
5794
5795 return 0;
5796}
5797
Andrew Mortone7b38402006-06-30 01:56:00 -07005798static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005800#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5801 __might_sleep(__FILE__, __LINE__);
5802#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005803 /*
5804 * The BKS might be reacquired before we have dropped
5805 * PREEMPT_ACTIVE, which could trigger a second
5806 * cond_resched() call.
5807 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808 do {
5809 add_preempt_count(PREEMPT_ACTIVE);
5810 schedule();
5811 sub_preempt_count(PREEMPT_ACTIVE);
5812 } while (need_resched());
5813}
5814
Herbert Xu02b67cc32008-01-25 21:08:28 +01005815int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816{
Ingo Molnar94142322006-12-29 16:48:13 -08005817 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5818 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 __cond_resched();
5820 return 1;
5821 }
5822 return 0;
5823}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005824EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825
5826/*
5827 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5828 * call schedule, and on return reacquire the lock.
5829 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005830 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831 * operations here to prevent schedule() from being called twice (once via
5832 * spin_unlock(), once by hand).
5833 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005834int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835{
Nick Piggin95c354f2008-01-30 13:31:20 +01005836 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005837 int ret = 0;
5838
Nick Piggin95c354f2008-01-30 13:31:20 +01005839 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005841 if (resched && need_resched())
5842 __cond_resched();
5843 else
5844 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005845 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005848 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850EXPORT_SYMBOL(cond_resched_lock);
5851
5852int __sched cond_resched_softirq(void)
5853{
5854 BUG_ON(!in_softirq());
5855
Ingo Molnar94142322006-12-29 16:48:13 -08005856 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005857 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858 __cond_resched();
5859 local_bh_disable();
5860 return 1;
5861 }
5862 return 0;
5863}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864EXPORT_SYMBOL(cond_resched_softirq);
5865
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866/**
5867 * yield - yield the current processor to other threads.
5868 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005869 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870 * thread runnable and calls sys_sched_yield().
5871 */
5872void __sched yield(void)
5873{
5874 set_current_state(TASK_RUNNING);
5875 sys_sched_yield();
5876}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877EXPORT_SYMBOL(yield);
5878
5879/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005880 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881 * that process accounting knows that this is a task in IO wait state.
5882 *
5883 * But don't do that if it is a deliberate, throttling IO wait (this task
5884 * has set its backing_dev_info: the queue against which it should throttle)
5885 */
5886void __sched io_schedule(void)
5887{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005888 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005890 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891 atomic_inc(&rq->nr_iowait);
5892 schedule();
5893 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005894 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896EXPORT_SYMBOL(io_schedule);
5897
5898long __sched io_schedule_timeout(long timeout)
5899{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005900 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901 long ret;
5902
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005903 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904 atomic_inc(&rq->nr_iowait);
5905 ret = schedule_timeout(timeout);
5906 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005907 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908 return ret;
5909}
5910
5911/**
5912 * sys_sched_get_priority_max - return maximum RT priority.
5913 * @policy: scheduling class.
5914 *
5915 * this syscall returns the maximum rt_priority that can be used
5916 * by a given scheduling class.
5917 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005918SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919{
5920 int ret = -EINVAL;
5921
5922 switch (policy) {
5923 case SCHED_FIFO:
5924 case SCHED_RR:
5925 ret = MAX_USER_RT_PRIO-1;
5926 break;
5927 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005928 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005929 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930 ret = 0;
5931 break;
5932 }
5933 return ret;
5934}
5935
5936/**
5937 * sys_sched_get_priority_min - return minimum RT priority.
5938 * @policy: scheduling class.
5939 *
5940 * this syscall returns the minimum rt_priority that can be used
5941 * by a given scheduling class.
5942 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005943SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944{
5945 int ret = -EINVAL;
5946
5947 switch (policy) {
5948 case SCHED_FIFO:
5949 case SCHED_RR:
5950 ret = 1;
5951 break;
5952 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005953 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005954 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955 ret = 0;
5956 }
5957 return ret;
5958}
5959
5960/**
5961 * sys_sched_rr_get_interval - return the default timeslice of a process.
5962 * @pid: pid of the process.
5963 * @interval: userspace pointer to the timeslice value.
5964 *
5965 * this syscall writes the default timeslice value of a given process
5966 * into the user-space timespec buffer. A value of '0' means infinity.
5967 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01005968SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01005969 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005971 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005972 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005973 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975
5976 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005977 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978
5979 retval = -ESRCH;
5980 read_lock(&tasklist_lock);
5981 p = find_process_by_pid(pid);
5982 if (!p)
5983 goto out_unlock;
5984
5985 retval = security_task_getscheduler(p);
5986 if (retval)
5987 goto out_unlock;
5988
Ingo Molnar77034932007-12-04 17:04:39 +01005989 /*
5990 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5991 * tasks that are on an otherwise idle runqueue:
5992 */
5993 time_slice = 0;
5994 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005995 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005996 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005997 struct sched_entity *se = &p->se;
5998 unsigned long flags;
5999 struct rq *rq;
6000
6001 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01006002 if (rq->cfs.load.weight)
6003 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006004 task_rq_unlock(rq, &flags);
6005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02006007 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006010
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011out_unlock:
6012 read_unlock(&tasklist_lock);
6013 return retval;
6014}
6015
Steven Rostedt7c731e02008-05-12 21:20:41 +02006016static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07006017
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01006018void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07006021 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02006024 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07006025 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02006026#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02006028 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02006030 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031#else
6032 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02006033 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02006035 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036#endif
6037#ifdef CONFIG_DEBUG_STACK_USAGE
6038 {
Al Viro10ebffd2005-11-13 16:06:56 -08006039 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040 while (!*n)
6041 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08006042 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043 }
6044#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07006045 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08006046 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01006048 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049}
6050
Ingo Molnare59e2ae2006-12-06 20:35:59 -08006051void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052{
Ingo Molnar36c8b582006-07-03 00:25:41 -07006053 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054
Ingo Molnar4bd77322007-07-11 21:21:47 +02006055#if BITS_PER_LONG == 32
6056 printk(KERN_INFO
6057 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02006059 printk(KERN_INFO
6060 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061#endif
6062 read_lock(&tasklist_lock);
6063 do_each_thread(g, p) {
6064 /*
6065 * reset the NMI-timeout, listing all files on a slow
6066 * console might take alot of time:
6067 */
6068 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07006069 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01006070 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071 } while_each_thread(g, p);
6072
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07006073 touch_all_softlockup_watchdogs();
6074
Ingo Molnardd41f592007-07-09 18:51:59 +02006075#ifdef CONFIG_SCHED_DEBUG
6076 sysrq_sched_debug_show();
6077#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08006079 /*
6080 * Only show locks if all tasks are dumped:
6081 */
6082 if (state_filter == -1)
6083 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084}
6085
Ingo Molnar1df21052007-07-09 18:51:58 +02006086void __cpuinit init_idle_bootup_task(struct task_struct *idle)
6087{
Ingo Molnardd41f592007-07-09 18:51:59 +02006088 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02006089}
6090
Ingo Molnarf340c0d2005-06-28 16:40:42 +02006091/**
6092 * init_idle - set up an idle thread for a given CPU
6093 * @idle: task in question
6094 * @cpu: cpu the idle task belongs to
6095 *
6096 * NOTE: this function does not set the idle thread's NEED_RESCHED
6097 * flag, to make booting more robust.
6098 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07006099void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006101 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102 unsigned long flags;
6103
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01006104 spin_lock_irqsave(&rq->lock, flags);
6105
Ingo Molnardd41f592007-07-09 18:51:59 +02006106 __sched_fork(idle);
6107 idle->se.exec_start = sched_clock();
6108
Ingo Molnarb29739f2006-06-27 02:54:51 -07006109 idle->prio = idle->normal_prio = MAX_PRIO;
Rusty Russell96f874e22008-11-25 02:35:14 +10306110 cpumask_copy(&idle->cpus_allowed, cpumask_of(cpu));
Ingo Molnardd41f592007-07-09 18:51:59 +02006111 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07006114#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
6115 idle->oncpu = 1;
6116#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117 spin_unlock_irqrestore(&rq->lock, flags);
6118
6119 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07006120#if defined(CONFIG_PREEMPT)
6121 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
6122#else
Al Viroa1261f542005-11-13 16:06:55 -08006123 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07006124#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02006125 /*
6126 * The idle tasks have their own, simple scheduling class:
6127 */
6128 idle->sched_class = &idle_sched_class;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006129 ftrace_graph_init_task(idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130}
6131
6132/*
6133 * In a system that switches off the HZ timer nohz_cpu_mask
6134 * indicates which cpus entered this state. This is used
6135 * in the rcu update to wait only for active cpus. For system
6136 * which do not switch off the HZ timer nohz_cpu_mask should
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306137 * always be CPU_BITS_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138 */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306139cpumask_var_t nohz_cpu_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140
Ingo Molnar19978ca2007-11-09 22:39:38 +01006141/*
6142 * Increase the granularity value when there are more CPUs,
6143 * because with more CPUs the 'effective latency' as visible
6144 * to users decreases. But the relationship is not linear,
6145 * so pick a second-best guess by going with the log2 of the
6146 * number of CPUs.
6147 *
6148 * This idea comes from the SD scheduler of Con Kolivas:
6149 */
6150static inline void sched_init_granularity(void)
6151{
6152 unsigned int factor = 1 + ilog2(num_online_cpus());
6153 const unsigned long limit = 200000000;
6154
6155 sysctl_sched_min_granularity *= factor;
6156 if (sysctl_sched_min_granularity > limit)
6157 sysctl_sched_min_granularity = limit;
6158
6159 sysctl_sched_latency *= factor;
6160 if (sysctl_sched_latency > limit)
6161 sysctl_sched_latency = limit;
6162
6163 sysctl_sched_wakeup_granularity *= factor;
Peter Zijlstra55cd5342008-08-04 08:54:26 +02006164
6165 sysctl_sched_shares_ratelimit *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01006166}
6167
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168#ifdef CONFIG_SMP
6169/*
6170 * This is how migration works:
6171 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07006172 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173 * runqueue and wake up that CPU's migration thread.
6174 * 2) we down() the locked semaphore => thread blocks.
6175 * 3) migration thread wakes up (implicitly it forces the migrated
6176 * thread off the CPU)
6177 * 4) it gets the migration request and checks whether the migrated
6178 * task is still in the wrong runqueue.
6179 * 5) if it's in the wrong runqueue then the migration thread removes
6180 * it and puts it into the right queue.
6181 * 6) migration thread up()s the semaphore.
6182 * 7) we wake up and the migration is done.
6183 */
6184
6185/*
6186 * Change a given task's CPU affinity. Migrate the thread to a
6187 * proper CPU and schedule it away if the CPU it's executing on
6188 * is removed from the allowed bitmask.
6189 *
6190 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006191 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192 * call is not atomic; no spinlocks may be held.
6193 */
Rusty Russell96f874e22008-11-25 02:35:14 +10306194int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006196 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006198 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006199 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200
6201 rq = task_rq_lock(p, &flags);
Rusty Russell96f874e22008-11-25 02:35:14 +10306202 if (!cpumask_intersects(new_mask, cpu_online_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203 ret = -EINVAL;
6204 goto out;
6205 }
6206
David Rientjes9985b0b2008-06-05 12:57:11 -07006207 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current &&
Rusty Russell96f874e22008-11-25 02:35:14 +10306208 !cpumask_equal(&p->cpus_allowed, new_mask))) {
David Rientjes9985b0b2008-06-05 12:57:11 -07006209 ret = -EINVAL;
6210 goto out;
6211 }
6212
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006213 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006214 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006215 else {
Rusty Russell96f874e22008-11-25 02:35:14 +10306216 cpumask_copy(&p->cpus_allowed, new_mask);
6217 p->rt.nr_cpus_allowed = cpumask_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006218 }
6219
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e22008-11-25 02:35:14 +10306221 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222 goto out;
6223
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10306224 if (migrate_task(p, cpumask_any_and(cpu_online_mask, new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225 /* Need help from migration thread: drop lock and wait. */
6226 task_rq_unlock(rq, &flags);
6227 wake_up_process(rq->migration_thread);
6228 wait_for_completion(&req.done);
6229 tlb_migrate_finish(p->mm);
6230 return 0;
6231 }
6232out:
6233 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006234
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235 return ret;
6236}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006237EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238
6239/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006240 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241 * this because either it can't run here any more (set_cpus_allowed()
6242 * away from this CPU, or CPU going down), or because we're
6243 * attempting to rebalance this task on exec (sched_exec).
6244 *
6245 * So we race with normal scheduler movements, but that's OK, as long
6246 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07006247 *
6248 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07006250static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006252 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02006253 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254
Max Krasnyanskye761b772008-07-15 04:43:49 -07006255 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07006256 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257
6258 rq_src = cpu_rq(src_cpu);
6259 rq_dest = cpu_rq(dest_cpu);
6260
6261 double_rq_lock(rq_src, rq_dest);
6262 /* Already moved. */
6263 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006264 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265 /* Affinity changed (again). */
Rusty Russell96f874e22008-11-25 02:35:14 +10306266 if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006267 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268
Ingo Molnardd41f592007-07-09 18:51:59 +02006269 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006270 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006271 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006272
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006274 if (on_rq) {
6275 activate_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02006276 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006278done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07006279 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006280fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07006282 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283}
6284
6285/*
6286 * migration_thread - this is a highprio system thread that performs
6287 * thread migration by bumping thread off CPU then 'pushing' onto
6288 * another runqueue.
6289 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006290static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006293 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294
6295 rq = cpu_rq(cpu);
6296 BUG_ON(rq->migration_thread != current);
6297
6298 set_current_state(TASK_INTERRUPTIBLE);
6299 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006300 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303 spin_lock_irq(&rq->lock);
6304
6305 if (cpu_is_offline(cpu)) {
6306 spin_unlock_irq(&rq->lock);
6307 goto wait_to_die;
6308 }
6309
6310 if (rq->active_balance) {
6311 active_load_balance(rq, cpu);
6312 rq->active_balance = 0;
6313 }
6314
6315 head = &rq->migration_queue;
6316
6317 if (list_empty(head)) {
6318 spin_unlock_irq(&rq->lock);
6319 schedule();
6320 set_current_state(TASK_INTERRUPTIBLE);
6321 continue;
6322 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07006323 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324 list_del_init(head->next);
6325
Nick Piggin674311d2005-06-25 14:57:27 -07006326 spin_unlock(&rq->lock);
6327 __migrate_task(req->task, cpu, req->dest_cpu);
6328 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329
6330 complete(&req->done);
6331 }
6332 __set_current_state(TASK_RUNNING);
6333 return 0;
6334
6335wait_to_die:
6336 /* Wait for kthread_stop */
6337 set_current_state(TASK_INTERRUPTIBLE);
6338 while (!kthread_should_stop()) {
6339 schedule();
6340 set_current_state(TASK_INTERRUPTIBLE);
6341 }
6342 __set_current_state(TASK_RUNNING);
6343 return 0;
6344}
6345
6346#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006347
6348static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
6349{
6350 int ret;
6351
6352 local_irq_disable();
6353 ret = __migrate_task(p, src_cpu, dest_cpu);
6354 local_irq_enable();
6355 return ret;
6356}
6357
Kirill Korotaev054b9102006-12-10 02:20:11 -08006358/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006359 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08006360 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006361static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006363 int dest_cpu;
Mike Travis6ca09df2008-12-31 18:08:45 -08006364 const struct cpumask *nodemask = cpumask_of_node(cpu_to_node(dead_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306366again:
6367 /* Look for allowed, online CPU in same node. */
6368 for_each_cpu_and(dest_cpu, nodemask, cpu_online_mask)
6369 if (cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
6370 goto move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306372 /* Any allowed, online CPU? */
6373 dest_cpu = cpumask_any_and(&p->cpus_allowed, cpu_online_mask);
6374 if (dest_cpu < nr_cpu_ids)
6375 goto move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306377 /* No more Mr. Nice Guy. */
6378 if (dest_cpu >= nr_cpu_ids) {
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306379 cpuset_cpus_allowed_locked(p, &p->cpus_allowed);
6380 dest_cpu = cpumask_any_and(cpu_online_mask, &p->cpus_allowed);
Mike Travisf9a86fc2008-04-04 18:11:07 -07006381
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306382 /*
6383 * Don't tell them about moving exiting tasks or
6384 * kernel threads (both mm NULL), since they never
6385 * leave kernel.
6386 */
6387 if (p->mm && printk_ratelimit()) {
6388 printk(KERN_INFO "process %d (%s) no "
6389 "longer affine to cpu%d\n",
6390 task_pid_nr(p), p->comm, dead_cpu);
Andi Kleen3a5c3592007-10-15 17:00:14 +02006391 }
Rusty Russelle76bd8d2008-11-25 02:35:11 +10306392 }
6393
6394move:
6395 /* It can have affinity changed while we were choosing. */
6396 if (unlikely(!__migrate_task_irq(p, dead_cpu, dest_cpu)))
6397 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398}
6399
6400/*
6401 * While a dead CPU has no uninterruptible tasks queued at this point,
6402 * it might still have a nonzero ->nr_uninterruptible counter, because
6403 * for performance reasons the counter is not stricly tracking tasks to
6404 * their home CPUs. So we just add the counter to another CPU's counter,
6405 * to keep the global sum constant after CPU-down:
6406 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006407static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408{
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10306409 struct rq *rq_dest = cpu_rq(cpumask_any(cpu_online_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410 unsigned long flags;
6411
6412 local_irq_save(flags);
6413 double_rq_lock(rq_src, rq_dest);
6414 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6415 rq_src->nr_uninterruptible = 0;
6416 double_rq_unlock(rq_src, rq_dest);
6417 local_irq_restore(flags);
6418}
6419
6420/* Run through task list and migrate tasks from the dead cpu. */
6421static void migrate_live_tasks(int src_cpu)
6422{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006423 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006425 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426
Ingo Molnar48f24c42006-07-03 00:25:40 -07006427 do_each_thread(t, p) {
6428 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429 continue;
6430
Ingo Molnar48f24c42006-07-03 00:25:40 -07006431 if (task_cpu(p) == src_cpu)
6432 move_task_off_dead_cpu(src_cpu, p);
6433 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006435 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436}
6437
Ingo Molnardd41f592007-07-09 18:51:59 +02006438/*
6439 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006440 * It does so by boosting its priority to highest possible.
6441 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442 */
6443void sched_idle_next(void)
6444{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006445 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006446 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447 struct task_struct *p = rq->idle;
6448 unsigned long flags;
6449
6450 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006451 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452
Ingo Molnar48f24c42006-07-03 00:25:40 -07006453 /*
6454 * Strictly not necessary since rest of the CPUs are stopped by now
6455 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456 */
6457 spin_lock_irqsave(&rq->lock, flags);
6458
Ingo Molnardd41f592007-07-09 18:51:59 +02006459 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006460
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006461 update_rq_clock(rq);
6462 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463
6464 spin_unlock_irqrestore(&rq->lock, flags);
6465}
6466
Ingo Molnar48f24c42006-07-03 00:25:40 -07006467/*
6468 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469 * offline.
6470 */
6471void idle_task_exit(void)
6472{
6473 struct mm_struct *mm = current->active_mm;
6474
6475 BUG_ON(cpu_online(smp_processor_id()));
6476
6477 if (mm != &init_mm)
6478 switch_mm(mm, &init_mm, current);
6479 mmdrop(mm);
6480}
6481
Kirill Korotaev054b9102006-12-10 02:20:11 -08006482/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006483static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006485 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486
6487 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006488 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489
6490 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006491 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492
Ingo Molnar48f24c42006-07-03 00:25:40 -07006493 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494
6495 /*
6496 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006497 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006498 * fine.
6499 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006500 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006501 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006502 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503
Ingo Molnar48f24c42006-07-03 00:25:40 -07006504 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505}
6506
6507/* release_task() removes task from tasklist, so we won't find dead tasks. */
6508static void migrate_dead_tasks(unsigned int dead_cpu)
6509{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006510 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006511 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512
Ingo Molnardd41f592007-07-09 18:51:59 +02006513 for ( ; ; ) {
6514 if (!rq->nr_running)
6515 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006516 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006517 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006518 if (!next)
6519 break;
Dmitry Adamushko79c53792008-06-29 00:16:56 +02006520 next->sched_class->put_prev_task(rq, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02006521 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006522
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523 }
6524}
6525#endif /* CONFIG_HOTPLUG_CPU */
6526
Nick Piggine692ab52007-07-26 13:40:43 +02006527#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6528
6529static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006530 {
6531 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006532 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006533 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006534 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006535};
6536
6537static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006538 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006539 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006540 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006541 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006542 .child = sd_ctl_dir,
6543 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006544 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006545};
6546
6547static struct ctl_table *sd_alloc_ctl_entry(int n)
6548{
6549 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006550 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006551
Nick Piggine692ab52007-07-26 13:40:43 +02006552 return entry;
6553}
6554
Milton Miller6382bc92007-10-15 17:00:19 +02006555static void sd_free_ctl_entry(struct ctl_table **tablep)
6556{
Milton Millercd7900762007-10-17 16:55:11 +02006557 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006558
Milton Millercd7900762007-10-17 16:55:11 +02006559 /*
6560 * In the intermediate directories, both the child directory and
6561 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006562 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02006563 * static strings and all have proc handlers.
6564 */
6565 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006566 if (entry->child)
6567 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02006568 if (entry->proc_handler == NULL)
6569 kfree(entry->procname);
6570 }
Milton Miller6382bc92007-10-15 17:00:19 +02006571
6572 kfree(*tablep);
6573 *tablep = NULL;
6574}
6575
Nick Piggine692ab52007-07-26 13:40:43 +02006576static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006577set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006578 const char *procname, void *data, int maxlen,
6579 mode_t mode, proc_handler *proc_handler)
6580{
Nick Piggine692ab52007-07-26 13:40:43 +02006581 entry->procname = procname;
6582 entry->data = data;
6583 entry->maxlen = maxlen;
6584 entry->mode = mode;
6585 entry->proc_handler = proc_handler;
6586}
6587
6588static struct ctl_table *
6589sd_alloc_ctl_domain_table(struct sched_domain *sd)
6590{
Ingo Molnara5d8c342008-10-09 11:35:51 +02006591 struct ctl_table *table = sd_alloc_ctl_entry(13);
Nick Piggine692ab52007-07-26 13:40:43 +02006592
Milton Millerad1cdc12007-10-15 17:00:19 +02006593 if (table == NULL)
6594 return NULL;
6595
Alexey Dobriyane0361852007-08-09 11:16:46 +02006596 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006597 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006598 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006599 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006600 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006601 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006602 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006603 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006604 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006605 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006606 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006607 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006608 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006609 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006610 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006611 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006612 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006613 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006614 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006615 &sd->cache_nice_tries,
6616 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006617 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006618 sizeof(int), 0644, proc_dointvec_minmax);
Ingo Molnara5d8c342008-10-09 11:35:51 +02006619 set_table_entry(&table[11], "name", sd->name,
6620 CORENAME_MAX_SIZE, 0444, proc_dostring);
6621 /* &table[12] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006622
6623 return table;
6624}
6625
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006626static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006627{
6628 struct ctl_table *entry, *table;
6629 struct sched_domain *sd;
6630 int domain_num = 0, i;
6631 char buf[32];
6632
6633 for_each_domain(cpu, sd)
6634 domain_num++;
6635 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006636 if (table == NULL)
6637 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006638
6639 i = 0;
6640 for_each_domain(cpu, sd) {
6641 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006642 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006643 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006644 entry->child = sd_alloc_ctl_domain_table(sd);
6645 entry++;
6646 i++;
6647 }
6648 return table;
6649}
6650
6651static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006652static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006653{
6654 int i, cpu_num = num_online_cpus();
6655 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6656 char buf[32];
6657
Milton Miller73785472007-10-24 18:23:48 +02006658 WARN_ON(sd_ctl_dir[0].child);
6659 sd_ctl_dir[0].child = entry;
6660
Milton Millerad1cdc12007-10-15 17:00:19 +02006661 if (entry == NULL)
6662 return;
6663
Milton Miller97b6ea72007-10-15 17:00:19 +02006664 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006665 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006666 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006667 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006668 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006669 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006670 }
Milton Miller73785472007-10-24 18:23:48 +02006671
6672 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006673 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6674}
Milton Miller6382bc92007-10-15 17:00:19 +02006675
Milton Miller73785472007-10-24 18:23:48 +02006676/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006677static void unregister_sched_domain_sysctl(void)
6678{
Milton Miller73785472007-10-24 18:23:48 +02006679 if (sd_sysctl_header)
6680 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006681 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006682 if (sd_ctl_dir[0].child)
6683 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006684}
Nick Piggine692ab52007-07-26 13:40:43 +02006685#else
Milton Miller6382bc92007-10-15 17:00:19 +02006686static void register_sched_domain_sysctl(void)
6687{
6688}
6689static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006690{
6691}
6692#endif
6693
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006694static void set_rq_online(struct rq *rq)
6695{
6696 if (!rq->online) {
6697 const struct sched_class *class;
6698
Rusty Russellc6c49272008-11-25 02:35:05 +10306699 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006700 rq->online = 1;
6701
6702 for_each_class(class) {
6703 if (class->rq_online)
6704 class->rq_online(rq);
6705 }
6706 }
6707}
6708
6709static void set_rq_offline(struct rq *rq)
6710{
6711 if (rq->online) {
6712 const struct sched_class *class;
6713
6714 for_each_class(class) {
6715 if (class->rq_offline)
6716 class->rq_offline(rq);
6717 }
6718
Rusty Russellc6c49272008-11-25 02:35:05 +10306719 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006720 rq->online = 0;
6721 }
6722}
6723
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724/*
6725 * migration_call - callback that gets triggered when a CPU is added.
6726 * Here we can start up the necessary migration thread for the new CPU.
6727 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006728static int __cpuinit
6729migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006730{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006732 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006733 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006734 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735
6736 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006737
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006739 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006740 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741 if (IS_ERR(p))
6742 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006743 kthread_bind(p, cpu);
6744 /* Must be high prio: stop_machine expects to yield to it. */
6745 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006746 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747 task_rq_unlock(rq, &flags);
6748 cpu_rq(cpu)->migration_thread = p;
6749 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006750
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006752 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006753 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006755
6756 /* Update our root-domain */
6757 rq = cpu_rq(cpu);
6758 spin_lock_irqsave(&rq->lock, flags);
6759 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306760 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006761
6762 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006763 }
6764 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006766
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767#ifdef CONFIG_HOTPLUG_CPU
6768 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006769 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006770 if (!cpu_rq(cpu)->migration_thread)
6771 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006772 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006773 kthread_bind(cpu_rq(cpu)->migration_thread,
Rusty Russell1e5ce4f2008-11-25 02:35:03 +10306774 cpumask_any(cpu_online_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775 kthread_stop(cpu_rq(cpu)->migration_thread);
6776 cpu_rq(cpu)->migration_thread = NULL;
6777 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006778
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006780 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006781 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782 migrate_live_tasks(cpu);
6783 rq = cpu_rq(cpu);
6784 kthread_stop(rq->migration_thread);
6785 rq->migration_thread = NULL;
6786 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006787 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006788 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006789 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006791 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6792 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006794 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006795 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796 migrate_nr_uninterruptible(rq);
6797 BUG_ON(rq->nr_running != 0);
6798
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006799 /*
6800 * No need to migrate the tasks: it was best-effort if
6801 * they didn't take sched_hotcpu_mutex. Just wake up
6802 * the requestors.
6803 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804 spin_lock_irq(&rq->lock);
6805 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006806 struct migration_req *req;
6807
Linus Torvalds1da177e2005-04-16 15:20:36 -07006808 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006809 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006810 list_del_init(&req->list);
Brian King9a2bd242008-12-09 08:47:00 -06006811 spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006812 complete(&req->done);
Brian King9a2bd242008-12-09 08:47:00 -06006813 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814 }
6815 spin_unlock_irq(&rq->lock);
6816 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006817
Gregory Haskins08f503b2008-03-10 17:59:11 -04006818 case CPU_DYING:
6819 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006820 /* Update our root-domain */
6821 rq = cpu_rq(cpu);
6822 spin_lock_irqsave(&rq->lock, flags);
6823 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306824 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006825 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006826 }
6827 spin_unlock_irqrestore(&rq->lock, flags);
6828 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829#endif
6830 }
6831 return NOTIFY_OK;
6832}
6833
6834/* Register at highest priority so that task migration (migrate_all_tasks)
6835 * happens before everything else.
6836 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006837static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838 .notifier_call = migration_call,
6839 .priority = 10
6840};
6841
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006842static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843{
6844 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006845 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006846
6847 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006848 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6849 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006850 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6851 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006852
6853 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006855early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856#endif
6857
6858#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006859
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006860#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006861
Mike Travis7c16ec52008-04-04 18:11:11 -07006862static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e22008-11-25 02:35:14 +10306863 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006864{
6865 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006866 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006867
Rusty Russell968ea6d2008-12-13 21:55:51 +10306868 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e22008-11-25 02:35:14 +10306869 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006870
6871 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6872
6873 if (!(sd->flags & SD_LOAD_BALANCE)) {
6874 printk("does not load-balance\n");
6875 if (sd->parent)
6876 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6877 " has parent");
6878 return -1;
6879 }
6880
Li Zefaneefd7962008-11-04 16:15:37 +08006881 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006882
Rusty Russell758b2cd2008-11-25 02:35:04 +10306883 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006884 printk(KERN_ERR "ERROR: domain->span does not contain "
6885 "CPU%d\n", cpu);
6886 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10306887 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006888 printk(KERN_ERR "ERROR: domain->groups does not contain"
6889 " CPU%d\n", cpu);
6890 }
6891
6892 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6893 do {
6894 if (!group) {
6895 printk("\n");
6896 printk(KERN_ERR "ERROR: group is NULL\n");
6897 break;
6898 }
6899
6900 if (!group->__cpu_power) {
6901 printk(KERN_CONT "\n");
6902 printk(KERN_ERR "ERROR: domain->cpu_power not "
6903 "set\n");
6904 break;
6905 }
6906
Rusty Russell758b2cd2008-11-25 02:35:04 +10306907 if (!cpumask_weight(sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006908 printk(KERN_CONT "\n");
6909 printk(KERN_ERR "ERROR: empty group\n");
6910 break;
6911 }
6912
Rusty Russell758b2cd2008-11-25 02:35:04 +10306913 if (cpumask_intersects(groupmask, sched_group_cpus(group))) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006914 printk(KERN_CONT "\n");
6915 printk(KERN_ERR "ERROR: repeated CPUs\n");
6916 break;
6917 }
6918
Rusty Russell758b2cd2008-11-25 02:35:04 +10306919 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006920
Rusty Russell968ea6d2008-12-13 21:55:51 +10306921 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006922 printk(KERN_CONT " %s", str);
6923
6924 group = group->next;
6925 } while (group != sd->groups);
6926 printk(KERN_CONT "\n");
6927
Rusty Russell758b2cd2008-11-25 02:35:04 +10306928 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006929 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6930
Rusty Russell758b2cd2008-11-25 02:35:04 +10306931 if (sd->parent &&
6932 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006933 printk(KERN_ERR "ERROR: parent span is not a superset "
6934 "of domain->span\n");
6935 return 0;
6936}
6937
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938static void sched_domain_debug(struct sched_domain *sd, int cpu)
6939{
Rusty Russelld5dd3db2008-11-25 02:35:12 +10306940 cpumask_var_t groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941 int level = 0;
6942
Nick Piggin41c7ce92005-06-25 14:57:24 -07006943 if (!sd) {
6944 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6945 return;
6946 }
6947
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6949
Rusty Russelld5dd3db2008-11-25 02:35:12 +10306950 if (!alloc_cpumask_var(&groupmask, GFP_KERNEL)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006951 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6952 return;
6953 }
6954
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006955 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006956 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006957 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958 level++;
6959 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006960 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006961 break;
6962 }
Rusty Russelld5dd3db2008-11-25 02:35:12 +10306963 free_cpumask_var(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006964}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006965#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006966# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006967#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006968
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006969static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006970{
Rusty Russell758b2cd2008-11-25 02:35:04 +10306971 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006972 return 1;
6973
6974 /* Following flags need at least 2 groups */
6975 if (sd->flags & (SD_LOAD_BALANCE |
6976 SD_BALANCE_NEWIDLE |
6977 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006978 SD_BALANCE_EXEC |
6979 SD_SHARE_CPUPOWER |
6980 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006981 if (sd->groups != sd->groups->next)
6982 return 0;
6983 }
6984
6985 /* Following flags don't use groups */
6986 if (sd->flags & (SD_WAKE_IDLE |
6987 SD_WAKE_AFFINE |
6988 SD_WAKE_BALANCE))
6989 return 0;
6990
6991 return 1;
6992}
6993
Ingo Molnar48f24c42006-07-03 00:25:40 -07006994static int
6995sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006996{
6997 unsigned long cflags = sd->flags, pflags = parent->flags;
6998
6999 if (sd_degenerate(parent))
7000 return 1;
7001
Rusty Russell758b2cd2008-11-25 02:35:04 +10307002 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07007003 return 0;
7004
7005 /* Does parent contain flags not in child? */
7006 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
7007 if (cflags & SD_WAKE_AFFINE)
7008 pflags &= ~SD_WAKE_BALANCE;
7009 /* Flags needing groups don't count if only 1 group in parent */
7010 if (parent->groups == parent->groups->next) {
7011 pflags &= ~(SD_LOAD_BALANCE |
7012 SD_BALANCE_NEWIDLE |
7013 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007014 SD_BALANCE_EXEC |
7015 SD_SHARE_CPUPOWER |
7016 SD_SHARE_PKG_RESOURCES);
Ken Chen54364992008-12-07 18:47:37 -08007017 if (nr_node_ids == 1)
7018 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07007019 }
7020 if (~cflags & pflags)
7021 return 0;
7022
7023 return 1;
7024}
7025
Rusty Russellc6c49272008-11-25 02:35:05 +10307026static void free_rootdomain(struct root_domain *rd)
7027{
Rusty Russell68e74562008-11-25 02:35:13 +10307028 cpupri_cleanup(&rd->cpupri);
7029
Rusty Russellc6c49272008-11-25 02:35:05 +10307030 free_cpumask_var(rd->rto_mask);
7031 free_cpumask_var(rd->online);
7032 free_cpumask_var(rd->span);
7033 kfree(rd);
7034}
7035
Gregory Haskins57d885f2008-01-25 21:08:18 +01007036static void rq_attach_root(struct rq *rq, struct root_domain *rd)
7037{
Ingo Molnara0490fa2009-02-12 11:35:40 +01007038 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007039 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007040
7041 spin_lock_irqsave(&rq->lock, flags);
7042
7043 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01007044 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007045
Rusty Russellc6c49272008-11-25 02:35:05 +10307046 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04007047 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01007048
Rusty Russellc6c49272008-11-25 02:35:05 +10307049 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007050
Ingo Molnara0490fa2009-02-12 11:35:40 +01007051 /*
7052 * If we dont want to free the old_rt yet then
7053 * set old_rd to NULL to skip the freeing later
7054 * in this function:
7055 */
7056 if (!atomic_dec_and_test(&old_rd->refcount))
7057 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007058 }
7059
7060 atomic_inc(&rd->refcount);
7061 rq->rd = rd;
7062
Rusty Russellc6c49272008-11-25 02:35:05 +10307063 cpumask_set_cpu(rq->cpu, rd->span);
7064 if (cpumask_test_cpu(rq->cpu, cpu_online_mask))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04007065 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01007066
7067 spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01007068
7069 if (old_rd)
7070 free_rootdomain(old_rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01007071}
7072
Li Zefandb2f59c2009-01-06 17:40:36 +08007073static int __init_refok init_rootdomain(struct root_domain *rd, bool bootmem)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007074{
7075 memset(rd, 0, sizeof(*rd));
7076
Rusty Russellc6c49272008-11-25 02:35:05 +10307077 if (bootmem) {
7078 alloc_bootmem_cpumask_var(&def_root_domain.span);
7079 alloc_bootmem_cpumask_var(&def_root_domain.online);
7080 alloc_bootmem_cpumask_var(&def_root_domain.rto_mask);
Rusty Russell68e74562008-11-25 02:35:13 +10307081 cpupri_init(&rd->cpupri, true);
Rusty Russellc6c49272008-11-25 02:35:05 +10307082 return 0;
7083 }
Gregory Haskins6e0534f2008-05-12 21:21:01 +02007084
Rusty Russellc6c49272008-11-25 02:35:05 +10307085 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
Li Zefan0c910d22009-01-06 17:39:06 +08007086 goto out;
Rusty Russellc6c49272008-11-25 02:35:05 +10307087 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
7088 goto free_span;
7089 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
7090 goto free_online;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02007091
Rusty Russell68e74562008-11-25 02:35:13 +10307092 if (cpupri_init(&rd->cpupri, false) != 0)
7093 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10307094 return 0;
7095
Rusty Russell68e74562008-11-25 02:35:13 +10307096free_rto_mask:
7097 free_cpumask_var(rd->rto_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10307098free_online:
7099 free_cpumask_var(rd->online);
7100free_span:
7101 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08007102out:
Rusty Russellc6c49272008-11-25 02:35:05 +10307103 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007104}
7105
7106static void init_defrootdomain(void)
7107{
Rusty Russellc6c49272008-11-25 02:35:05 +10307108 init_rootdomain(&def_root_domain, true);
7109
Gregory Haskins57d885f2008-01-25 21:08:18 +01007110 atomic_set(&def_root_domain.refcount, 1);
7111}
7112
Gregory Haskinsdc938522008-01-25 21:08:26 +01007113static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007114{
7115 struct root_domain *rd;
7116
7117 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
7118 if (!rd)
7119 return NULL;
7120
Rusty Russellc6c49272008-11-25 02:35:05 +10307121 if (init_rootdomain(rd, false) != 0) {
7122 kfree(rd);
7123 return NULL;
7124 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01007125
7126 return rd;
7127}
7128
Linus Torvalds1da177e2005-04-16 15:20:36 -07007129/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01007130 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07007131 * hold the hotplug lock.
7132 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01007133static void
7134cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007135{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007136 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07007137 struct sched_domain *tmp;
7138
7139 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08007140 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007141 struct sched_domain *parent = tmp->parent;
7142 if (!parent)
7143 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08007144
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007145 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007146 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007147 if (parent->parent)
7148 parent->parent->child = tmp;
Li Zefanf29c9b12008-11-06 09:45:16 +08007149 } else
7150 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07007151 }
7152
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007153 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007154 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007155 if (sd)
7156 sd->child = NULL;
7157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007158
7159 sched_domain_debug(sd, cpu);
7160
Gregory Haskins57d885f2008-01-25 21:08:18 +01007161 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07007162 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163}
7164
7165/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10307166static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167
7168/* Setup the mask of cpus configured for isolated domains */
7169static int __init isolated_cpu_setup(char *str)
7170{
Rusty Russell968ea6d2008-12-13 21:55:51 +10307171 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172 return 1;
7173}
7174
Ingo Molnar8927f492007-10-15 17:00:13 +02007175__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007176
7177/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007178 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
7179 * to a function which identifies what group(along with sched group) a CPU
Rusty Russell96f874e22008-11-25 02:35:14 +10307180 * belongs to. The return value of group_fn must be a >= 0 and < nr_cpu_ids
7181 * (due to the fact that we keep track of groups covered with a struct cpumask).
Linus Torvalds1da177e2005-04-16 15:20:36 -07007182 *
7183 * init_sched_build_groups will build a circular linked list of the groups
7184 * covered by the given span, and will set each group's ->cpumask correctly,
7185 * and ->cpu_power to 0.
7186 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007187static void
Rusty Russell96f874e22008-11-25 02:35:14 +10307188init_sched_build_groups(const struct cpumask *span,
7189 const struct cpumask *cpu_map,
7190 int (*group_fn)(int cpu, const struct cpumask *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007191 struct sched_group **sg,
Rusty Russell96f874e22008-11-25 02:35:14 +10307192 struct cpumask *tmpmask),
7193 struct cpumask *covered, struct cpumask *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194{
7195 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007196 int i;
7197
Rusty Russell96f874e22008-11-25 02:35:14 +10307198 cpumask_clear(covered);
Mike Travis7c16ec52008-04-04 18:11:11 -07007199
Rusty Russellabcd0832008-11-25 02:35:02 +10307200 for_each_cpu(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007201 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007202 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007203 int j;
7204
Rusty Russell758b2cd2008-11-25 02:35:04 +10307205 if (cpumask_test_cpu(i, covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206 continue;
7207
Rusty Russell758b2cd2008-11-25 02:35:04 +10307208 cpumask_clear(sched_group_cpus(sg));
Eric Dumazet5517d862007-05-08 00:32:57 -07007209 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210
Rusty Russellabcd0832008-11-25 02:35:02 +10307211 for_each_cpu(j, span) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007212 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007213 continue;
7214
Rusty Russell96f874e22008-11-25 02:35:14 +10307215 cpumask_set_cpu(j, covered);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307216 cpumask_set_cpu(j, sched_group_cpus(sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007217 }
7218 if (!first)
7219 first = sg;
7220 if (last)
7221 last->next = sg;
7222 last = sg;
7223 }
7224 last->next = first;
7225}
7226
John Hawkes9c1cfda2005-09-06 15:18:14 -07007227#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228
John Hawkes9c1cfda2005-09-06 15:18:14 -07007229#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08007230
John Hawkes9c1cfda2005-09-06 15:18:14 -07007231/**
7232 * find_next_best_node - find the next node to include in a sched_domain
7233 * @node: node whose sched_domain we're building
7234 * @used_nodes: nodes already in the sched_domain
7235 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007236 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07007237 * finds the closest node not already in the @used_nodes map.
7238 *
7239 * Should use nodemask_t.
7240 */
Mike Travisc5f59f02008-04-04 18:11:10 -07007241static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007242{
7243 int i, n, val, min_val, best_node = 0;
7244
7245 min_val = INT_MAX;
7246
Mike Travis076ac2a2008-05-12 21:21:12 +02007247 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007248 /* Start at @node */
Mike Travis076ac2a2008-05-12 21:21:12 +02007249 n = (node + i) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007250
7251 if (!nr_cpus_node(n))
7252 continue;
7253
7254 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07007255 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007256 continue;
7257
7258 /* Simple min distance search */
7259 val = node_distance(node, n);
7260
7261 if (val < min_val) {
7262 min_val = val;
7263 best_node = n;
7264 }
7265 }
7266
Mike Travisc5f59f02008-04-04 18:11:10 -07007267 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007268 return best_node;
7269}
7270
7271/**
7272 * sched_domain_node_span - get a cpumask for a node's sched_domain
7273 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07007274 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07007275 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007276 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07007277 * should be one that prevents unnecessary balancing, but also spreads tasks
7278 * out optimally.
7279 */
Rusty Russell96f874e22008-11-25 02:35:14 +10307280static void sched_domain_node_span(int node, struct cpumask *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007281{
Mike Travisc5f59f02008-04-04 18:11:10 -07007282 nodemask_t used_nodes;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007283 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007284
Mike Travis6ca09df2008-12-31 18:08:45 -08007285 cpumask_clear(span);
Mike Travisc5f59f02008-04-04 18:11:10 -07007286 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007287
Mike Travis6ca09df2008-12-31 18:08:45 -08007288 cpumask_or(span, span, cpumask_of_node(node));
Mike Travisc5f59f02008-04-04 18:11:10 -07007289 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007290
7291 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07007292 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007293
Mike Travis6ca09df2008-12-31 18:08:45 -08007294 cpumask_or(span, span, cpumask_of_node(next_node));
John Hawkes9c1cfda2005-09-06 15:18:14 -07007295 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007296}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007297#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007298
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007299int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007300
John Hawkes9c1cfda2005-09-06 15:18:14 -07007301/*
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307302 * The cpus mask in sched_group and sched_domain hangs off the end.
7303 * FIXME: use cpumask_var_t or dynamic percpu alloc to avoid wasting space
7304 * for nr_cpu_ids < CONFIG_NR_CPUS.
7305 */
7306struct static_sched_group {
7307 struct sched_group sg;
7308 DECLARE_BITMAP(cpus, CONFIG_NR_CPUS);
7309};
7310
7311struct static_sched_domain {
7312 struct sched_domain sd;
7313 DECLARE_BITMAP(span, CONFIG_NR_CPUS);
7314};
7315
7316/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07007317 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07007318 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319#ifdef CONFIG_SCHED_SMT
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307320static DEFINE_PER_CPU(struct static_sched_domain, cpu_domains);
7321static DEFINE_PER_CPU(struct static_sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007322
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007323static int
Rusty Russell96f874e22008-11-25 02:35:14 +10307324cpu_to_cpu_group(int cpu, const struct cpumask *cpu_map,
7325 struct sched_group **sg, struct cpumask *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007326{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007327 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307328 *sg = &per_cpu(sched_group_cpus, cpu).sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007329 return cpu;
7330}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007331#endif /* CONFIG_SCHED_SMT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007332
Ingo Molnar48f24c42006-07-03 00:25:40 -07007333/*
7334 * multi-core sched-domains:
7335 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007336#ifdef CONFIG_SCHED_MC
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307337static DEFINE_PER_CPU(struct static_sched_domain, core_domains);
7338static DEFINE_PER_CPU(struct static_sched_group, sched_group_core);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007339#endif /* CONFIG_SCHED_MC */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007340
7341#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007342static int
Rusty Russell96f874e22008-11-25 02:35:14 +10307343cpu_to_core_group(int cpu, const struct cpumask *cpu_map,
7344 struct sched_group **sg, struct cpumask *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007345{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007346 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07007347
Rusty Russell96f874e22008-11-25 02:35:14 +10307348 cpumask_and(mask, &per_cpu(cpu_sibling_map, cpu), cpu_map);
7349 group = cpumask_first(mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007350 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307351 *sg = &per_cpu(sched_group_core, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007352 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007353}
7354#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007355static int
Rusty Russell96f874e22008-11-25 02:35:14 +10307356cpu_to_core_group(int cpu, const struct cpumask *cpu_map,
7357 struct sched_group **sg, struct cpumask *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007358{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007359 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307360 *sg = &per_cpu(sched_group_core, cpu).sg;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007361 return cpu;
7362}
7363#endif
7364
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307365static DEFINE_PER_CPU(struct static_sched_domain, phys_domains);
7366static DEFINE_PER_CPU(struct static_sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007367
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007368static int
Rusty Russell96f874e22008-11-25 02:35:14 +10307369cpu_to_phys_group(int cpu, const struct cpumask *cpu_map,
7370 struct sched_group **sg, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007372 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007373#ifdef CONFIG_SCHED_MC
Mike Travis6ca09df2008-12-31 18:08:45 -08007374 cpumask_and(mask, cpu_coregroup_mask(cpu), cpu_map);
Rusty Russell96f874e22008-11-25 02:35:14 +10307375 group = cpumask_first(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007376#elif defined(CONFIG_SCHED_SMT)
Rusty Russell96f874e22008-11-25 02:35:14 +10307377 cpumask_and(mask, &per_cpu(cpu_sibling_map, cpu), cpu_map);
7378 group = cpumask_first(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007380 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007381#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007382 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307383 *sg = &per_cpu(sched_group_phys, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007384 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385}
7386
7387#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07007388/*
7389 * The init_sched_build_groups can't handle what we want to do with node
7390 * groups, so roll our own. Now each node has its own list of groups which
7391 * gets dynamically allocated.
7392 */
Rusty Russell62ea9ce2009-01-11 01:04:16 +01007393static DEFINE_PER_CPU(struct static_sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07007394static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007395
Rusty Russell62ea9ce2009-01-11 01:04:16 +01007396static DEFINE_PER_CPU(struct static_sched_domain, allnodes_domains);
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307397static DEFINE_PER_CPU(struct static_sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007398
Rusty Russell96f874e22008-11-25 02:35:14 +10307399static int cpu_to_allnodes_group(int cpu, const struct cpumask *cpu_map,
7400 struct sched_group **sg,
7401 struct cpumask *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007402{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007403 int group;
7404
Mike Travis6ca09df2008-12-31 18:08:45 -08007405 cpumask_and(nodemask, cpumask_of_node(cpu_to_node(cpu)), cpu_map);
Rusty Russell96f874e22008-11-25 02:35:14 +10307406 group = cpumask_first(nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007407
7408 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307409 *sg = &per_cpu(sched_group_allnodes, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007410 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007412
Siddha, Suresh B08069032006-03-27 01:15:23 -08007413static void init_numa_sched_groups_power(struct sched_group *group_head)
7414{
7415 struct sched_group *sg = group_head;
7416 int j;
7417
7418 if (!sg)
7419 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007420 do {
Rusty Russell758b2cd2008-11-25 02:35:04 +10307421 for_each_cpu(j, sched_group_cpus(sg)) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02007422 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007423
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307424 sd = &per_cpu(phys_domains, j).sd;
Rusty Russell758b2cd2008-11-25 02:35:04 +10307425 if (j != cpumask_first(sched_group_cpus(sd->groups))) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02007426 /*
7427 * Only add "power" once for each
7428 * physical package.
7429 */
7430 continue;
7431 }
7432
7433 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007434 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007435 sg = sg->next;
7436 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007437}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007438#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007439
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007440#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007441/* Free memory allocated for various sched_group structures */
Rusty Russell96f874e22008-11-25 02:35:14 +10307442static void free_sched_groups(const struct cpumask *cpu_map,
7443 struct cpumask *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007444{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007445 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007446
Rusty Russellabcd0832008-11-25 02:35:02 +10307447 for_each_cpu(cpu, cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007448 struct sched_group **sched_group_nodes
7449 = sched_group_nodes_bycpu[cpu];
7450
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007451 if (!sched_group_nodes)
7452 continue;
7453
Mike Travis076ac2a2008-05-12 21:21:12 +02007454 for (i = 0; i < nr_node_ids; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007455 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7456
Mike Travis6ca09df2008-12-31 18:08:45 -08007457 cpumask_and(nodemask, cpumask_of_node(i), cpu_map);
Rusty Russell96f874e22008-11-25 02:35:14 +10307458 if (cpumask_empty(nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007459 continue;
7460
7461 if (sg == NULL)
7462 continue;
7463 sg = sg->next;
7464next_sg:
7465 oldsg = sg;
7466 sg = sg->next;
7467 kfree(oldsg);
7468 if (oldsg != sched_group_nodes[i])
7469 goto next_sg;
7470 }
7471 kfree(sched_group_nodes);
7472 sched_group_nodes_bycpu[cpu] = NULL;
7473 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007474}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007475#else /* !CONFIG_NUMA */
Rusty Russell96f874e22008-11-25 02:35:14 +10307476static void free_sched_groups(const struct cpumask *cpu_map,
7477 struct cpumask *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007478{
7479}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007480#endif /* CONFIG_NUMA */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007481
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007483 * Initialize sched groups cpu_power.
7484 *
7485 * cpu_power indicates the capacity of sched group, which is used while
7486 * distributing the load between different sched groups in a sched domain.
7487 * Typically cpu_power for all the groups in a sched domain will be same unless
7488 * there are asymmetries in the topology. If there are asymmetries, group
7489 * having more cpu_power will pickup more load compared to the group having
7490 * less cpu_power.
7491 *
7492 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7493 * the maximum number of tasks a group can handle in the presence of other idle
7494 * or lightly loaded groups in the same sched domain.
7495 */
7496static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7497{
7498 struct sched_domain *child;
7499 struct sched_group *group;
7500
7501 WARN_ON(!sd || !sd->groups);
7502
Rusty Russell758b2cd2008-11-25 02:35:04 +10307503 if (cpu != cpumask_first(sched_group_cpus(sd->groups)))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007504 return;
7505
7506 child = sd->child;
7507
Eric Dumazet5517d862007-05-08 00:32:57 -07007508 sd->groups->__cpu_power = 0;
7509
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007510 /*
7511 * For perf policy, if the groups in child domain share resources
7512 * (for example cores sharing some portions of the cache hierarchy
7513 * or SMT), then set this domain groups cpu_power such that each group
7514 * can handle only one task, when there are other idle groups in the
7515 * same sched domain.
7516 */
7517 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7518 (child->flags &
7519 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007520 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007521 return;
7522 }
7523
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007524 /*
7525 * add cpu_power of each child group to this groups cpu_power
7526 */
7527 group = child->groups;
7528 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007529 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007530 group = group->next;
7531 } while (group != child->groups);
7532}
7533
7534/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007535 * Initializers for schedule domains
7536 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7537 */
7538
Ingo Molnara5d8c342008-10-09 11:35:51 +02007539#ifdef CONFIG_SCHED_DEBUG
7540# define SD_INIT_NAME(sd, type) sd->name = #type
7541#else
7542# define SD_INIT_NAME(sd, type) do { } while (0)
7543#endif
7544
Mike Travis7c16ec52008-04-04 18:11:11 -07007545#define SD_INIT(sd, type) sd_init_##type(sd)
Ingo Molnara5d8c342008-10-09 11:35:51 +02007546
Mike Travis7c16ec52008-04-04 18:11:11 -07007547#define SD_INIT_FUNC(type) \
7548static noinline void sd_init_##type(struct sched_domain *sd) \
7549{ \
7550 memset(sd, 0, sizeof(*sd)); \
7551 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007552 sd->level = SD_LV_##type; \
Ingo Molnara5d8c342008-10-09 11:35:51 +02007553 SD_INIT_NAME(sd, type); \
Mike Travis7c16ec52008-04-04 18:11:11 -07007554}
7555
7556SD_INIT_FUNC(CPU)
7557#ifdef CONFIG_NUMA
7558 SD_INIT_FUNC(ALLNODES)
7559 SD_INIT_FUNC(NODE)
7560#endif
7561#ifdef CONFIG_SCHED_SMT
7562 SD_INIT_FUNC(SIBLING)
7563#endif
7564#ifdef CONFIG_SCHED_MC
7565 SD_INIT_FUNC(MC)
7566#endif
7567
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007568static int default_relax_domain_level = -1;
7569
7570static int __init setup_relax_domain_level(char *str)
7571{
Li Zefan30e0e172008-05-13 10:27:17 +08007572 unsigned long val;
7573
7574 val = simple_strtoul(str, NULL, 0);
7575 if (val < SD_LV_MAX)
7576 default_relax_domain_level = val;
7577
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007578 return 1;
7579}
7580__setup("relax_domain_level=", setup_relax_domain_level);
7581
7582static void set_domain_attribute(struct sched_domain *sd,
7583 struct sched_domain_attr *attr)
7584{
7585 int request;
7586
7587 if (!attr || attr->relax_domain_level < 0) {
7588 if (default_relax_domain_level < 0)
7589 return;
7590 else
7591 request = default_relax_domain_level;
7592 } else
7593 request = attr->relax_domain_level;
7594 if (request < sd->level) {
7595 /* turn off idle balance on this domain */
7596 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7597 } else {
7598 /* turn on idle balance on this domain */
7599 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7600 }
7601}
7602
Mike Travis7c16ec52008-04-04 18:11:11 -07007603/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007604 * Build sched domains for a given set of cpus and attach the sched domains
7605 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606 */
Rusty Russell96f874e22008-11-25 02:35:14 +10307607static int __build_sched_domains(const struct cpumask *cpu_map,
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007608 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007609{
Rusty Russell3404c8d2008-11-25 02:35:03 +10307610 int i, err = -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007611 struct root_domain *rd;
Rusty Russell3404c8d2008-11-25 02:35:03 +10307612 cpumask_var_t nodemask, this_sibling_map, this_core_map, send_covered,
7613 tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007614#ifdef CONFIG_NUMA
Rusty Russell3404c8d2008-11-25 02:35:03 +10307615 cpumask_var_t domainspan, covered, notcovered;
John Hawkesd1b55132005-09-06 15:18:14 -07007616 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007617 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007618
Rusty Russell3404c8d2008-11-25 02:35:03 +10307619 if (!alloc_cpumask_var(&domainspan, GFP_KERNEL))
7620 goto out;
7621 if (!alloc_cpumask_var(&covered, GFP_KERNEL))
7622 goto free_domainspan;
7623 if (!alloc_cpumask_var(&notcovered, GFP_KERNEL))
7624 goto free_covered;
7625#endif
7626
7627 if (!alloc_cpumask_var(&nodemask, GFP_KERNEL))
7628 goto free_notcovered;
7629 if (!alloc_cpumask_var(&this_sibling_map, GFP_KERNEL))
7630 goto free_nodemask;
7631 if (!alloc_cpumask_var(&this_core_map, GFP_KERNEL))
7632 goto free_this_sibling_map;
7633 if (!alloc_cpumask_var(&send_covered, GFP_KERNEL))
7634 goto free_this_core_map;
7635 if (!alloc_cpumask_var(&tmpmask, GFP_KERNEL))
7636 goto free_send_covered;
7637
7638#ifdef CONFIG_NUMA
John Hawkesd1b55132005-09-06 15:18:14 -07007639 /*
7640 * Allocate the per-node list of sched groups
7641 */
Mike Travis076ac2a2008-05-12 21:21:12 +02007642 sched_group_nodes = kcalloc(nr_node_ids, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007643 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007644 if (!sched_group_nodes) {
7645 printk(KERN_WARNING "Can not alloc sched group node list\n");
Rusty Russell3404c8d2008-11-25 02:35:03 +10307646 goto free_tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007647 }
John Hawkesd1b55132005-09-06 15:18:14 -07007648#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007649
Gregory Haskinsdc938522008-01-25 21:08:26 +01007650 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007651 if (!rd) {
7652 printk(KERN_WARNING "Cannot alloc root domain\n");
Rusty Russell3404c8d2008-11-25 02:35:03 +10307653 goto free_sched_groups;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007654 }
7655
Mike Travis7c16ec52008-04-04 18:11:11 -07007656#ifdef CONFIG_NUMA
Rusty Russell96f874e22008-11-25 02:35:14 +10307657 sched_group_nodes_bycpu[cpumask_first(cpu_map)] = sched_group_nodes;
Mike Travis7c16ec52008-04-04 18:11:11 -07007658#endif
7659
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007661 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007662 */
Rusty Russellabcd0832008-11-25 02:35:02 +10307663 for_each_cpu(i, cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664 struct sched_domain *sd = NULL, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007665
Mike Travis6ca09df2008-12-31 18:08:45 -08007666 cpumask_and(nodemask, cpumask_of_node(cpu_to_node(i)), cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667
7668#ifdef CONFIG_NUMA
Rusty Russell96f874e22008-11-25 02:35:14 +10307669 if (cpumask_weight(cpu_map) >
7670 SD_NODES_PER_DOMAIN*cpumask_weight(nodemask)) {
Rusty Russell62ea9ce2009-01-11 01:04:16 +01007671 sd = &per_cpu(allnodes_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007672 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007673 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307674 cpumask_copy(sched_domain_span(sd), cpu_map);
Mike Travis7c16ec52008-04-04 18:11:11 -07007675 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007676 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007677 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007678 } else
7679 p = NULL;
7680
Rusty Russell62ea9ce2009-01-11 01:04:16 +01007681 sd = &per_cpu(node_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007682 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007683 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307684 sched_domain_node_span(cpu_to_node(i), sched_domain_span(sd));
John Hawkes9c1cfda2005-09-06 15:18:14 -07007685 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007686 if (p)
7687 p->child = sd;
Rusty Russell758b2cd2008-11-25 02:35:04 +10307688 cpumask_and(sched_domain_span(sd),
7689 sched_domain_span(sd), cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690#endif
7691
7692 p = sd;
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307693 sd = &per_cpu(phys_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007694 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007695 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307696 cpumask_copy(sched_domain_span(sd), nodemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007698 if (p)
7699 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007700 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007701
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007702#ifdef CONFIG_SCHED_MC
7703 p = sd;
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307704 sd = &per_cpu(core_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007705 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007706 set_domain_attribute(sd, attr);
Mike Travis6ca09df2008-12-31 18:08:45 -08007707 cpumask_and(sched_domain_span(sd), cpu_map,
7708 cpu_coregroup_mask(i));
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007709 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007710 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007711 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007712#endif
7713
Linus Torvalds1da177e2005-04-16 15:20:36 -07007714#ifdef CONFIG_SCHED_SMT
7715 p = sd;
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307716 sd = &per_cpu(cpu_domains, i).sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007717 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007718 set_domain_attribute(sd, attr);
Rusty Russell758b2cd2008-11-25 02:35:04 +10307719 cpumask_and(sched_domain_span(sd),
7720 &per_cpu(cpu_sibling_map, i), cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007721 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007722 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007723 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724#endif
7725 }
7726
7727#ifdef CONFIG_SCHED_SMT
7728 /* Set up CPU (sibling) groups */
Rusty Russellabcd0832008-11-25 02:35:02 +10307729 for_each_cpu(i, cpu_map) {
Rusty Russell96f874e22008-11-25 02:35:14 +10307730 cpumask_and(this_sibling_map,
7731 &per_cpu(cpu_sibling_map, i), cpu_map);
7732 if (i != cpumask_first(this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733 continue;
7734
Ingo Molnardd41f592007-07-09 18:51:59 +02007735 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007736 &cpu_to_cpu_group,
7737 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007738 }
7739#endif
7740
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007741#ifdef CONFIG_SCHED_MC
7742 /* Set up multi-core groups */
Rusty Russellabcd0832008-11-25 02:35:02 +10307743 for_each_cpu(i, cpu_map) {
Mike Travis6ca09df2008-12-31 18:08:45 -08007744 cpumask_and(this_core_map, cpu_coregroup_mask(i), cpu_map);
Rusty Russell96f874e22008-11-25 02:35:14 +10307745 if (i != cpumask_first(this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007746 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007747
Ingo Molnardd41f592007-07-09 18:51:59 +02007748 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007749 &cpu_to_core_group,
7750 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007751 }
7752#endif
7753
Linus Torvalds1da177e2005-04-16 15:20:36 -07007754 /* Set up physical groups */
Mike Travis076ac2a2008-05-12 21:21:12 +02007755 for (i = 0; i < nr_node_ids; i++) {
Mike Travis6ca09df2008-12-31 18:08:45 -08007756 cpumask_and(nodemask, cpumask_of_node(i), cpu_map);
Rusty Russell96f874e22008-11-25 02:35:14 +10307757 if (cpumask_empty(nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007758 continue;
7759
Mike Travis7c16ec52008-04-04 18:11:11 -07007760 init_sched_build_groups(nodemask, cpu_map,
7761 &cpu_to_phys_group,
7762 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007763 }
7764
7765#ifdef CONFIG_NUMA
7766 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007767 if (sd_allnodes) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007768 init_sched_build_groups(cpu_map, cpu_map,
7769 &cpu_to_allnodes_group,
7770 send_covered, tmpmask);
7771 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007772
Mike Travis076ac2a2008-05-12 21:21:12 +02007773 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007774 /* Set up node groups */
7775 struct sched_group *sg, *prev;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007776 int j;
7777
Rusty Russell96f874e22008-11-25 02:35:14 +10307778 cpumask_clear(covered);
Mike Travis6ca09df2008-12-31 18:08:45 -08007779 cpumask_and(nodemask, cpumask_of_node(i), cpu_map);
Rusty Russell96f874e22008-11-25 02:35:14 +10307780 if (cpumask_empty(nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007781 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007782 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007783 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007784
Mike Travis4bdbaad32008-04-15 16:35:52 -07007785 sched_domain_node_span(i, domainspan);
Rusty Russell96f874e22008-11-25 02:35:14 +10307786 cpumask_and(domainspan, domainspan, cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007787
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307788 sg = kmalloc_node(sizeof(struct sched_group) + cpumask_size(),
7789 GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007790 if (!sg) {
7791 printk(KERN_WARNING "Can not alloc domain group for "
7792 "node %d\n", i);
7793 goto error;
7794 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007795 sched_group_nodes[i] = sg;
Rusty Russellabcd0832008-11-25 02:35:02 +10307796 for_each_cpu(j, nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007797 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007798
Rusty Russell62ea9ce2009-01-11 01:04:16 +01007799 sd = &per_cpu(node_domains, j).sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007800 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007801 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007802 sg->__cpu_power = 0;
Rusty Russell758b2cd2008-11-25 02:35:04 +10307803 cpumask_copy(sched_group_cpus(sg), nodemask);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007804 sg->next = sg;
Rusty Russell96f874e22008-11-25 02:35:14 +10307805 cpumask_or(covered, covered, nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007806 prev = sg;
7807
Mike Travis076ac2a2008-05-12 21:21:12 +02007808 for (j = 0; j < nr_node_ids; j++) {
Mike Travis076ac2a2008-05-12 21:21:12 +02007809 int n = (i + j) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007810
Rusty Russell96f874e22008-11-25 02:35:14 +10307811 cpumask_complement(notcovered, covered);
7812 cpumask_and(tmpmask, notcovered, cpu_map);
7813 cpumask_and(tmpmask, tmpmask, domainspan);
7814 if (cpumask_empty(tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007815 break;
7816
Mike Travis6ca09df2008-12-31 18:08:45 -08007817 cpumask_and(tmpmask, tmpmask, cpumask_of_node(n));
Rusty Russell96f874e22008-11-25 02:35:14 +10307818 if (cpumask_empty(tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007819 continue;
7820
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307821 sg = kmalloc_node(sizeof(struct sched_group) +
7822 cpumask_size(),
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007823 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007824 if (!sg) {
7825 printk(KERN_WARNING
7826 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007827 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007828 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007829 sg->__cpu_power = 0;
Rusty Russell758b2cd2008-11-25 02:35:04 +10307830 cpumask_copy(sched_group_cpus(sg), tmpmask);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007831 sg->next = prev->next;
Rusty Russell96f874e22008-11-25 02:35:14 +10307832 cpumask_or(covered, covered, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007833 prev->next = sg;
7834 prev = sg;
7835 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007837#endif
7838
7839 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007840#ifdef CONFIG_SCHED_SMT
Rusty Russellabcd0832008-11-25 02:35:02 +10307841 for_each_cpu(i, cpu_map) {
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307842 struct sched_domain *sd = &per_cpu(cpu_domains, i).sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02007843
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007844 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007845 }
7846#endif
7847#ifdef CONFIG_SCHED_MC
Rusty Russellabcd0832008-11-25 02:35:02 +10307848 for_each_cpu(i, cpu_map) {
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307849 struct sched_domain *sd = &per_cpu(core_domains, i).sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02007850
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007851 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007852 }
7853#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007854
Rusty Russellabcd0832008-11-25 02:35:02 +10307855 for_each_cpu(i, cpu_map) {
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307856 struct sched_domain *sd = &per_cpu(phys_domains, i).sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02007857
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007858 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007859 }
7860
John Hawkes9c1cfda2005-09-06 15:18:14 -07007861#ifdef CONFIG_NUMA
Mike Travis076ac2a2008-05-12 21:21:12 +02007862 for (i = 0; i < nr_node_ids; i++)
Siddha, Suresh B08069032006-03-27 01:15:23 -08007863 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007864
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007865 if (sd_allnodes) {
7866 struct sched_group *sg;
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007867
Rusty Russell96f874e22008-11-25 02:35:14 +10307868 cpu_to_allnodes_group(cpumask_first(cpu_map), cpu_map, &sg,
Mike Travis7c16ec52008-04-04 18:11:11 -07007869 tmpmask);
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007870 init_numa_sched_groups_power(sg);
7871 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007872#endif
7873
Linus Torvalds1da177e2005-04-16 15:20:36 -07007874 /* Attach the domains */
Rusty Russellabcd0832008-11-25 02:35:02 +10307875 for_each_cpu(i, cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007876 struct sched_domain *sd;
7877#ifdef CONFIG_SCHED_SMT
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307878 sd = &per_cpu(cpu_domains, i).sd;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007879#elif defined(CONFIG_SCHED_MC)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307880 sd = &per_cpu(core_domains, i).sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881#else
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307882 sd = &per_cpu(phys_domains, i).sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007883#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007884 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007886
Rusty Russell3404c8d2008-11-25 02:35:03 +10307887 err = 0;
7888
7889free_tmpmask:
7890 free_cpumask_var(tmpmask);
7891free_send_covered:
7892 free_cpumask_var(send_covered);
7893free_this_core_map:
7894 free_cpumask_var(this_core_map);
7895free_this_sibling_map:
7896 free_cpumask_var(this_sibling_map);
7897free_nodemask:
7898 free_cpumask_var(nodemask);
7899free_notcovered:
7900#ifdef CONFIG_NUMA
7901 free_cpumask_var(notcovered);
7902free_covered:
7903 free_cpumask_var(covered);
7904free_domainspan:
7905 free_cpumask_var(domainspan);
7906out:
7907#endif
7908 return err;
7909
7910free_sched_groups:
7911#ifdef CONFIG_NUMA
7912 kfree(sched_group_nodes);
7913#endif
7914 goto free_tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007915
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007916#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007917error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007918 free_sched_groups(cpu_map, tmpmask);
Rusty Russellc6c49272008-11-25 02:35:05 +10307919 free_rootdomain(rd);
Rusty Russell3404c8d2008-11-25 02:35:03 +10307920 goto free_tmpmask;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007921#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007922}
Paul Jackson029190c2007-10-18 23:40:20 -07007923
Rusty Russell96f874e22008-11-25 02:35:14 +10307924static int build_sched_domains(const struct cpumask *cpu_map)
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007925{
7926 return __build_sched_domains(cpu_map, NULL);
7927}
7928
Rusty Russell96f874e22008-11-25 02:35:14 +10307929static struct cpumask *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07007930static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007931static struct sched_domain_attr *dattr_cur;
7932 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007933
7934/*
7935 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10307936 * cpumask) fails, then fallback to a single sched domain,
7937 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07007938 */
Rusty Russell42128232008-11-25 02:35:12 +10307939static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07007940
Heiko Carstensee79d1b2008-12-09 18:49:50 +01007941/*
7942 * arch_update_cpu_topology lets virtualized architectures update the
7943 * cpu core maps. It is supposed to return 1 if the topology changed
7944 * or 0 if it stayed the same.
7945 */
7946int __attribute__((weak)) arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01007947{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01007948 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01007949}
7950
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007951/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007952 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007953 * For now this just excludes isolated cpus, but could be used to
7954 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007955 */
Rusty Russell96f874e22008-11-25 02:35:14 +10307956static int arch_init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007957{
Milton Miller73785472007-10-24 18:23:48 +02007958 int err;
7959
Heiko Carstens22e52b02008-03-12 18:31:59 +01007960 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007961 ndoms_cur = 1;
Rusty Russell96f874e22008-11-25 02:35:14 +10307962 doms_cur = kmalloc(cpumask_size(), GFP_KERNEL);
Paul Jackson029190c2007-10-18 23:40:20 -07007963 if (!doms_cur)
Rusty Russell42128232008-11-25 02:35:12 +10307964 doms_cur = fallback_doms;
Rusty Russelldcc30a32008-11-25 02:35:12 +10307965 cpumask_andnot(doms_cur, cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007966 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007967 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007968 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007969
7970 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007971}
7972
Rusty Russell96f874e22008-11-25 02:35:14 +10307973static void arch_destroy_sched_domains(const struct cpumask *cpu_map,
7974 struct cpumask *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007975{
Mike Travis7c16ec52008-04-04 18:11:11 -07007976 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007977}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007978
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007979/*
7980 * Detach sched domains from a group of cpus specified in cpu_map
7981 * These cpus will now be attached to the NULL domain
7982 */
Rusty Russell96f874e22008-11-25 02:35:14 +10307983static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007984{
Rusty Russell96f874e22008-11-25 02:35:14 +10307985 /* Save because hotplug lock held. */
7986 static DECLARE_BITMAP(tmpmask, CONFIG_NR_CPUS);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007987 int i;
7988
Rusty Russellabcd0832008-11-25 02:35:02 +10307989 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007990 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007991 synchronize_sched();
Rusty Russell96f874e22008-11-25 02:35:14 +10307992 arch_destroy_sched_domains(cpu_map, to_cpumask(tmpmask));
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007993}
7994
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007995/* handle null as "default" */
7996static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7997 struct sched_domain_attr *new, int idx_new)
7998{
7999 struct sched_domain_attr tmp;
8000
8001 /* fast path */
8002 if (!new && !cur)
8003 return 1;
8004
8005 tmp = SD_ATTR_INIT;
8006 return !memcmp(cur ? (cur + idx_cur) : &tmp,
8007 new ? (new + idx_new) : &tmp,
8008 sizeof(struct sched_domain_attr));
8009}
8010
Paul Jackson029190c2007-10-18 23:40:20 -07008011/*
8012 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008013 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07008014 * doms_new[] to the current sched domain partitioning, doms_cur[].
8015 * It destroys each deleted domain and builds each new domain.
8016 *
Rusty Russell96f874e22008-11-25 02:35:14 +10308017 * 'doms_new' is an array of cpumask's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008018 * The masks don't intersect (don't overlap.) We should setup one
8019 * sched domain for each mask. CPUs not in any of the cpumasks will
8020 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07008021 * current 'doms_cur' domains and in the new 'doms_new', we can leave
8022 * it as it is.
8023 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008024 * The passed in 'doms_new' should be kmalloc'd. This routine takes
8025 * ownership of it and will kfree it when done with it. If the caller
Li Zefan700018e2008-11-18 14:02:03 +08008026 * failed the kmalloc call, then it can pass in doms_new == NULL &&
8027 * ndoms_new == 1, and partition_sched_domains() will fallback to
8028 * the single partition 'fallback_doms', it also forces the domains
8029 * to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07008030 *
Rusty Russell96f874e22008-11-25 02:35:14 +10308031 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08008032 * ndoms_new == 0 is a special case for destroying existing domains,
8033 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008034 *
Paul Jackson029190c2007-10-18 23:40:20 -07008035 * Call with hotplug lock held
8036 */
Rusty Russell96f874e22008-11-25 02:35:14 +10308037/* FIXME: Change to struct cpumask *doms_new[] */
8038void partition_sched_domains(int ndoms_new, struct cpumask *doms_new,
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008039 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07008040{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008041 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01008042 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07008043
Heiko Carstens712555e2008-04-28 11:33:07 +02008044 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01008045
Milton Miller73785472007-10-24 18:23:48 +02008046 /* always unregister in case we don't destroy any domains */
8047 unregister_sched_domain_sysctl();
8048
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01008049 /* Let architecture update cpu core mappings. */
8050 new_topology = arch_update_cpu_topology();
8051
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008052 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07008053
8054 /* Destroy deleted domains */
8055 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01008056 for (j = 0; j < n && !new_topology; j++) {
Rusty Russell96f874e22008-11-25 02:35:14 +10308057 if (cpumask_equal(&doms_cur[i], &doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008058 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07008059 goto match1;
8060 }
8061 /* no match - a current sched domain not in new doms_new[] */
8062 detach_destroy_domains(doms_cur + i);
8063match1:
8064 ;
8065 }
8066
Max Krasnyanskye761b772008-07-15 04:43:49 -07008067 if (doms_new == NULL) {
8068 ndoms_cur = 0;
Rusty Russell42128232008-11-25 02:35:12 +10308069 doms_new = fallback_doms;
Rusty Russelldcc30a32008-11-25 02:35:12 +10308070 cpumask_andnot(&doms_new[0], cpu_online_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08008071 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07008072 }
8073
Paul Jackson029190c2007-10-18 23:40:20 -07008074 /* Build new domains */
8075 for (i = 0; i < ndoms_new; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01008076 for (j = 0; j < ndoms_cur && !new_topology; j++) {
Rusty Russell96f874e22008-11-25 02:35:14 +10308077 if (cpumask_equal(&doms_new[i], &doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008078 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07008079 goto match2;
8080 }
8081 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008082 __build_sched_domains(doms_new + i,
8083 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07008084match2:
8085 ;
8086 }
8087
8088 /* Remember the new sched domains */
Rusty Russell42128232008-11-25 02:35:12 +10308089 if (doms_cur != fallback_doms)
Paul Jackson029190c2007-10-18 23:40:20 -07008090 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008091 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07008092 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09008093 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07008094 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02008095
8096 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01008097
Heiko Carstens712555e2008-04-28 11:33:07 +02008098 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07008099}
8100
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008101#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Li Zefanc70f22d2009-01-05 19:07:50 +08008102static void arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008103{
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008104 get_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008105
8106 /* Destroy domains first to force the rebuild */
8107 partition_sched_domains(0, NULL, NULL);
8108
Max Krasnyanskye761b772008-07-15 04:43:49 -07008109 rebuild_sched_domains();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008110 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008111}
8112
8113static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
8114{
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308115 unsigned int level = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008116
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308117 if (sscanf(buf, "%u", &level) != 1)
8118 return -EINVAL;
8119
8120 /*
8121 * level is always be positive so don't check for
8122 * level < POWERSAVINGS_BALANCE_NONE which is 0
8123 * What happens on 0 or 1 byte write,
8124 * need to check for count as well?
8125 */
8126
8127 if (level >= MAX_POWERSAVINGS_BALANCE_LEVELS)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008128 return -EINVAL;
8129
8130 if (smt)
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308131 sched_smt_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008132 else
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05308133 sched_mc_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008134
Li Zefanc70f22d2009-01-05 19:07:50 +08008135 arch_reinit_sched_domains();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008136
Li Zefanc70f22d2009-01-05 19:07:50 +08008137 return count;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008138}
8139
Adrian Bunk6707de002007-08-12 18:08:19 +02008140#ifdef CONFIG_SCHED_MC
Andi Kleenf718cd42008-07-29 22:33:52 -07008141static ssize_t sched_mc_power_savings_show(struct sysdev_class *class,
8142 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02008143{
8144 return sprintf(page, "%u\n", sched_mc_power_savings);
8145}
Andi Kleenf718cd42008-07-29 22:33:52 -07008146static ssize_t sched_mc_power_savings_store(struct sysdev_class *class,
Adrian Bunk6707de002007-08-12 18:08:19 +02008147 const char *buf, size_t count)
8148{
8149 return sched_power_savings_store(buf, count, 0);
8150}
Andi Kleenf718cd42008-07-29 22:33:52 -07008151static SYSDEV_CLASS_ATTR(sched_mc_power_savings, 0644,
8152 sched_mc_power_savings_show,
8153 sched_mc_power_savings_store);
Adrian Bunk6707de002007-08-12 18:08:19 +02008154#endif
8155
8156#ifdef CONFIG_SCHED_SMT
Andi Kleenf718cd42008-07-29 22:33:52 -07008157static ssize_t sched_smt_power_savings_show(struct sysdev_class *dev,
8158 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02008159{
8160 return sprintf(page, "%u\n", sched_smt_power_savings);
8161}
Andi Kleenf718cd42008-07-29 22:33:52 -07008162static ssize_t sched_smt_power_savings_store(struct sysdev_class *dev,
Adrian Bunk6707de002007-08-12 18:08:19 +02008163 const char *buf, size_t count)
8164{
8165 return sched_power_savings_store(buf, count, 1);
8166}
Andi Kleenf718cd42008-07-29 22:33:52 -07008167static SYSDEV_CLASS_ATTR(sched_smt_power_savings, 0644,
8168 sched_smt_power_savings_show,
Adrian Bunk6707de002007-08-12 18:08:19 +02008169 sched_smt_power_savings_store);
8170#endif
8171
Li Zefan39aac642009-01-05 19:18:02 +08008172int __init sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008173{
8174 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07008175
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008176#ifdef CONFIG_SCHED_SMT
8177 if (smt_capable())
8178 err = sysfs_create_file(&cls->kset.kobj,
8179 &attr_sched_smt_power_savings.attr);
8180#endif
8181#ifdef CONFIG_SCHED_MC
8182 if (!err && mc_capable())
8183 err = sysfs_create_file(&cls->kset.kobj,
8184 &attr_sched_mc_power_savings.attr);
8185#endif
8186 return err;
8187}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008188#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07008189
Max Krasnyanskye761b772008-07-15 04:43:49 -07008190#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07008191/*
Max Krasnyanskye761b772008-07-15 04:43:49 -07008192 * Add online and remove offline CPUs from the scheduler domains.
8193 * When cpusets are enabled they take over this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194 */
8195static int update_sched_domains(struct notifier_block *nfb,
8196 unsigned long action, void *hcpu)
8197{
Max Krasnyanskye761b772008-07-15 04:43:49 -07008198 switch (action) {
8199 case CPU_ONLINE:
8200 case CPU_ONLINE_FROZEN:
8201 case CPU_DEAD:
8202 case CPU_DEAD_FROZEN:
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07008203 partition_sched_domains(1, NULL, NULL);
Max Krasnyanskye761b772008-07-15 04:43:49 -07008204 return NOTIFY_OK;
8205
8206 default:
8207 return NOTIFY_DONE;
8208 }
8209}
8210#endif
8211
8212static int update_runtime(struct notifier_block *nfb,
8213 unsigned long action, void *hcpu)
8214{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02008215 int cpu = (int)(long)hcpu;
8216
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008218 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008219 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02008220 disable_runtime(cpu_rq(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221 return NOTIFY_OK;
8222
Linus Torvalds1da177e2005-04-16 15:20:36 -07008223 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008224 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008226 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02008227 enable_runtime(cpu_rq(cpu));
Max Krasnyanskye761b772008-07-15 04:43:49 -07008228 return NOTIFY_OK;
8229
Linus Torvalds1da177e2005-04-16 15:20:36 -07008230 default:
8231 return NOTIFY_DONE;
8232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008233}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008234
8235void __init sched_init_smp(void)
8236{
Rusty Russelldcc30a32008-11-25 02:35:12 +10308237 cpumask_var_t non_isolated_cpus;
8238
8239 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07008240
Mike Travis434d53b2008-04-04 18:11:04 -07008241#if defined(CONFIG_NUMA)
8242 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
8243 GFP_KERNEL);
8244 BUG_ON(sched_group_nodes_bycpu == NULL);
8245#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008246 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02008247 mutex_lock(&sched_domains_mutex);
Rusty Russelldcc30a32008-11-25 02:35:12 +10308248 arch_init_sched_domains(cpu_online_mask);
8249 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
8250 if (cpumask_empty(non_isolated_cpus))
8251 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02008252 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008253 put_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07008254
8255#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07008256 /* XXX: Theoretical race here - CPU may be hotplugged now */
8257 hotcpu_notifier(update_sched_domains, 0);
Max Krasnyanskye761b772008-07-15 04:43:49 -07008258#endif
8259
8260 /* RT runtime code needs to handle some hotplug events */
8261 hotcpu_notifier(update_runtime, 0);
8262
Peter Zijlstrab328ca12008-04-29 10:02:46 +02008263 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07008264
8265 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10308266 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07008267 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01008268 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10308269 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10308270
8271 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Rusty Russell0e3900e2008-11-25 02:35:13 +10308272 init_sched_rt_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008273}
8274#else
8275void __init sched_init_smp(void)
8276{
Ingo Molnar19978ca2007-11-09 22:39:38 +01008277 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278}
8279#endif /* CONFIG_SMP */
8280
8281int in_sched_functions(unsigned long addr)
8282{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008283 return in_lock_functions(addr) ||
8284 (addr >= (unsigned long)__sched_text_start
8285 && addr < (unsigned long)__sched_text_end);
8286}
8287
Alexey Dobriyana9957442007-10-15 17:00:13 +02008288static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02008289{
8290 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02008291 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02008292#ifdef CONFIG_FAIR_GROUP_SCHED
8293 cfs_rq->rq = rq;
8294#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02008295 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02008296}
8297
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008298static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
8299{
8300 struct rt_prio_array *array;
8301 int i;
8302
8303 array = &rt_rq->active;
8304 for (i = 0; i < MAX_RT_PRIO; i++) {
8305 INIT_LIST_HEAD(array->queue + i);
8306 __clear_bit(i, array->bitmap);
8307 }
8308 /* delimiter for bitsearch: */
8309 __set_bit(MAX_RT_PRIO, array->bitmap);
8310
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008311#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -05008312 rt_rq->highest_prio.curr = MAX_RT_PRIO;
Gregory Haskins398a1532009-01-14 09:10:04 -05008313#ifdef CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -05008314 rt_rq->highest_prio.next = MAX_RT_PRIO;
Peter Zijlstra48d5e252008-01-25 21:08:31 +01008315#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008316#endif
8317#ifdef CONFIG_SMP
8318 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008319 rt_rq->overloaded = 0;
Gregory Haskins917b6272008-12-29 09:39:53 -05008320 plist_head_init(&rq->rt.pushable_tasks, &rq->lock);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008321#endif
8322
8323 rt_rq->rt_time = 0;
8324 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008325 rt_rq->rt_runtime = 0;
8326 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008327
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008328#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01008329 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008330 rt_rq->rq = rq;
8331#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008332}
8333
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008334#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008335static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
8336 struct sched_entity *se, int cpu, int add,
8337 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008338{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008339 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008340 tg->cfs_rq[cpu] = cfs_rq;
8341 init_cfs_rq(cfs_rq, rq);
8342 cfs_rq->tg = tg;
8343 if (add)
8344 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
8345
8346 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008347 /* se could be NULL for init_task_group */
8348 if (!se)
8349 return;
8350
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008351 if (!parent)
8352 se->cfs_rq = &rq->cfs;
8353 else
8354 se->cfs_rq = parent->my_q;
8355
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008356 se->my_q = cfs_rq;
8357 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008358 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008359 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008360}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008361#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008362
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008363#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008364static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
8365 struct sched_rt_entity *rt_se, int cpu, int add,
8366 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008367{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008368 struct rq *rq = cpu_rq(cpu);
8369
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008370 tg->rt_rq[cpu] = rt_rq;
8371 init_rt_rq(rt_rq, rq);
8372 rt_rq->tg = tg;
8373 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008374 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008375 if (add)
8376 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
8377
8378 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008379 if (!rt_se)
8380 return;
8381
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008382 if (!parent)
8383 rt_se->rt_rq = &rq->rt;
8384 else
8385 rt_se->rt_rq = parent->my_q;
8386
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008387 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008388 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008389 INIT_LIST_HEAD(&rt_se->run_list);
8390}
8391#endif
8392
Linus Torvalds1da177e2005-04-16 15:20:36 -07008393void __init sched_init(void)
8394{
Ingo Molnardd41f592007-07-09 18:51:59 +02008395 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008396 unsigned long alloc_size = 0, ptr;
8397
8398#ifdef CONFIG_FAIR_GROUP_SCHED
8399 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8400#endif
8401#ifdef CONFIG_RT_GROUP_SCHED
8402 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8403#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008404#ifdef CONFIG_USER_SCHED
8405 alloc_size *= 2;
8406#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008407 /*
8408 * As sched_init() is called before page_alloc is setup,
8409 * we use alloc_bootmem().
8410 */
8411 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07008412 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07008413
8414#ifdef CONFIG_FAIR_GROUP_SCHED
8415 init_task_group.se = (struct sched_entity **)ptr;
8416 ptr += nr_cpu_ids * sizeof(void **);
8417
8418 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8419 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008420
8421#ifdef CONFIG_USER_SCHED
8422 root_task_group.se = (struct sched_entity **)ptr;
8423 ptr += nr_cpu_ids * sizeof(void **);
8424
8425 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8426 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008427#endif /* CONFIG_USER_SCHED */
8428#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008429#ifdef CONFIG_RT_GROUP_SCHED
8430 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8431 ptr += nr_cpu_ids * sizeof(void **);
8432
8433 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008434 ptr += nr_cpu_ids * sizeof(void **);
8435
8436#ifdef CONFIG_USER_SCHED
8437 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8438 ptr += nr_cpu_ids * sizeof(void **);
8439
8440 root_task_group.rt_rq = (struct rt_rq **)ptr;
8441 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008442#endif /* CONFIG_USER_SCHED */
8443#endif /* CONFIG_RT_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008444 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008445
Gregory Haskins57d885f2008-01-25 21:08:18 +01008446#ifdef CONFIG_SMP
8447 init_defrootdomain();
8448#endif
8449
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008450 init_rt_bandwidth(&def_rt_bandwidth,
8451 global_rt_period(), global_rt_runtime());
8452
8453#ifdef CONFIG_RT_GROUP_SCHED
8454 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8455 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008456#ifdef CONFIG_USER_SCHED
8457 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8458 global_rt_period(), RUNTIME_INF);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008459#endif /* CONFIG_USER_SCHED */
8460#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008461
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008462#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008463 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008464 INIT_LIST_HEAD(&init_task_group.children);
8465
8466#ifdef CONFIG_USER_SCHED
8467 INIT_LIST_HEAD(&root_task_group.children);
8468 init_task_group.parent = &root_task_group;
8469 list_add(&init_task_group.siblings, &root_task_group.children);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008470#endif /* CONFIG_USER_SCHED */
8471#endif /* CONFIG_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008472
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008473 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008474 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008475
8476 rq = cpu_rq(i);
8477 spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07008478 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008479 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008480 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008481#ifdef CONFIG_FAIR_GROUP_SCHED
8482 init_task_group.shares = init_task_group_load;
8483 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008484#ifdef CONFIG_CGROUP_SCHED
8485 /*
8486 * How much cpu bandwidth does init_task_group get?
8487 *
8488 * In case of task-groups formed thr' the cgroup filesystem, it
8489 * gets 100% of the cpu resources in the system. This overall
8490 * system cpu resource is divided among the tasks of
8491 * init_task_group and its child task-groups in a fair manner,
8492 * based on each entity's (task or task-group's) weight
8493 * (se->load.weight).
8494 *
8495 * In other words, if init_task_group has 10 tasks of weight
8496 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8497 * then A0's share of the cpu resource is:
8498 *
8499 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
8500 *
8501 * We achieve this by letting init_task_group's tasks sit
8502 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8503 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008504 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008505#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008506 root_task_group.shares = NICE_0_LOAD;
8507 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008508 /*
8509 * In case of task-groups formed thr' the user id of tasks,
8510 * init_task_group represents tasks belonging to root user.
8511 * Hence it forms a sibling of all subsequent groups formed.
8512 * In this case, init_task_group gets only a fraction of overall
8513 * system cpu resource, based on the weight assigned to root
8514 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8515 * by letting tasks of init_task_group sit in a separate cfs_rq
8516 * (init_cfs_rq) and having one entity represent this group of
8517 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
8518 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008519 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008520 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008521 &per_cpu(init_sched_entity, i), i, 1,
8522 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008523
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008524#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008525#endif /* CONFIG_FAIR_GROUP_SCHED */
8526
8527 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008528#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008529 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008530#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008531 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008532#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008533 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008534 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008535 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008536 &per_cpu(init_sched_rt_entity, i), i, 1,
8537 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008538#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008539#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008540
Ingo Molnardd41f592007-07-09 18:51:59 +02008541 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8542 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008543#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008544 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008545 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008546 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008547 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008549 rq->cpu = i;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04008550 rq->online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008551 rq->migration_thread = NULL;
8552 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008553 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008554#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008555 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008556 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008557 }
8558
Peter Williams2dd73a42006-06-27 02:54:34 -07008559 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008560
Avi Kivitye107be32007-07-26 13:40:43 +02008561#ifdef CONFIG_PREEMPT_NOTIFIERS
8562 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8563#endif
8564
Christoph Lameterc9819f42006-12-10 02:20:25 -08008565#ifdef CONFIG_SMP
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008566 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
Christoph Lameterc9819f42006-12-10 02:20:25 -08008567#endif
8568
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008569#ifdef CONFIG_RT_MUTEXES
8570 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8571#endif
8572
Linus Torvalds1da177e2005-04-16 15:20:36 -07008573 /*
8574 * The boot idle thread does lazy MMU switching as well:
8575 */
8576 atomic_inc(&init_mm.mm_count);
8577 enter_lazy_tlb(&init_mm, current);
8578
8579 /*
8580 * Make us the idle thread. Technically, schedule() should not be
8581 * called from this thread, however somewhere below it might be,
8582 * but because we are the idle thread, we just pick up running again
8583 * when this runqueue becomes "idle".
8584 */
8585 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008586 /*
8587 * During early bootup we pretend to be a normal task:
8588 */
8589 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008590
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10308591 /* Allocate the nohz_cpu_mask if CONFIG_CPUMASK_OFFSTACK */
8592 alloc_bootmem_cpumask_var(&nohz_cpu_mask);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10308593#ifdef CONFIG_SMP
Rusty Russell7d1e6a92008-11-25 02:35:09 +10308594#ifdef CONFIG_NO_HZ
8595 alloc_bootmem_cpumask_var(&nohz.cpu_mask);
8596#endif
Rusty Russelldcc30a32008-11-25 02:35:12 +10308597 alloc_bootmem_cpumask_var(&cpu_isolated_map);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10308598#endif /* SMP */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10308599
Ingo Molnar6892b752008-02-13 14:02:36 +01008600 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008601}
8602
8603#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8604void __might_sleep(char *file, int line)
8605{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008606#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008607 static unsigned long prev_jiffy; /* ratelimiting */
8608
Ingo Molnaraef745f2008-08-28 11:34:43 +02008609 if ((!in_atomic() && !irqs_disabled()) ||
8610 system_state != SYSTEM_RUNNING || oops_in_progress)
8611 return;
8612 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8613 return;
8614 prev_jiffy = jiffies;
8615
8616 printk(KERN_ERR
8617 "BUG: sleeping function called from invalid context at %s:%d\n",
8618 file, line);
8619 printk(KERN_ERR
8620 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
8621 in_atomic(), irqs_disabled(),
8622 current->pid, current->comm);
8623
8624 debug_show_held_locks(current);
8625 if (irqs_disabled())
8626 print_irqtrace_events(current);
8627 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008628#endif
8629}
8630EXPORT_SYMBOL(__might_sleep);
8631#endif
8632
8633#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008634static void normalize_task(struct rq *rq, struct task_struct *p)
8635{
8636 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008637
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008638 update_rq_clock(rq);
8639 on_rq = p->se.on_rq;
8640 if (on_rq)
8641 deactivate_task(rq, p, 0);
8642 __setscheduler(rq, p, SCHED_NORMAL, 0);
8643 if (on_rq) {
8644 activate_task(rq, p, 0);
8645 resched_task(rq->curr);
8646 }
8647}
8648
Linus Torvalds1da177e2005-04-16 15:20:36 -07008649void normalize_rt_tasks(void)
8650{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008651 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008652 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008653 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008654
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008655 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008656 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008657 /*
8658 * Only normalize user tasks:
8659 */
8660 if (!p->mm)
8661 continue;
8662
Ingo Molnardd41f592007-07-09 18:51:59 +02008663 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008664#ifdef CONFIG_SCHEDSTATS
8665 p->se.wait_start = 0;
8666 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008667 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008668#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008669
8670 if (!rt_task(p)) {
8671 /*
8672 * Renice negative nice level userspace
8673 * tasks back to 0:
8674 */
8675 if (TASK_NICE(p) < 0 && p->mm)
8676 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008677 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008679
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008680 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008681 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008682
Ingo Molnar178be792007-10-15 17:00:18 +02008683 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008684
Ingo Molnarb29739f2006-06-27 02:54:51 -07008685 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008686 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008687 } while_each_thread(g, p);
8688
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008689 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008690}
8691
8692#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008693
8694#ifdef CONFIG_IA64
8695/*
8696 * These functions are only useful for the IA64 MCA handling.
8697 *
8698 * They can only be called when the whole system has been
8699 * stopped - every CPU needs to be quiescent, and no scheduling
8700 * activity can take place. Using them for anything else would
8701 * be a serious bug, and as a result, they aren't even visible
8702 * under any other configuration.
8703 */
8704
8705/**
8706 * curr_task - return the current task for a given cpu.
8707 * @cpu: the processor in question.
8708 *
8709 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8710 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008711struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008712{
8713 return cpu_curr(cpu);
8714}
8715
8716/**
8717 * set_curr_task - set the current task for a given cpu.
8718 * @cpu: the processor in question.
8719 * @p: the task pointer to set.
8720 *
8721 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008722 * are serviced on a separate stack. It allows the architecture to switch the
8723 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008724 * must be called with all CPU's synchronized, and interrupts disabled, the
8725 * and caller must save the original value of the current task (see
8726 * curr_task() above) and restore that value before reenabling interrupts and
8727 * re-starting the system.
8728 *
8729 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8730 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008731void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008732{
8733 cpu_curr(cpu) = p;
8734}
8735
8736#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008737
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008738#ifdef CONFIG_FAIR_GROUP_SCHED
8739static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008740{
8741 int i;
8742
8743 for_each_possible_cpu(i) {
8744 if (tg->cfs_rq)
8745 kfree(tg->cfs_rq[i]);
8746 if (tg->se)
8747 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008748 }
8749
8750 kfree(tg->cfs_rq);
8751 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008752}
8753
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008754static
8755int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008756{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008757 struct cfs_rq *cfs_rq;
Li Zefaneab17222008-10-29 17:03:22 +08008758 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008759 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008760 int i;
8761
Mike Travis434d53b2008-04-04 18:11:04 -07008762 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008763 if (!tg->cfs_rq)
8764 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008765 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008766 if (!tg->se)
8767 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008768
8769 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008770
8771 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008772 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008773
Li Zefaneab17222008-10-29 17:03:22 +08008774 cfs_rq = kzalloc_node(sizeof(struct cfs_rq),
8775 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008776 if (!cfs_rq)
8777 goto err;
8778
Li Zefaneab17222008-10-29 17:03:22 +08008779 se = kzalloc_node(sizeof(struct sched_entity),
8780 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008781 if (!se)
8782 goto err;
8783
Li Zefaneab17222008-10-29 17:03:22 +08008784 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent->se[i]);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008785 }
8786
8787 return 1;
8788
8789 err:
8790 return 0;
8791}
8792
8793static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8794{
8795 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8796 &cpu_rq(cpu)->leaf_cfs_rq_list);
8797}
8798
8799static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8800{
8801 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8802}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008803#else /* !CONFG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008804static inline void free_fair_sched_group(struct task_group *tg)
8805{
8806}
8807
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008808static inline
8809int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008810{
8811 return 1;
8812}
8813
8814static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8815{
8816}
8817
8818static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8819{
8820}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008821#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008822
8823#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008824static void free_rt_sched_group(struct task_group *tg)
8825{
8826 int i;
8827
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008828 destroy_rt_bandwidth(&tg->rt_bandwidth);
8829
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008830 for_each_possible_cpu(i) {
8831 if (tg->rt_rq)
8832 kfree(tg->rt_rq[i]);
8833 if (tg->rt_se)
8834 kfree(tg->rt_se[i]);
8835 }
8836
8837 kfree(tg->rt_rq);
8838 kfree(tg->rt_se);
8839}
8840
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008841static
8842int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008843{
8844 struct rt_rq *rt_rq;
Li Zefaneab17222008-10-29 17:03:22 +08008845 struct sched_rt_entity *rt_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008846 struct rq *rq;
8847 int i;
8848
Mike Travis434d53b2008-04-04 18:11:04 -07008849 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008850 if (!tg->rt_rq)
8851 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008852 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008853 if (!tg->rt_se)
8854 goto err;
8855
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008856 init_rt_bandwidth(&tg->rt_bandwidth,
8857 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008858
8859 for_each_possible_cpu(i) {
8860 rq = cpu_rq(i);
8861
Li Zefaneab17222008-10-29 17:03:22 +08008862 rt_rq = kzalloc_node(sizeof(struct rt_rq),
8863 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008864 if (!rt_rq)
8865 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008866
Li Zefaneab17222008-10-29 17:03:22 +08008867 rt_se = kzalloc_node(sizeof(struct sched_rt_entity),
8868 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008869 if (!rt_se)
8870 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008871
Li Zefaneab17222008-10-29 17:03:22 +08008872 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent->rt_se[i]);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008873 }
8874
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008875 return 1;
8876
8877 err:
8878 return 0;
8879}
8880
8881static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8882{
8883 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8884 &cpu_rq(cpu)->leaf_rt_rq_list);
8885}
8886
8887static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8888{
8889 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8890}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008891#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008892static inline void free_rt_sched_group(struct task_group *tg)
8893{
8894}
8895
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008896static inline
8897int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008898{
8899 return 1;
8900}
8901
8902static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8903{
8904}
8905
8906static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8907{
8908}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008909#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008910
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008911#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008912static void free_sched_group(struct task_group *tg)
8913{
8914 free_fair_sched_group(tg);
8915 free_rt_sched_group(tg);
8916 kfree(tg);
8917}
8918
8919/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008920struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008921{
8922 struct task_group *tg;
8923 unsigned long flags;
8924 int i;
8925
8926 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8927 if (!tg)
8928 return ERR_PTR(-ENOMEM);
8929
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008930 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008931 goto err;
8932
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008933 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008934 goto err;
8935
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008936 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008937 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008938 register_fair_sched_group(tg, i);
8939 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008940 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008941 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008942
8943 WARN_ON(!parent); /* root should already exist */
8944
8945 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008946 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08008947 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008948 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008949
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008950 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008951
8952err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008953 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008954 return ERR_PTR(-ENOMEM);
8955}
8956
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008957/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008958static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008959{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008960 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008961 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008962}
8963
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008964/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008965void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008966{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008967 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008968 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008969
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008970 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008971 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008972 unregister_fair_sched_group(tg, i);
8973 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008974 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008975 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008976 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008977 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008978
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008979 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008980 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008981}
8982
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008983/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008984 * The caller of this function should have put the task in its new group
8985 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8986 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008987 */
8988void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008989{
8990 int on_rq, running;
8991 unsigned long flags;
8992 struct rq *rq;
8993
8994 rq = task_rq_lock(tsk, &flags);
8995
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008996 update_rq_clock(rq);
8997
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008998 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008999 on_rq = tsk->se.on_rq;
9000
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07009001 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009002 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07009003 if (unlikely(running))
9004 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009005
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009006 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009007
Peter Zijlstra810b3812008-02-29 15:21:01 -05009008#ifdef CONFIG_FAIR_GROUP_SCHED
9009 if (tsk->sched_class->moved_group)
9010 tsk->sched_class->moved_group(tsk);
9011#endif
9012
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07009013 if (unlikely(running))
9014 tsk->sched_class->set_curr_task(rq);
9015 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02009016 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009017
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009018 task_rq_unlock(rq, &flags);
9019}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009020#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009021
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009022#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009023static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009024{
9025 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009026 int on_rq;
9027
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009028 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01009029 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009030 dequeue_entity(cfs_rq, se, 0);
9031
9032 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02009033 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009034
Peter Zijlstra62fb1852008-02-25 17:34:02 +01009035 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009036 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009037}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01009038
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009039static void set_se_shares(struct sched_entity *se, unsigned long shares)
9040{
9041 struct cfs_rq *cfs_rq = se->cfs_rq;
9042 struct rq *rq = cfs_rq->rq;
9043 unsigned long flags;
9044
9045 spin_lock_irqsave(&rq->lock, flags);
9046 __set_se_shares(se, shares);
9047 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009048}
9049
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009050static DEFINE_MUTEX(shares_mutex);
9051
Ingo Molnar4cf86d72007-10-15 17:00:14 +02009052int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009053{
9054 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009055 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01009056
Peter Zijlstra62fb1852008-02-25 17:34:02 +01009057 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009058 * We can't change the weight of the root cgroup.
9059 */
9060 if (!tg->se[0])
9061 return -EINVAL;
9062
Peter Zijlstra18d95a22008-04-19 19:45:00 +02009063 if (shares < MIN_SHARES)
9064 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08009065 else if (shares > MAX_SHARES)
9066 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01009067
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009068 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009069 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02009070 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009071
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009072 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009073 for_each_possible_cpu(i)
9074 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02009075 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009076 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01009077
9078 /* wait for any ongoing reference to this group to finish */
9079 synchronize_sched();
9080
9081 /*
9082 * Now we are free to modify the group's share on each cpu
9083 * w/o tripping rebalance_share or load_balance_fair.
9084 */
9085 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009086 for_each_possible_cpu(i) {
9087 /*
9088 * force a rebalance
9089 */
9090 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08009091 set_se_shares(tg->se[i], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02009092 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01009093
9094 /*
9095 * Enable load balance activity on this group, by inserting it back on
9096 * each cpu's rq->leaf_cfs_rq_list.
9097 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009098 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01009099 for_each_possible_cpu(i)
9100 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02009101 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009102 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02009103done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01009104 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02009105 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02009106}
9107
Dhaval Giani5cb350b2007-10-15 17:00:14 +02009108unsigned long sched_group_shares(struct task_group *tg)
9109{
9110 return tg->shares;
9111}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009112#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02009113
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009114#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009115/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009116 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009117 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009118static DEFINE_MUTEX(rt_constraints_mutex);
9119
9120static unsigned long to_ratio(u64 period, u64 runtime)
9121{
9122 if (runtime == RUNTIME_INF)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009123 return 1ULL << 20;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009124
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009125 return div64_u64(runtime << 20, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009126}
9127
Dhaval Giani521f1a242008-02-28 15:21:56 +05309128/* Must be called with tasklist_lock held */
9129static inline int tg_has_rt_tasks(struct task_group *tg)
9130{
9131 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009132
Dhaval Giani521f1a242008-02-28 15:21:56 +05309133 do_each_thread(g, p) {
9134 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
9135 return 1;
9136 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009137
Dhaval Giani521f1a242008-02-28 15:21:56 +05309138 return 0;
9139}
9140
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009141struct rt_schedulable_data {
9142 struct task_group *tg;
9143 u64 rt_period;
9144 u64 rt_runtime;
9145};
9146
9147static int tg_schedulable(struct task_group *tg, void *data)
9148{
9149 struct rt_schedulable_data *d = data;
9150 struct task_group *child;
9151 unsigned long total, sum = 0;
9152 u64 period, runtime;
9153
9154 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
9155 runtime = tg->rt_bandwidth.rt_runtime;
9156
9157 if (tg == d->tg) {
9158 period = d->rt_period;
9159 runtime = d->rt_runtime;
9160 }
9161
Peter Zijlstra98a48262009-01-14 10:56:32 +01009162#ifdef CONFIG_USER_SCHED
9163 if (tg == &root_task_group) {
9164 period = global_rt_period();
9165 runtime = global_rt_runtime();
9166 }
9167#endif
9168
Peter Zijlstra4653f802008-09-23 15:33:44 +02009169 /*
9170 * Cannot have more runtime than the period.
9171 */
9172 if (runtime > period && runtime != RUNTIME_INF)
9173 return -EINVAL;
9174
9175 /*
9176 * Ensure we don't starve existing RT tasks.
9177 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009178 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
9179 return -EBUSY;
9180
9181 total = to_ratio(period, runtime);
9182
Peter Zijlstra4653f802008-09-23 15:33:44 +02009183 /*
9184 * Nobody can have more than the global setting allows.
9185 */
9186 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
9187 return -EINVAL;
9188
9189 /*
9190 * The sum of our children's runtime should not exceed our own.
9191 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009192 list_for_each_entry_rcu(child, &tg->children, siblings) {
9193 period = ktime_to_ns(child->rt_bandwidth.rt_period);
9194 runtime = child->rt_bandwidth.rt_runtime;
9195
9196 if (child == d->tg) {
9197 period = d->rt_period;
9198 runtime = d->rt_runtime;
9199 }
9200
9201 sum += to_ratio(period, runtime);
9202 }
9203
9204 if (sum > total)
9205 return -EINVAL;
9206
9207 return 0;
9208}
9209
9210static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
9211{
9212 struct rt_schedulable_data data = {
9213 .tg = tg,
9214 .rt_period = period,
9215 .rt_runtime = runtime,
9216 };
9217
9218 return walk_tg_tree(tg_schedulable, tg_nop, &data);
9219}
9220
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009221static int tg_set_bandwidth(struct task_group *tg,
9222 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009223{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009224 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009225
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009226 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05309227 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009228 err = __rt_schedulable(tg, rt_period, rt_runtime);
9229 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05309230 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009231
9232 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009233 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
9234 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009235
9236 for_each_possible_cpu(i) {
9237 struct rt_rq *rt_rq = tg->rt_rq[i];
9238
9239 spin_lock(&rt_rq->rt_runtime_lock);
9240 rt_rq->rt_runtime = rt_runtime;
9241 spin_unlock(&rt_rq->rt_runtime_lock);
9242 }
9243 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009244 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05309245 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009246 mutex_unlock(&rt_constraints_mutex);
9247
9248 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009249}
9250
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009251int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
9252{
9253 u64 rt_runtime, rt_period;
9254
9255 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
9256 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
9257 if (rt_runtime_us < 0)
9258 rt_runtime = RUNTIME_INF;
9259
9260 return tg_set_bandwidth(tg, rt_period, rt_runtime);
9261}
9262
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009263long sched_group_rt_runtime(struct task_group *tg)
9264{
9265 u64 rt_runtime_us;
9266
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009267 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009268 return -1;
9269
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009270 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009271 do_div(rt_runtime_us, NSEC_PER_USEC);
9272 return rt_runtime_us;
9273}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009274
9275int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
9276{
9277 u64 rt_runtime, rt_period;
9278
9279 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
9280 rt_runtime = tg->rt_bandwidth.rt_runtime;
9281
Raistlin619b0482008-06-26 18:54:09 +02009282 if (rt_period == 0)
9283 return -EINVAL;
9284
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009285 return tg_set_bandwidth(tg, rt_period, rt_runtime);
9286}
9287
9288long sched_group_rt_period(struct task_group *tg)
9289{
9290 u64 rt_period_us;
9291
9292 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
9293 do_div(rt_period_us, NSEC_PER_USEC);
9294 return rt_period_us;
9295}
9296
9297static int sched_rt_global_constraints(void)
9298{
Peter Zijlstra4653f802008-09-23 15:33:44 +02009299 u64 runtime, period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009300 int ret = 0;
9301
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07009302 if (sysctl_sched_rt_period <= 0)
9303 return -EINVAL;
9304
Peter Zijlstra4653f802008-09-23 15:33:44 +02009305 runtime = global_rt_runtime();
9306 period = global_rt_period();
9307
9308 /*
9309 * Sanity check on the sysctl variables.
9310 */
9311 if (runtime > period && runtime != RUNTIME_INF)
9312 return -EINVAL;
Peter Zijlstra10b612f2008-06-19 14:22:27 +02009313
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009314 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009315 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02009316 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02009317 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009318 mutex_unlock(&rt_constraints_mutex);
9319
9320 return ret;
9321}
Dhaval Giani54e99122009-02-27 15:13:54 +05309322
9323int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
9324{
9325 /* Don't accept realtime tasks when there is no way for them to run */
9326 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
9327 return 0;
9328
9329 return 1;
9330}
9331
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009332#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009333static int sched_rt_global_constraints(void)
9334{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009335 unsigned long flags;
9336 int i;
9337
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07009338 if (sysctl_sched_rt_period <= 0)
9339 return -EINVAL;
9340
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009341 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
9342 for_each_possible_cpu(i) {
9343 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
9344
9345 spin_lock(&rt_rq->rt_runtime_lock);
9346 rt_rq->rt_runtime = global_rt_runtime();
9347 spin_unlock(&rt_rq->rt_runtime_lock);
9348 }
9349 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
9350
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009351 return 0;
9352}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009353#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009354
9355int sched_rt_handler(struct ctl_table *table, int write,
9356 struct file *filp, void __user *buffer, size_t *lenp,
9357 loff_t *ppos)
9358{
9359 int ret;
9360 int old_period, old_runtime;
9361 static DEFINE_MUTEX(mutex);
9362
9363 mutex_lock(&mutex);
9364 old_period = sysctl_sched_rt_period;
9365 old_runtime = sysctl_sched_rt_runtime;
9366
9367 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
9368
9369 if (!ret && write) {
9370 ret = sched_rt_global_constraints();
9371 if (ret) {
9372 sysctl_sched_rt_period = old_period;
9373 sysctl_sched_rt_runtime = old_runtime;
9374 } else {
9375 def_rt_bandwidth.rt_runtime = global_rt_runtime();
9376 def_rt_bandwidth.rt_period =
9377 ns_to_ktime(global_rt_period());
9378 }
9379 }
9380 mutex_unlock(&mutex);
9381
9382 return ret;
9383}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009384
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009385#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009386
9387/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009388static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009389{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009390 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
9391 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009392}
9393
9394static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02009395cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009396{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009397 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009398
Paul Menage2b01dfe2007-10-24 18:23:50 +02009399 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009400 /* This is early initialization for the top cgroup */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009401 return &init_task_group.css;
9402 }
9403
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009404 parent = cgroup_tg(cgrp->parent);
9405 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009406 if (IS_ERR(tg))
9407 return ERR_PTR(-ENOMEM);
9408
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009409 return &tg->css;
9410}
9411
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009412static void
9413cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009414{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009415 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009416
9417 sched_destroy_group(tg);
9418}
9419
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009420static int
9421cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
9422 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009423{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009424#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Giani54e99122009-02-27 15:13:54 +05309425 if (!sched_rt_can_attach(cgroup_tg(cgrp), tsk))
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009426 return -EINVAL;
9427#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009428 /* We don't support RT-tasks being in separate groups */
9429 if (tsk->sched_class != &fair_sched_class)
9430 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009431#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009432
9433 return 0;
9434}
9435
9436static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02009437cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009438 struct cgroup *old_cont, struct task_struct *tsk)
9439{
9440 sched_move_task(tsk);
9441}
9442
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009443#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07009444static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009445 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009446{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009447 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009448}
9449
Paul Menagef4c753b2008-04-29 00:59:56 -07009450static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009451{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009452 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009453
9454 return (u64) tg->shares;
9455}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009456#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009457
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009458#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07009459static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009460 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009461{
Paul Menage06ecb272008-04-29 01:00:06 -07009462 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009463}
9464
Paul Menage06ecb272008-04-29 01:00:06 -07009465static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009466{
Paul Menage06ecb272008-04-29 01:00:06 -07009467 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009468}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009469
9470static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9471 u64 rt_period_us)
9472{
9473 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9474}
9475
9476static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9477{
9478 return sched_group_rt_period(cgroup_tg(cgrp));
9479}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009480#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009481
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009482static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009483#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009484 {
9485 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009486 .read_u64 = cpu_shares_read_u64,
9487 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009488 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009489#endif
9490#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009491 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009492 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009493 .read_s64 = cpu_rt_runtime_read,
9494 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009495 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009496 {
9497 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009498 .read_u64 = cpu_rt_period_read_uint,
9499 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009500 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009501#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009502};
9503
9504static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9505{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009506 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009507}
9508
9509struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009510 .name = "cpu",
9511 .create = cpu_cgroup_create,
9512 .destroy = cpu_cgroup_destroy,
9513 .can_attach = cpu_cgroup_can_attach,
9514 .attach = cpu_cgroup_attach,
9515 .populate = cpu_cgroup_populate,
9516 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009517 .early_init = 1,
9518};
9519
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009520#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009521
9522#ifdef CONFIG_CGROUP_CPUACCT
9523
9524/*
9525 * CPU accounting code for task groups.
9526 *
9527 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9528 * (balbir@in.ibm.com).
9529 */
9530
Bharata B Rao934352f2008-11-10 20:41:13 +05309531/* track cpu usage of a group of tasks and its child groups */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009532struct cpuacct {
9533 struct cgroup_subsys_state css;
9534 /* cpuusage holds pointer to a u64-type object on every cpu */
9535 u64 *cpuusage;
Bharata B Rao934352f2008-11-10 20:41:13 +05309536 struct cpuacct *parent;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009537};
9538
9539struct cgroup_subsys cpuacct_subsys;
9540
9541/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309542static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009543{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309544 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009545 struct cpuacct, css);
9546}
9547
9548/* return cpu accounting group to which this task belongs */
9549static inline struct cpuacct *task_ca(struct task_struct *tsk)
9550{
9551 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9552 struct cpuacct, css);
9553}
9554
9555/* create a new cpu accounting group */
9556static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309557 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009558{
9559 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9560
9561 if (!ca)
9562 return ERR_PTR(-ENOMEM);
9563
9564 ca->cpuusage = alloc_percpu(u64);
9565 if (!ca->cpuusage) {
9566 kfree(ca);
9567 return ERR_PTR(-ENOMEM);
9568 }
9569
Bharata B Rao934352f2008-11-10 20:41:13 +05309570 if (cgrp->parent)
9571 ca->parent = cgroup_ca(cgrp->parent);
9572
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009573 return &ca->css;
9574}
9575
9576/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009577static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309578cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009579{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309580 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009581
9582 free_percpu(ca->cpuusage);
9583 kfree(ca);
9584}
9585
Ken Chen720f5492008-12-15 22:02:01 -08009586static u64 cpuacct_cpuusage_read(struct cpuacct *ca, int cpu)
9587{
9588 u64 *cpuusage = percpu_ptr(ca->cpuusage, cpu);
9589 u64 data;
9590
9591#ifndef CONFIG_64BIT
9592 /*
9593 * Take rq->lock to make 64-bit read safe on 32-bit platforms.
9594 */
9595 spin_lock_irq(&cpu_rq(cpu)->lock);
9596 data = *cpuusage;
9597 spin_unlock_irq(&cpu_rq(cpu)->lock);
9598#else
9599 data = *cpuusage;
9600#endif
9601
9602 return data;
9603}
9604
9605static void cpuacct_cpuusage_write(struct cpuacct *ca, int cpu, u64 val)
9606{
9607 u64 *cpuusage = percpu_ptr(ca->cpuusage, cpu);
9608
9609#ifndef CONFIG_64BIT
9610 /*
9611 * Take rq->lock to make 64-bit write safe on 32-bit platforms.
9612 */
9613 spin_lock_irq(&cpu_rq(cpu)->lock);
9614 *cpuusage = val;
9615 spin_unlock_irq(&cpu_rq(cpu)->lock);
9616#else
9617 *cpuusage = val;
9618#endif
9619}
9620
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009621/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309622static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009623{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309624 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009625 u64 totalcpuusage = 0;
9626 int i;
9627
Ken Chen720f5492008-12-15 22:02:01 -08009628 for_each_present_cpu(i)
9629 totalcpuusage += cpuacct_cpuusage_read(ca, i);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009630
9631 return totalcpuusage;
9632}
9633
Dhaval Giani0297b802008-02-29 10:02:44 +05309634static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9635 u64 reset)
9636{
9637 struct cpuacct *ca = cgroup_ca(cgrp);
9638 int err = 0;
9639 int i;
9640
9641 if (reset) {
9642 err = -EINVAL;
9643 goto out;
9644 }
9645
Ken Chen720f5492008-12-15 22:02:01 -08009646 for_each_present_cpu(i)
9647 cpuacct_cpuusage_write(ca, i, 0);
Dhaval Giani0297b802008-02-29 10:02:44 +05309648
Dhaval Giani0297b802008-02-29 10:02:44 +05309649out:
9650 return err;
9651}
9652
Ken Chene9515c32008-12-15 22:04:15 -08009653static int cpuacct_percpu_seq_read(struct cgroup *cgroup, struct cftype *cft,
9654 struct seq_file *m)
9655{
9656 struct cpuacct *ca = cgroup_ca(cgroup);
9657 u64 percpu;
9658 int i;
9659
9660 for_each_present_cpu(i) {
9661 percpu = cpuacct_cpuusage_read(ca, i);
9662 seq_printf(m, "%llu ", (unsigned long long) percpu);
9663 }
9664 seq_printf(m, "\n");
9665 return 0;
9666}
9667
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009668static struct cftype files[] = {
9669 {
9670 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009671 .read_u64 = cpuusage_read,
9672 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009673 },
Ken Chene9515c32008-12-15 22:04:15 -08009674 {
9675 .name = "usage_percpu",
9676 .read_seq_string = cpuacct_percpu_seq_read,
9677 },
9678
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009679};
9680
Dhaval Giani32cd7562008-02-29 10:02:43 +05309681static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009682{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309683 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009684}
9685
9686/*
9687 * charge this task's execution time to its accounting group.
9688 *
9689 * called with rq->lock held.
9690 */
9691static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9692{
9693 struct cpuacct *ca;
Bharata B Rao934352f2008-11-10 20:41:13 +05309694 int cpu;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009695
Li Zefanc40c6f82009-02-26 15:40:15 +08009696 if (unlikely(!cpuacct_subsys.active))
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009697 return;
9698
Bharata B Rao934352f2008-11-10 20:41:13 +05309699 cpu = task_cpu(tsk);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009700 ca = task_ca(tsk);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009701
Bharata B Rao934352f2008-11-10 20:41:13 +05309702 for (; ca; ca = ca->parent) {
9703 u64 *cpuusage = percpu_ptr(ca->cpuusage, cpu);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009704 *cpuusage += cputime;
9705 }
9706}
9707
9708struct cgroup_subsys cpuacct_subsys = {
9709 .name = "cpuacct",
9710 .create = cpuacct_create,
9711 .destroy = cpuacct_destroy,
9712 .populate = cpuacct_populate,
9713 .subsys_id = cpuacct_subsys_id,
9714};
9715#endif /* CONFIG_CGROUP_CPUACCT */