blob: 070eefdd90f56cfd8ad31b981d8ffcc57b38d05e [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>
58#include <linux/seq_file.h>
Nick Piggine692ab52007-07-26 13:40:43 +020059#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/syscalls.h>
61#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070062#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080063#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070064#include <linux/delayacct.h>
Eric Dumazet5517d862007-05-08 00:32:57 -070065#include <linux/reciprocal_div.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020066#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020067#include <linux/pagemap.h>
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010068#include <linux/hrtimer.h>
Reynes Philippe30914a52008-03-17 16:19:05 -070069#include <linux/tick.h>
Mike Travis434d53b2008-04-04 18:11:04 -070070#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Eric Dumazet5517d862007-05-08 00:32:57 -070072#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020073#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/*
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080076 * Scheduler clock - returns current time in nanosec units.
77 * This is default implementation.
78 * Architectures and sub-architectures can override this.
79 */
80unsigned long long __attribute__((weak)) sched_clock(void)
81{
Eric Dumazetd6322fa2007-11-09 22:39:38 +010082 return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080083}
84
85/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * Convert user-nice values [ -20 ... 0 ... 19 ]
87 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
88 * and back.
89 */
90#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
91#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
92#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
93
94/*
95 * 'User priority' is the nice value converted to something we
96 * can work with better when scaling various scheduler parameters,
97 * it's a [ 0 ... 39 ] range.
98 */
99#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
100#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
101#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
102
103/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100104 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100106#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200108#define NICE_0_LOAD SCHED_LOAD_SCALE
109#define NICE_0_SHIFT SCHED_LOAD_SHIFT
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
112 * These are the 'tuning knobs' of the scheduler:
113 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200114 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * Timeslices get refilled after they expire.
116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700118
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200119/*
120 * single value that denotes runtime == period, ie unlimited time.
121 */
122#define RUNTIME_INF ((u64)~0ULL)
123
Eric Dumazet5517d862007-05-08 00:32:57 -0700124#ifdef CONFIG_SMP
125/*
126 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
127 * Since cpu_power is a 'constant', we can use a reciprocal divide.
128 */
129static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
130{
131 return reciprocal_divide(load, sg->reciprocal_cpu_power);
132}
133
134/*
135 * Each time a sched group cpu_power is changed,
136 * we must compute its reciprocal value
137 */
138static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
139{
140 sg->__cpu_power += val;
141 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
142}
143#endif
144
Ingo Molnare05606d2007-07-09 18:51:59 +0200145static inline int rt_policy(int policy)
146{
147 if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR))
148 return 1;
149 return 0;
150}
151
152static inline int task_has_rt_policy(struct task_struct *p)
153{
154 return rt_policy(p->policy);
155}
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200158 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200160struct rt_prio_array {
161 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
162 struct list_head queue[MAX_RT_PRIO];
163};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200165struct rt_bandwidth {
166 ktime_t rt_period;
167 u64 rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200168 spinlock_t rt_runtime_lock;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200169 struct hrtimer rt_period_timer;
170};
171
172static struct rt_bandwidth def_rt_bandwidth;
173
174static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
175
176static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
177{
178 struct rt_bandwidth *rt_b =
179 container_of(timer, struct rt_bandwidth, rt_period_timer);
180 ktime_t now;
181 int overrun;
182 int idle = 0;
183
184 for (;;) {
185 now = hrtimer_cb_get_time(timer);
186 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
187
188 if (!overrun)
189 break;
190
191 idle = do_sched_rt_period_timer(rt_b, overrun);
192 }
193
194 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
195}
196
197static
198void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
199{
200 rt_b->rt_period = ns_to_ktime(period);
201 rt_b->rt_runtime = runtime;
202
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200203 spin_lock_init(&rt_b->rt_runtime_lock);
204
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200205 hrtimer_init(&rt_b->rt_period_timer,
206 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
207 rt_b->rt_period_timer.function = sched_rt_period_timer;
208 rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
209}
210
211static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
212{
213 ktime_t now;
214
215 if (rt_b->rt_runtime == RUNTIME_INF)
216 return;
217
218 if (hrtimer_active(&rt_b->rt_period_timer))
219 return;
220
221 spin_lock(&rt_b->rt_runtime_lock);
222 for (;;) {
223 if (hrtimer_active(&rt_b->rt_period_timer))
224 break;
225
226 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
227 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
228 hrtimer_start(&rt_b->rt_period_timer,
229 rt_b->rt_period_timer.expires,
230 HRTIMER_MODE_ABS);
231 }
232 spin_unlock(&rt_b->rt_runtime_lock);
233}
234
235#ifdef CONFIG_RT_GROUP_SCHED
236static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
237{
238 hrtimer_cancel(&rt_b->rt_period_timer);
239}
240#endif
241
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100242#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200243
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700244#include <linux/cgroup.h>
245
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200246struct cfs_rq;
247
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100248static LIST_HEAD(task_groups);
249
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200250/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200251struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100252#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700253 struct cgroup_subsys_state css;
254#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100255
256#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200257 /* schedulable entities of this group on each cpu */
258 struct sched_entity **se;
259 /* runqueue "owned" by this group on each cpu */
260 struct cfs_rq **cfs_rq;
261 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100262#endif
263
264#ifdef CONFIG_RT_GROUP_SCHED
265 struct sched_rt_entity **rt_se;
266 struct rt_rq **rt_rq;
267
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200268 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100269#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100270
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100271 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100272 struct list_head list;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200273};
274
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100275#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200276/* Default task group's sched entity on each cpu */
277static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
278/* Default task group's cfs_rq on each cpu */
279static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100280#endif
281
282#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100283static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
284static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100285#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100286
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100287/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100288 * a task group's cpu shares.
289 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100290static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100291
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100292/* doms_cur_mutex serializes access to doms_cur[] array */
293static DEFINE_MUTEX(doms_cur_mutex);
294
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100295#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100296#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100297# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200298#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100299# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200300#endif
301
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100302static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100303#endif
304
305/* Default task group.
306 * Every task in system belong to this group at bootup.
307 */
Mike Travis434d53b2008-04-04 18:11:04 -0700308struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200309
310/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200311static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200312{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200313 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200314
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100315#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200316 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100317#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700318 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
319 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200320#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100321 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200322#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200323 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200324}
325
326/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100327static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200328{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100329#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100330 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
331 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100332#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100333
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100334#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100335 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
336 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100337#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200338}
339
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100340static inline void lock_doms_cur(void)
341{
342 mutex_lock(&doms_cur_mutex);
343}
344
345static inline void unlock_doms_cur(void)
346{
347 mutex_unlock(&doms_cur_mutex);
348}
349
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200350#else
351
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100352static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100353static inline void lock_doms_cur(void) { }
354static inline void unlock_doms_cur(void) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200355
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100356#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200357
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200358/* CFS-related fields in a runqueue */
359struct cfs_rq {
360 struct load_weight load;
361 unsigned long nr_running;
362
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200363 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200364 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200365
366 struct rb_root tasks_timeline;
367 struct rb_node *rb_leftmost;
368 struct rb_node *rb_load_balance_curr;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200369 /* 'curr' points to currently running entity on this cfs_rq.
370 * It is set to NULL otherwise (i.e when none are currently running).
371 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100372 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200373
374 unsigned long nr_spread_over;
375
Ingo Molnar62160e3f2007-10-15 17:00:03 +0200376#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200377 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
378
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100379 /*
380 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200381 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
382 * (like users, containers etc.)
383 *
384 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
385 * list is used during load balance.
386 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100387 struct list_head leaf_cfs_rq_list;
388 struct task_group *tg; /* group that "owns" this runqueue */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200389#endif
390};
391
392/* Real-Time classes' related field in a runqueue: */
393struct rt_rq {
394 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100395 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100396#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100397 int highest_prio; /* highest queued rt task prio */
398#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100399#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100400 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100401 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100402#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100403 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100404 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200405 u64 rt_runtime;
406 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100407
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100408#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100409 unsigned long rt_nr_boosted;
410
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100411 struct rq *rq;
412 struct list_head leaf_rt_rq_list;
413 struct task_group *tg;
414 struct sched_rt_entity *rt_se;
415#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200416};
417
Gregory Haskins57d885f2008-01-25 21:08:18 +0100418#ifdef CONFIG_SMP
419
420/*
421 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100422 * variables. Each exclusive cpuset essentially defines an island domain by
423 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100424 * exclusive cpuset is created, we also create and attach a new root-domain
425 * object.
426 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100427 */
428struct root_domain {
429 atomic_t refcount;
430 cpumask_t span;
431 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100432
Ingo Molnar0eab9142008-01-25 21:08:19 +0100433 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100434 * The "RT overload" flag: it gets set if a CPU has more than
435 * one runnable RT task.
436 */
437 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100438 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100439};
440
Gregory Haskinsdc938522008-01-25 21:08:26 +0100441/*
442 * By default the system creates a single root-domain with all cpus as
443 * members (mimicking the global state we have today).
444 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100445static struct root_domain def_root_domain;
446
447#endif
448
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200449/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * This is the main, per-CPU runqueue data structure.
451 *
452 * Locking rule: those places that want to lock multiple runqueues
453 * (such as the load balancing or the thread migration code), lock
454 * acquire operations must be ordered by ascending &runqueue.
455 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700456struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200457 /* runqueue lock: */
458 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 /*
461 * nr_running and cpu_load should be in the same cacheline because
462 * remote CPUs use both these fields when doing load calculation.
463 */
464 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200465 #define CPU_LOAD_IDX_MAX 5
466 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700467 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700468#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200469 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700470 unsigned char in_nohz_recently;
471#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200472 /* capture load from *all* tasks on this cpu: */
473 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200474 unsigned long nr_load_updates;
475 u64 nr_switches;
476
477 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100478 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100479
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200480#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200481 /* list of leaf cfs_rq on this cpu: */
482 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100483#endif
484#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100485 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 /*
489 * This is part of a global counter where only the total sum
490 * over all CPUs matters. A task can increase this counter on
491 * one CPU and if it got migrated afterwards it may decrease
492 * it on another CPU. Always updated under the runqueue lock:
493 */
494 unsigned long nr_uninterruptible;
495
Ingo Molnar36c8b582006-07-03 00:25:41 -0700496 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800497 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200499
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200500 u64 clock, prev_clock_raw;
501 s64 clock_max_delta;
502
Guillaume Chazaraincc203d22008-01-25 21:08:34 +0100503 unsigned int clock_warps, clock_overflows, clock_underflows;
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200504 u64 idle_clock;
505 unsigned int clock_deep_idle_events;
Ingo Molnar529c7722007-08-10 23:05:11 +0200506 u64 tick_timestamp;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 atomic_t nr_iowait;
509
510#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100511 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct sched_domain *sd;
513
514 /* For active balancing */
515 int active_balance;
516 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200517 /* cpu of this runqueue: */
518 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Ingo Molnar36c8b582006-07-03 00:25:41 -0700520 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 struct list_head migration_queue;
522#endif
523
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100524#ifdef CONFIG_SCHED_HRTICK
525 unsigned long hrtick_flags;
526 ktime_t hrtick_expire;
527 struct hrtimer hrtick_timer;
528#endif
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530#ifdef CONFIG_SCHEDSTATS
531 /* latency stats */
532 struct sched_info rq_sched_info;
533
534 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200535 unsigned int yld_exp_empty;
536 unsigned int yld_act_empty;
537 unsigned int yld_both_empty;
538 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200541 unsigned int sched_switch;
542 unsigned int sched_count;
543 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200546 unsigned int ttwu_count;
547 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200548
549 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200550 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700552 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553};
554
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700555static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Ingo Molnardd41f592007-07-09 18:51:59 +0200557static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
558{
559 rq->curr->sched_class->check_preempt_curr(rq, p);
560}
561
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700562static inline int cpu_of(struct rq *rq)
563{
564#ifdef CONFIG_SMP
565 return rq->cpu;
566#else
567 return 0;
568#endif
569}
570
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200571#ifdef CONFIG_NO_HZ
572static inline bool nohz_on(int cpu)
573{
574 return tick_get_tick_sched(cpu)->nohz_mode != NOHZ_MODE_INACTIVE;
575}
576
577static inline u64 max_skipped_ticks(struct rq *rq)
578{
579 return nohz_on(cpu_of(rq)) ? jiffies - rq->last_tick_seen + 2 : 1;
580}
581
582static inline void update_last_tick_seen(struct rq *rq)
583{
584 rq->last_tick_seen = jiffies;
585}
586#else
587static inline u64 max_skipped_ticks(struct rq *rq)
588{
589 return 1;
590}
591
592static inline void update_last_tick_seen(struct rq *rq)
593{
594}
595#endif
596
Nick Piggin674311d2005-06-25 14:57:27 -0700597/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200598 * Update the per-runqueue clock, as finegrained as the platform can give
599 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200600 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200601static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200602{
603 u64 prev_raw = rq->prev_clock_raw;
604 u64 now = sched_clock();
605 s64 delta = now - prev_raw;
606 u64 clock = rq->clock;
607
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200608#ifdef CONFIG_SCHED_DEBUG
609 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
610#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200611 /*
612 * Protect against sched_clock() occasionally going backwards:
613 */
614 if (unlikely(delta < 0)) {
615 clock++;
616 rq->clock_warps++;
617 } else {
618 /*
619 * Catch too large forward jumps too:
620 */
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200621 u64 max_jump = max_skipped_ticks(rq) * TICK_NSEC;
622 u64 max_time = rq->tick_timestamp + max_jump;
623
624 if (unlikely(clock + delta > max_time)) {
625 if (clock < max_time)
626 clock = max_time;
Ingo Molnar529c7722007-08-10 23:05:11 +0200627 else
628 clock++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200629 rq->clock_overflows++;
630 } else {
631 if (unlikely(delta > rq->clock_max_delta))
632 rq->clock_max_delta = delta;
633 clock += delta;
634 }
635 }
636
637 rq->prev_clock_raw = now;
638 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200639}
640
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200641static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200642{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200643 if (likely(smp_processor_id() == cpu_of(rq)))
644 __update_rq_clock(rq);
645}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200646
Ingo Molnar20d315d2007-07-09 18:51:58 +0200647/*
Nick Piggin674311d2005-06-25 14:57:27 -0700648 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700649 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700650 *
651 * The domain tree of any CPU may only be accessed from within
652 * preempt-disabled sections.
653 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700654#define for_each_domain(cpu, __sd) \
655 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
658#define this_rq() (&__get_cpu_var(runqueues))
659#define task_rq(p) cpu_rq(task_cpu(p))
660#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
661
Ingo Molnare436d802007-07-19 21:28:35 +0200662/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200663 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
664 */
665#ifdef CONFIG_SCHED_DEBUG
666# define const_debug __read_mostly
667#else
668# define const_debug static const
669#endif
670
671/*
672 * Debugging: various feature bits
673 */
674enum {
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200675 SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
Ingo Molnar96126332007-11-15 20:57:40 +0100676 SCHED_FEAT_WAKEUP_PREEMPT = 2,
677 SCHED_FEAT_START_DEBIT = 4,
Ingo Molnard25ce4c2008-03-17 09:36:53 +0100678 SCHED_FEAT_AFFINE_WAKEUPS = 8,
679 SCHED_FEAT_CACHE_HOT_BUDDY = 16,
Ingo Molnar02e2b832008-03-19 01:37:10 +0100680 SCHED_FEAT_SYNC_WAKEUPS = 32,
681 SCHED_FEAT_HRTICK = 64,
682 SCHED_FEAT_DOUBLE_TICK = 128,
Peter Zijlstra112f53f2008-03-19 11:43:36 +0100683 SCHED_FEAT_NORMALIZED_SLEEPER = 256,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200684};
685
686const_debug unsigned int sysctl_sched_features =
Ingo Molnar8401f772007-10-18 21:32:55 +0200687 SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 |
Ingo Molnar96126332007-11-15 20:57:40 +0100688 SCHED_FEAT_WAKEUP_PREEMPT * 1 |
Ingo Molnar8401f772007-10-18 21:32:55 +0200689 SCHED_FEAT_START_DEBIT * 1 |
Ingo Molnard25ce4c2008-03-17 09:36:53 +0100690 SCHED_FEAT_AFFINE_WAKEUPS * 1 |
691 SCHED_FEAT_CACHE_HOT_BUDDY * 1 |
Ingo Molnar02e2b832008-03-19 01:37:10 +0100692 SCHED_FEAT_SYNC_WAKEUPS * 1 |
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100693 SCHED_FEAT_HRTICK * 1 |
Peter Zijlstra112f53f2008-03-19 11:43:36 +0100694 SCHED_FEAT_DOUBLE_TICK * 0 |
695 SCHED_FEAT_NORMALIZED_SLEEPER * 1;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200696
697#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
698
699/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100700 * Number of tasks to iterate in a single balance run.
701 * Limited because this is done with IRQs disabled.
702 */
703const_debug unsigned int sysctl_sched_nr_migrate = 32;
704
705/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100706 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100707 * default: 1s
708 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100709unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100710
Ingo Molnar6892b752008-02-13 14:02:36 +0100711static __read_mostly int scheduler_running;
712
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100713/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100714 * part of the period that we allow rt tasks to run in us.
715 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100716 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100717int sysctl_sched_rt_runtime = 950000;
718
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200719static inline u64 global_rt_period(void)
720{
721 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
722}
723
724static inline u64 global_rt_runtime(void)
725{
726 if (sysctl_sched_rt_period < 0)
727 return RUNTIME_INF;
728
729 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
730}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100731
Ingo Molnar27ec4402008-02-28 21:00:21 +0100732static const unsigned long long time_sync_thresh = 100000;
733
734static DEFINE_PER_CPU(unsigned long long, time_offset);
735static DEFINE_PER_CPU(unsigned long long, prev_cpu_time);
736
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100737/*
Ingo Molnar27ec4402008-02-28 21:00:21 +0100738 * Global lock which we take every now and then to synchronize
739 * the CPUs time. This method is not warp-safe, but it's good
740 * enough to synchronize slowly diverging time sources and thus
741 * it's good enough for tracing:
Ingo Molnare436d802007-07-19 21:28:35 +0200742 */
Ingo Molnar27ec4402008-02-28 21:00:21 +0100743static DEFINE_SPINLOCK(time_sync_lock);
744static unsigned long long prev_global_time;
745
746static unsigned long long __sync_cpu_clock(cycles_t time, int cpu)
747{
748 unsigned long flags;
749
750 spin_lock_irqsave(&time_sync_lock, flags);
751
752 if (time < prev_global_time) {
753 per_cpu(time_offset, cpu) += prev_global_time - time;
754 time = prev_global_time;
755 } else {
756 prev_global_time = time;
757 }
758
759 spin_unlock_irqrestore(&time_sync_lock, flags);
760
761 return time;
762}
763
764static unsigned long long __cpu_clock(int cpu)
Ingo Molnare436d802007-07-19 21:28:35 +0200765{
Ingo Molnare436d802007-07-19 21:28:35 +0200766 unsigned long long now;
767 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200768 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200769
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100770 /*
771 * Only call sched_clock() if the scheduler has already been
772 * initialized (some code might call cpu_clock() very early):
773 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100774 if (unlikely(!scheduler_running))
775 return 0;
776
777 local_irq_save(flags);
778 rq = cpu_rq(cpu);
779 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200780 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200781 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200782
783 return now;
784}
Ingo Molnar27ec4402008-02-28 21:00:21 +0100785
786/*
787 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
788 * clock constructed from sched_clock():
789 */
790unsigned long long cpu_clock(int cpu)
791{
792 unsigned long long prev_cpu_time, time, delta_time;
793
794 prev_cpu_time = per_cpu(prev_cpu_time, cpu);
795 time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
796 delta_time = time-prev_cpu_time;
797
798 if (unlikely(delta_time > time_sync_thresh))
799 time = __sync_cpu_clock(time, cpu);
800
801 return time;
802}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200803EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700806# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700808#ifndef finish_arch_switch
809# define finish_arch_switch(prev) do { } while (0)
810#endif
811
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100812static inline int task_current(struct rq *rq, struct task_struct *p)
813{
814 return rq->curr == p;
815}
816
Nick Piggin4866cde2005-06-25 14:57:23 -0700817#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700818static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700819{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100820 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700821}
822
Ingo Molnar70b97a72006-07-03 00:25:42 -0700823static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700824{
825}
826
Ingo Molnar70b97a72006-07-03 00:25:42 -0700827static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700828{
Ingo Molnarda04c032005-09-13 11:17:59 +0200829#ifdef CONFIG_DEBUG_SPINLOCK
830 /* this is a valid case when another task releases the spinlock */
831 rq->lock.owner = current;
832#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700833 /*
834 * If we are tracking spinlock dependencies then we have to
835 * fix up the runqueue lock - which gets 'carried over' from
836 * prev into current:
837 */
838 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
839
Nick Piggin4866cde2005-06-25 14:57:23 -0700840 spin_unlock_irq(&rq->lock);
841}
842
843#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700844static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700845{
846#ifdef CONFIG_SMP
847 return p->oncpu;
848#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100849 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700850#endif
851}
852
Ingo Molnar70b97a72006-07-03 00:25:42 -0700853static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700854{
855#ifdef CONFIG_SMP
856 /*
857 * We can optimise this out completely for !SMP, because the
858 * SMP rebalancing from interrupt is the only thing that cares
859 * here.
860 */
861 next->oncpu = 1;
862#endif
863#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
864 spin_unlock_irq(&rq->lock);
865#else
866 spin_unlock(&rq->lock);
867#endif
868}
869
Ingo Molnar70b97a72006-07-03 00:25:42 -0700870static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700871{
872#ifdef CONFIG_SMP
873 /*
874 * After ->oncpu is cleared, the task can be moved to a different CPU.
875 * We must ensure this doesn't happen until the switch is completely
876 * finished.
877 */
878 smp_wmb();
879 prev->oncpu = 0;
880#endif
881#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
882 local_irq_enable();
883#endif
884}
885#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700888 * __task_rq_lock - lock the runqueue a given task resides on.
889 * Must be called interrupts disabled.
890 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700891static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700892 __acquires(rq->lock)
893{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200894 for (;;) {
895 struct rq *rq = task_rq(p);
896 spin_lock(&rq->lock);
897 if (likely(rq == task_rq(p)))
898 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700899 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700900 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700901}
902
903/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100905 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 * explicitly disabling preemption.
907 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700908static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 __acquires(rq->lock)
910{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700911 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Andi Kleen3a5c3592007-10-15 17:00:14 +0200913 for (;;) {
914 local_irq_save(*flags);
915 rq = task_rq(p);
916 spin_lock(&rq->lock);
917 if (likely(rq == task_rq(p)))
918 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
Alexey Dobriyana9957442007-10-15 17:00:13 +0200923static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700924 __releases(rq->lock)
925{
926 spin_unlock(&rq->lock);
927}
928
Ingo Molnar70b97a72006-07-03 00:25:42 -0700929static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 __releases(rq->lock)
931{
932 spin_unlock_irqrestore(&rq->lock, *flags);
933}
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800936 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200938static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 __acquires(rq->lock)
940{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700941 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 local_irq_disable();
944 rq = this_rq();
945 spin_lock(&rq->lock);
946
947 return rq;
948}
949
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200950/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200951 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200952 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200953void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200954{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200955 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200956
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200957 spin_lock(&rq->lock);
958 __update_rq_clock(rq);
959 spin_unlock(&rq->lock);
960 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200961}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200962EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
963
964/*
965 * We just idled delta nanoseconds (called with irqs disabled):
966 */
967void sched_clock_idle_wakeup_event(u64 delta_ns)
968{
969 struct rq *rq = cpu_rq(smp_processor_id());
970 u64 now = sched_clock();
971
972 rq->idle_clock += delta_ns;
973 /*
974 * Override the previous timestamp and ignore all
975 * sched_clock() deltas that occured while we idled,
976 * and use the PM-provided delta_ns to advance the
977 * rq clock:
978 */
979 spin_lock(&rq->lock);
980 rq->prev_clock_raw = now;
981 rq->clock += delta_ns;
982 spin_unlock(&rq->lock);
Guillaume Chazarain782daee2008-01-25 21:08:33 +0100983 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200984}
985EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200986
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100987static void __resched_task(struct task_struct *p, int tif_bit);
988
989static inline void resched_task(struct task_struct *p)
990{
991 __resched_task(p, TIF_NEED_RESCHED);
992}
993
994#ifdef CONFIG_SCHED_HRTICK
995/*
996 * Use HR-timers to deliver accurate preemption points.
997 *
998 * Its all a bit involved since we cannot program an hrt while holding the
999 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1000 * reschedule event.
1001 *
1002 * When we get rescheduled we reprogram the hrtick_timer outside of the
1003 * rq->lock.
1004 */
1005static inline void resched_hrt(struct task_struct *p)
1006{
1007 __resched_task(p, TIF_HRTICK_RESCHED);
1008}
1009
1010static inline void resched_rq(struct rq *rq)
1011{
1012 unsigned long flags;
1013
1014 spin_lock_irqsave(&rq->lock, flags);
1015 resched_task(rq->curr);
1016 spin_unlock_irqrestore(&rq->lock, flags);
1017}
1018
1019enum {
1020 HRTICK_SET, /* re-programm hrtick_timer */
1021 HRTICK_RESET, /* not a new slice */
1022};
1023
1024/*
1025 * Use hrtick when:
1026 * - enabled by features
1027 * - hrtimer is actually high res
1028 */
1029static inline int hrtick_enabled(struct rq *rq)
1030{
1031 if (!sched_feat(HRTICK))
1032 return 0;
1033 return hrtimer_is_hres_active(&rq->hrtick_timer);
1034}
1035
1036/*
1037 * Called to set the hrtick timer state.
1038 *
1039 * called with rq->lock held and irqs disabled
1040 */
1041static void hrtick_start(struct rq *rq, u64 delay, int reset)
1042{
1043 assert_spin_locked(&rq->lock);
1044
1045 /*
1046 * preempt at: now + delay
1047 */
1048 rq->hrtick_expire =
1049 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
1050 /*
1051 * indicate we need to program the timer
1052 */
1053 __set_bit(HRTICK_SET, &rq->hrtick_flags);
1054 if (reset)
1055 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
1056
1057 /*
1058 * New slices are called from the schedule path and don't need a
1059 * forced reschedule.
1060 */
1061 if (reset)
1062 resched_hrt(rq->curr);
1063}
1064
1065static void hrtick_clear(struct rq *rq)
1066{
1067 if (hrtimer_active(&rq->hrtick_timer))
1068 hrtimer_cancel(&rq->hrtick_timer);
1069}
1070
1071/*
1072 * Update the timer from the possible pending state.
1073 */
1074static void hrtick_set(struct rq *rq)
1075{
1076 ktime_t time;
1077 int set, reset;
1078 unsigned long flags;
1079
1080 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1081
1082 spin_lock_irqsave(&rq->lock, flags);
1083 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1084 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1085 time = rq->hrtick_expire;
1086 clear_thread_flag(TIF_HRTICK_RESCHED);
1087 spin_unlock_irqrestore(&rq->lock, flags);
1088
1089 if (set) {
1090 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1091 if (reset && !hrtimer_active(&rq->hrtick_timer))
1092 resched_rq(rq);
1093 } else
1094 hrtick_clear(rq);
1095}
1096
1097/*
1098 * High-resolution timer tick.
1099 * Runs from hardirq context with interrupts disabled.
1100 */
1101static enum hrtimer_restart hrtick(struct hrtimer *timer)
1102{
1103 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1104
1105 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1106
1107 spin_lock(&rq->lock);
1108 __update_rq_clock(rq);
1109 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1110 spin_unlock(&rq->lock);
1111
1112 return HRTIMER_NORESTART;
1113}
1114
1115static inline void init_rq_hrtick(struct rq *rq)
1116{
1117 rq->hrtick_flags = 0;
1118 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1119 rq->hrtick_timer.function = hrtick;
1120 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1121}
1122
1123void hrtick_resched(void)
1124{
1125 struct rq *rq;
1126 unsigned long flags;
1127
1128 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1129 return;
1130
1131 local_irq_save(flags);
1132 rq = cpu_rq(smp_processor_id());
1133 hrtick_set(rq);
1134 local_irq_restore(flags);
1135}
1136#else
1137static inline void hrtick_clear(struct rq *rq)
1138{
1139}
1140
1141static inline void hrtick_set(struct rq *rq)
1142{
1143}
1144
1145static inline void init_rq_hrtick(struct rq *rq)
1146{
1147}
1148
1149void hrtick_resched(void)
1150{
1151}
1152#endif
1153
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001154/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001155 * resched_task - mark a task 'to be rescheduled now'.
1156 *
1157 * On UP this means the setting of the need_resched flag, on SMP it
1158 * might also involve a cross-CPU call to trigger the scheduler on
1159 * the target CPU.
1160 */
1161#ifdef CONFIG_SMP
1162
1163#ifndef tsk_is_polling
1164#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1165#endif
1166
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001167static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001168{
1169 int cpu;
1170
1171 assert_spin_locked(&task_rq(p)->lock);
1172
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001173 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001174 return;
1175
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001176 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001177
1178 cpu = task_cpu(p);
1179 if (cpu == smp_processor_id())
1180 return;
1181
1182 /* NEED_RESCHED must be visible before we test polling */
1183 smp_mb();
1184 if (!tsk_is_polling(p))
1185 smp_send_reschedule(cpu);
1186}
1187
1188static void resched_cpu(int cpu)
1189{
1190 struct rq *rq = cpu_rq(cpu);
1191 unsigned long flags;
1192
1193 if (!spin_trylock_irqsave(&rq->lock, flags))
1194 return;
1195 resched_task(cpu_curr(cpu));
1196 spin_unlock_irqrestore(&rq->lock, flags);
1197}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001198
1199#ifdef CONFIG_NO_HZ
1200/*
1201 * When add_timer_on() enqueues a timer into the timer wheel of an
1202 * idle CPU then this timer might expire before the next timer event
1203 * which is scheduled to wake up that CPU. In case of a completely
1204 * idle system the next event might even be infinite time into the
1205 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1206 * leaves the inner idle loop so the newly added timer is taken into
1207 * account when the CPU goes back to idle and evaluates the timer
1208 * wheel for the next timer event.
1209 */
1210void wake_up_idle_cpu(int cpu)
1211{
1212 struct rq *rq = cpu_rq(cpu);
1213
1214 if (cpu == smp_processor_id())
1215 return;
1216
1217 /*
1218 * This is safe, as this function is called with the timer
1219 * wheel base lock of (cpu) held. When the CPU is on the way
1220 * to idle and has not yet set rq->curr to idle then it will
1221 * be serialized on the timer wheel base lock and take the new
1222 * timer into account automatically.
1223 */
1224 if (rq->curr != rq->idle)
1225 return;
1226
1227 /*
1228 * We can set TIF_RESCHED on the idle task of the other CPU
1229 * lockless. The worst case is that the other CPU runs the
1230 * idle task through an additional NOOP schedule()
1231 */
1232 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1233
1234 /* NEED_RESCHED must be visible before we test polling */
1235 smp_mb();
1236 if (!tsk_is_polling(rq->idle))
1237 smp_send_reschedule(cpu);
1238}
1239#endif
1240
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001241#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001242static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001243{
1244 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001245 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001246}
1247#endif
1248
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001249#if BITS_PER_LONG == 32
1250# define WMULT_CONST (~0UL)
1251#else
1252# define WMULT_CONST (1UL << 32)
1253#endif
1254
1255#define WMULT_SHIFT 32
1256
Ingo Molnar194081e2007-08-09 11:16:51 +02001257/*
1258 * Shift right and round:
1259 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001260#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001261
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001262static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001263calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1264 struct load_weight *lw)
1265{
1266 u64 tmp;
1267
1268 if (unlikely(!lw->inv_weight))
Ingo Molnar27d11722008-03-14 22:20:01 +01001269 lw->inv_weight = (WMULT_CONST-lw->weight/2) / (lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001270
1271 tmp = (u64)delta_exec * weight;
1272 /*
1273 * Check whether we'd overflow the 64-bit multiplication:
1274 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001275 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001276 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001277 WMULT_SHIFT/2);
1278 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001279 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001280
Ingo Molnarecf691d2007-08-02 17:41:40 +02001281 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001282}
1283
1284static inline unsigned long
1285calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
1286{
1287 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
1288}
1289
Ingo Molnar10919852007-10-15 17:00:04 +02001290static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001291{
1292 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001293 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001294}
1295
Ingo Molnar10919852007-10-15 17:00:04 +02001296static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001297{
1298 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001299 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001300}
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001303 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1304 * of tasks with abnormal "nice" values across CPUs the contribution that
1305 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001306 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001307 * scaled version of the new time slice allocation that they receive on time
1308 * slice expiry etc.
1309 */
1310
Ingo Molnardd41f592007-07-09 18:51:59 +02001311#define WEIGHT_IDLEPRIO 2
1312#define WMULT_IDLEPRIO (1 << 31)
1313
1314/*
1315 * Nice levels are multiplicative, with a gentle 10% change for every
1316 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1317 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1318 * that remained on nice 0.
1319 *
1320 * The "10% effect" is relative and cumulative: from _any_ nice level,
1321 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001322 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1323 * If a task goes up by ~10% and another task goes down by ~10% then
1324 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001325 */
1326static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001327 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1328 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1329 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1330 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1331 /* 0 */ 1024, 820, 655, 526, 423,
1332 /* 5 */ 335, 272, 215, 172, 137,
1333 /* 10 */ 110, 87, 70, 56, 45,
1334 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001335};
1336
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001337/*
1338 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1339 *
1340 * In cases where the weight does not change often, we can use the
1341 * precalculated inverse to speed up arithmetics by turning divisions
1342 * into multiplications:
1343 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001344static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001345 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1346 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1347 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1348 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1349 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1350 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1351 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1352 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001353};
Peter Williams2dd73a42006-06-27 02:54:34 -07001354
Ingo Molnardd41f592007-07-09 18:51:59 +02001355static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1356
1357/*
1358 * runqueue iterator, to support SMP load-balancing between different
1359 * scheduling classes, without having to expose their internal data
1360 * structures to the load-balancing proper:
1361 */
1362struct rq_iterator {
1363 void *arg;
1364 struct task_struct *(*start)(void *);
1365 struct task_struct *(*next)(void *);
1366};
1367
Peter Williamse1d14842007-10-24 18:23:51 +02001368#ifdef CONFIG_SMP
1369static unsigned long
1370balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1371 unsigned long max_load_move, struct sched_domain *sd,
1372 enum cpu_idle_type idle, int *all_pinned,
1373 int *this_best_prio, struct rq_iterator *iterator);
1374
1375static int
1376iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1377 struct sched_domain *sd, enum cpu_idle_type idle,
1378 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001379#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001380
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001381#ifdef CONFIG_CGROUP_CPUACCT
1382static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1383#else
1384static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1385#endif
1386
Gregory Haskinse7693a32008-01-25 21:08:09 +01001387#ifdef CONFIG_SMP
1388static unsigned long source_load(int cpu, int type);
1389static unsigned long target_load(int cpu, int type);
1390static unsigned long cpu_avg_load_per_task(int cpu);
1391static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
1392#endif /* CONFIG_SMP */
1393
Ingo Molnardd41f592007-07-09 18:51:59 +02001394#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001395#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001396#include "sched_fair.c"
1397#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001398#ifdef CONFIG_SCHED_DEBUG
1399# include "sched_debug.c"
1400#endif
1401
1402#define sched_class_highest (&rt_sched_class)
1403
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001404static inline void inc_load(struct rq *rq, const struct task_struct *p)
Ingo Molnar9c217242007-08-02 17:41:40 +02001405{
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001406 update_load_add(&rq->load, p->se.load.weight);
Ingo Molnar9c217242007-08-02 17:41:40 +02001407}
1408
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001409static inline void dec_load(struct rq *rq, const struct task_struct *p)
1410{
1411 update_load_sub(&rq->load, p->se.load.weight);
1412}
1413
1414static void inc_nr_running(struct task_struct *p, struct rq *rq)
1415{
1416 rq->nr_running++;
1417 inc_load(rq, p);
1418}
1419
1420static void dec_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001421{
1422 rq->nr_running--;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001423 dec_load(rq, p);
Ingo Molnar9c217242007-08-02 17:41:40 +02001424}
1425
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001426static void set_load_weight(struct task_struct *p)
1427{
1428 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001429 p->se.load.weight = prio_to_weight[0] * 2;
1430 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1431 return;
1432 }
1433
1434 /*
1435 * SCHED_IDLE tasks get minimal weight:
1436 */
1437 if (p->policy == SCHED_IDLE) {
1438 p->se.load.weight = WEIGHT_IDLEPRIO;
1439 p->se.load.inv_weight = WMULT_IDLEPRIO;
1440 return;
1441 }
1442
1443 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1444 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001445}
1446
Ingo Molnar8159f872007-08-09 11:16:49 +02001447static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001448{
1449 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001450 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001451 p->se.on_rq = 1;
1452}
1453
Ingo Molnar69be72c2007-08-09 11:16:49 +02001454static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001455{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001456 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001457 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001458}
1459
1460/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001461 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001462 */
Ingo Molnar14531182007-07-09 18:51:59 +02001463static inline int __normal_prio(struct task_struct *p)
1464{
Ingo Molnardd41f592007-07-09 18:51:59 +02001465 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001466}
1467
1468/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001469 * Calculate the expected normal priority: i.e. priority
1470 * without taking RT-inheritance into account. Might be
1471 * boosted by interactivity modifiers. Changes upon fork,
1472 * setprio syscalls, and whenever the interactivity
1473 * estimator recalculates.
1474 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001475static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001476{
1477 int prio;
1478
Ingo Molnare05606d2007-07-09 18:51:59 +02001479 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001480 prio = MAX_RT_PRIO-1 - p->rt_priority;
1481 else
1482 prio = __normal_prio(p);
1483 return prio;
1484}
1485
1486/*
1487 * Calculate the current priority, i.e. the priority
1488 * taken into account by the scheduler. This value might
1489 * be boosted by RT tasks, or might be boosted by
1490 * interactivity modifiers. Will be RT if the task got
1491 * RT-boosted. If not then it returns p->normal_prio.
1492 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001493static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001494{
1495 p->normal_prio = normal_prio(p);
1496 /*
1497 * If we are RT tasks or we were boosted to RT priority,
1498 * keep the priority unchanged. Otherwise, update priority
1499 * to the normal priority:
1500 */
1501 if (!rt_prio(p->prio))
1502 return p->normal_prio;
1503 return p->prio;
1504}
1505
1506/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001507 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001509static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001511 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001512 rq->nr_uninterruptible--;
1513
Ingo Molnar8159f872007-08-09 11:16:49 +02001514 enqueue_task(rq, p, wakeup);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001515 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
1518/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 * deactivate_task - remove a task from the runqueue.
1520 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001521static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001523 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001524 rq->nr_uninterruptible++;
1525
Ingo Molnar69be72c2007-08-09 11:16:49 +02001526 dequeue_task(rq, p, sleep);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001527 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528}
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530/**
1531 * task_curr - is this task currently executing on a CPU?
1532 * @p: the task in question.
1533 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001534inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
1536 return cpu_curr(task_cpu(p)) == p;
1537}
1538
Peter Williams2dd73a42006-06-27 02:54:34 -07001539/* Used instead of source_load when we know the type == 0 */
1540unsigned long weighted_cpuload(const int cpu)
1541{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001542 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001543}
1544
1545static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1546{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001547 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001548#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001549 /*
1550 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1551 * successfuly executed on another CPU. We must ensure that updates of
1552 * per-task data have been completed by this moment.
1553 */
1554 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001555 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001556#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001557}
1558
Steven Rostedtcb469842008-01-25 21:08:22 +01001559static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1560 const struct sched_class *prev_class,
1561 int oldprio, int running)
1562{
1563 if (prev_class != p->sched_class) {
1564 if (prev_class->switched_from)
1565 prev_class->switched_from(rq, p, running);
1566 p->sched_class->switched_to(rq, p, running);
1567 } else
1568 p->sched_class->prio_changed(rq, p, oldprio, running);
1569}
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001572
Ingo Molnarcc367732007-10-15 17:00:18 +02001573/*
1574 * Is this task likely cache-hot:
1575 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001576static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001577task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1578{
1579 s64 delta;
1580
Ingo Molnarf540a602008-03-15 17:10:34 +01001581 /*
1582 * Buddy candidates are cache hot:
1583 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01001584 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01001585 return 1;
1586
Ingo Molnarcc367732007-10-15 17:00:18 +02001587 if (p->sched_class != &fair_sched_class)
1588 return 0;
1589
Ingo Molnar6bc16652007-10-15 17:00:18 +02001590 if (sysctl_sched_migration_cost == -1)
1591 return 1;
1592 if (sysctl_sched_migration_cost == 0)
1593 return 0;
1594
Ingo Molnarcc367732007-10-15 17:00:18 +02001595 delta = now - p->se.exec_start;
1596
1597 return delta < (s64)sysctl_sched_migration_cost;
1598}
1599
1600
Ingo Molnardd41f592007-07-09 18:51:59 +02001601void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001602{
Ingo Molnardd41f592007-07-09 18:51:59 +02001603 int old_cpu = task_cpu(p);
1604 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001605 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1606 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001607 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001608
1609 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001610
1611#ifdef CONFIG_SCHEDSTATS
1612 if (p->se.wait_start)
1613 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001614 if (p->se.sleep_start)
1615 p->se.sleep_start -= clock_offset;
1616 if (p->se.block_start)
1617 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001618 if (old_cpu != new_cpu) {
1619 schedstat_inc(p, se.nr_migrations);
1620 if (task_hot(p, old_rq->clock, NULL))
1621 schedstat_inc(p, se.nr_forced2_migrations);
1622 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001623#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001624 p->se.vruntime -= old_cfsrq->min_vruntime -
1625 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001626
1627 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001628}
1629
Ingo Molnar70b97a72006-07-03 00:25:42 -07001630struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Ingo Molnar36c8b582006-07-03 00:25:41 -07001633 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 int dest_cpu;
1635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001637};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639/*
1640 * The task's runqueue lock must be held.
1641 * Returns true if you have to wait for migration thread.
1642 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001643static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001644migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001646 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 /*
1649 * If the task is not on a runqueue (and not running), then
1650 * it is sufficient to simply update the task's cpu field.
1651 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001652 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 set_task_cpu(p, dest_cpu);
1654 return 0;
1655 }
1656
1657 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 req->task = p;
1659 req->dest_cpu = dest_cpu;
1660 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 return 1;
1663}
1664
1665/*
1666 * wait_task_inactive - wait for a thread to unschedule.
1667 *
1668 * The caller must ensure that the task *will* unschedule sometime soon,
1669 * else this function might spin for a *long* time. This function can't
1670 * be called with interrupts off, or it may introduce deadlock with
1671 * smp_call_function() if an IPI is sent by the same process we are
1672 * waiting to become inactive.
1673 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001674void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
1676 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001677 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001678 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Andi Kleen3a5c3592007-10-15 17:00:14 +02001680 for (;;) {
1681 /*
1682 * We do the initial early heuristics without holding
1683 * any task-queue locks at all. We'll only try to get
1684 * the runqueue lock when things look like they will
1685 * work out!
1686 */
1687 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001688
Andi Kleen3a5c3592007-10-15 17:00:14 +02001689 /*
1690 * If the task is actively running on another CPU
1691 * still, just relax and busy-wait without holding
1692 * any locks.
1693 *
1694 * NOTE! Since we don't hold any locks, it's not
1695 * even sure that "rq" stays as the right runqueue!
1696 * But we don't care, since "task_running()" will
1697 * return false if the runqueue has changed and p
1698 * is actually now running somewhere else!
1699 */
1700 while (task_running(rq, p))
1701 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001702
Andi Kleen3a5c3592007-10-15 17:00:14 +02001703 /*
1704 * Ok, time to look more closely! We need the rq
1705 * lock now, to be *sure*. If we're wrong, we'll
1706 * just go back and repeat.
1707 */
1708 rq = task_rq_lock(p, &flags);
1709 running = task_running(rq, p);
1710 on_rq = p->se.on_rq;
1711 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001712
Andi Kleen3a5c3592007-10-15 17:00:14 +02001713 /*
1714 * Was it really running after all now that we
1715 * checked with the proper locks actually held?
1716 *
1717 * Oops. Go back and try again..
1718 */
1719 if (unlikely(running)) {
1720 cpu_relax();
1721 continue;
1722 }
1723
1724 /*
1725 * It's not enough that it's not actively running,
1726 * it must be off the runqueue _entirely_, and not
1727 * preempted!
1728 *
1729 * So if it wa still runnable (but just not actively
1730 * running right now), it's preempted, and we should
1731 * yield - it could be a while.
1732 */
1733 if (unlikely(on_rq)) {
1734 schedule_timeout_uninterruptible(1);
1735 continue;
1736 }
1737
1738 /*
1739 * Ahh, all good. It wasn't running, and it wasn't
1740 * runnable, which means that it will never become
1741 * running in the future either. We're all done!
1742 */
1743 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745}
1746
1747/***
1748 * kick_process - kick a running thread to enter/exit the kernel
1749 * @p: the to-be-kicked thread
1750 *
1751 * Cause a process which is running on another CPU to enter
1752 * kernel-mode, without any delay. (to get signals handled.)
1753 *
1754 * NOTE: this function doesnt have to take the runqueue lock,
1755 * because all it wants to ensure is that the remote task enters
1756 * the kernel. If the IPI races and the task has been migrated
1757 * to another CPU then no harm is done and the purpose has been
1758 * achieved as well.
1759 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001760void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761{
1762 int cpu;
1763
1764 preempt_disable();
1765 cpu = task_cpu(p);
1766 if ((cpu != smp_processor_id()) && task_curr(p))
1767 smp_send_reschedule(cpu);
1768 preempt_enable();
1769}
1770
1771/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001772 * Return a low guess at the load of a migration-source cpu weighted
1773 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 *
1775 * We want to under-estimate the load of migration sources, to
1776 * balance conservatively.
1777 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001778static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001779{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001780 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001781 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001782
Peter Williams2dd73a42006-06-27 02:54:34 -07001783 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001784 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001785
Ingo Molnardd41f592007-07-09 18:51:59 +02001786 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788
1789/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001790 * Return a high guess at the load of a migration-target cpu weighted
1791 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001793static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001794{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001795 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001796 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001797
Peter Williams2dd73a42006-06-27 02:54:34 -07001798 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001799 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001800
Ingo Molnardd41f592007-07-09 18:51:59 +02001801 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001802}
1803
1804/*
1805 * Return the average load per task on the cpu's run queue
1806 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001807static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07001808{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001809 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001810 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001811 unsigned long n = rq->nr_running;
1812
Ingo Molnardd41f592007-07-09 18:51:59 +02001813 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814}
1815
Nick Piggin147cbb42005-06-25 14:57:19 -07001816/*
1817 * find_idlest_group finds and returns the least busy CPU group within the
1818 * domain.
1819 */
1820static struct sched_group *
1821find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1822{
1823 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1824 unsigned long min_load = ULONG_MAX, this_load = 0;
1825 int load_idx = sd->forkexec_idx;
1826 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1827
1828 do {
1829 unsigned long load, avg_load;
1830 int local_group;
1831 int i;
1832
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001833 /* Skip over this group if it has no CPUs allowed */
1834 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001835 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001836
Nick Piggin147cbb42005-06-25 14:57:19 -07001837 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001838
1839 /* Tally up the load of all CPUs in the group */
1840 avg_load = 0;
1841
1842 for_each_cpu_mask(i, group->cpumask) {
1843 /* Bias balancing toward cpus of our domain */
1844 if (local_group)
1845 load = source_load(i, load_idx);
1846 else
1847 load = target_load(i, load_idx);
1848
1849 avg_load += load;
1850 }
1851
1852 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001853 avg_load = sg_div_cpu_power(group,
1854 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001855
1856 if (local_group) {
1857 this_load = avg_load;
1858 this = group;
1859 } else if (avg_load < min_load) {
1860 min_load = avg_load;
1861 idlest = group;
1862 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001863 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001864
1865 if (!idlest || 100*this_load < imbalance*min_load)
1866 return NULL;
1867 return idlest;
1868}
1869
1870/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001871 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001872 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001873static int
Mike Travis7c16ec52008-04-04 18:11:11 -07001874find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
1875 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07001876{
1877 unsigned long load, min_load = ULONG_MAX;
1878 int idlest = -1;
1879 int i;
1880
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001881 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07001882 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001883
Mike Travis7c16ec52008-04-04 18:11:11 -07001884 for_each_cpu_mask(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001885 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001886
1887 if (load < min_load || (load == min_load && i == this_cpu)) {
1888 min_load = load;
1889 idlest = i;
1890 }
1891 }
1892
1893 return idlest;
1894}
1895
Nick Piggin476d1392005-06-25 14:57:29 -07001896/*
1897 * sched_balance_self: balance the current task (running on cpu) in domains
1898 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1899 * SD_BALANCE_EXEC.
1900 *
1901 * Balance, ie. select the least loaded group.
1902 *
1903 * Returns the target CPU number, or the same CPU if no balancing is needed.
1904 *
1905 * preempt must be disabled.
1906 */
1907static int sched_balance_self(int cpu, int flag)
1908{
1909 struct task_struct *t = current;
1910 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001911
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001912 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001913 /*
1914 * If power savings logic is enabled for a domain, stop there.
1915 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001916 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1917 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001918 if (tmp->flags & flag)
1919 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001920 }
Nick Piggin476d1392005-06-25 14:57:29 -07001921
1922 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07001923 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07001924 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001925 int new_cpu, weight;
1926
1927 if (!(sd->flags & flag)) {
1928 sd = sd->child;
1929 continue;
1930 }
Nick Piggin476d1392005-06-25 14:57:29 -07001931
1932 span = sd->span;
1933 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001934 if (!group) {
1935 sd = sd->child;
1936 continue;
1937 }
Nick Piggin476d1392005-06-25 14:57:29 -07001938
Mike Travis7c16ec52008-04-04 18:11:11 -07001939 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001940 if (new_cpu == -1 || new_cpu == cpu) {
1941 /* Now try balancing at a lower domain level of cpu */
1942 sd = sd->child;
1943 continue;
1944 }
Nick Piggin476d1392005-06-25 14:57:29 -07001945
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001946 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001947 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001948 sd = NULL;
1949 weight = cpus_weight(span);
1950 for_each_domain(cpu, tmp) {
1951 if (weight <= cpus_weight(tmp->span))
1952 break;
1953 if (tmp->flags & flag)
1954 sd = tmp;
1955 }
1956 /* while loop will break here if sd == NULL */
1957 }
1958
1959 return cpu;
1960}
1961
1962#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964/***
1965 * try_to_wake_up - wake up a thread
1966 * @p: the to-be-woken-up thread
1967 * @state: the mask of task states that can be woken
1968 * @sync: do a synchronous wakeup?
1969 *
1970 * Put it on the run-queue if it's not already there. The "current"
1971 * thread is always on the run-queue (except when the actual
1972 * re-schedule is in progress), and as such you're allowed to do
1973 * the simpler "current->state = TASK_RUNNING" to mark yourself
1974 * runnable without the overhead of this.
1975 *
1976 * returns failure only if the task is already active.
1977 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001978static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
Ingo Molnarcc367732007-10-15 17:00:18 +02001980 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 unsigned long flags;
1982 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001983 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Ingo Molnarb85d0662008-03-16 20:03:22 +01001985 if (!sched_feat(SYNC_WAKEUPS))
1986 sync = 0;
1987
Linus Torvalds04e2f172008-02-23 18:05:03 -08001988 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 rq = task_rq_lock(p, &flags);
1990 old_state = p->state;
1991 if (!(old_state & state))
1992 goto out;
1993
Ingo Molnardd41f592007-07-09 18:51:59 +02001994 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 goto out_running;
1996
1997 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02001998 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 this_cpu = smp_processor_id();
2000
2001#ifdef CONFIG_SMP
2002 if (unlikely(task_running(rq, p)))
2003 goto out_activate;
2004
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002005 cpu = p->sched_class->select_task_rq(p, sync);
2006 if (cpu != orig_cpu) {
2007 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 task_rq_unlock(rq, &flags);
2009 /* might preempt at this point */
2010 rq = task_rq_lock(p, &flags);
2011 old_state = p->state;
2012 if (!(old_state & state))
2013 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002014 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 goto out_running;
2016
2017 this_cpu = smp_processor_id();
2018 cpu = task_cpu(p);
2019 }
2020
Gregory Haskinse7693a32008-01-25 21:08:09 +01002021#ifdef CONFIG_SCHEDSTATS
2022 schedstat_inc(rq, ttwu_count);
2023 if (cpu == this_cpu)
2024 schedstat_inc(rq, ttwu_local);
2025 else {
2026 struct sched_domain *sd;
2027 for_each_domain(this_cpu, sd) {
2028 if (cpu_isset(cpu, sd->span)) {
2029 schedstat_inc(sd, ttwu_wake_remote);
2030 break;
2031 }
2032 }
2033 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01002034#endif
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036out_activate:
2037#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002038 schedstat_inc(p, se.nr_wakeups);
2039 if (sync)
2040 schedstat_inc(p, se.nr_wakeups_sync);
2041 if (orig_cpu != cpu)
2042 schedstat_inc(p, se.nr_wakeups_migrate);
2043 if (cpu == this_cpu)
2044 schedstat_inc(p, se.nr_wakeups_local);
2045 else
2046 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002047 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002048 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 success = 1;
2050
2051out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002052 check_preempt_curr(rq, p);
2053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002055#ifdef CONFIG_SMP
2056 if (p->sched_class->task_wake_up)
2057 p->sched_class->task_wake_up(rq, p);
2058#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059out:
2060 task_rq_unlock(rq, &flags);
2061
2062 return success;
2063}
2064
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002065int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002067 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069EXPORT_SYMBOL(wake_up_process);
2070
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002071int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
2073 return try_to_wake_up(p, state, 0);
2074}
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076/*
2077 * Perform scheduler related setup for a newly forked process p.
2078 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002079 *
2080 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002082static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
Ingo Molnardd41f592007-07-09 18:51:59 +02002084 p->se.exec_start = 0;
2085 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002086 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002087 p->se.last_wakeup = 0;
2088 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002089
2090#ifdef CONFIG_SCHEDSTATS
2091 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002092 p->se.sum_sleep_runtime = 0;
2093 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002094 p->se.block_start = 0;
2095 p->se.sleep_max = 0;
2096 p->se.block_max = 0;
2097 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002098 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002099 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002100#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002101
Peter Zijlstrafa717062008-01-25 21:08:27 +01002102 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002103 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07002104
Avi Kivitye107be32007-07-26 13:40:43 +02002105#ifdef CONFIG_PREEMPT_NOTIFIERS
2106 INIT_HLIST_HEAD(&p->preempt_notifiers);
2107#endif
2108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 /*
2110 * We mark the process as running here, but have not actually
2111 * inserted it onto the runqueue yet. This guarantees that
2112 * nobody will actually run it, and a signal or other external
2113 * event cannot wake it up and insert it on the runqueue either.
2114 */
2115 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002116}
2117
2118/*
2119 * fork()/clone()-time setup:
2120 */
2121void sched_fork(struct task_struct *p, int clone_flags)
2122{
2123 int cpu = get_cpu();
2124
2125 __sched_fork(p);
2126
2127#ifdef CONFIG_SMP
2128 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2129#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002130 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002131
2132 /*
2133 * Make sure we do not leak PI boosting priority to the child:
2134 */
2135 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002136 if (!rt_prio(p->prio))
2137 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002138
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002139#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002140 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002141 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002143#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002144 p->oncpu = 0;
2145#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002147 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002148 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002150 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151}
2152
2153/*
2154 * wake_up_new_task - wake up a newly created task for the first time.
2155 *
2156 * This function will do some initial scheduler statistics housekeeping
2157 * that must be done for every newly created context, then puts the task
2158 * on the runqueue and wakes it.
2159 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002160void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
2162 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002163 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002167 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
2169 p->prio = effective_prio(p);
2170
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002171 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002172 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002175 * Let the scheduling class do new task startup
2176 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002178 p->sched_class->task_new(rq, p);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01002179 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002181 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002182#ifdef CONFIG_SMP
2183 if (p->sched_class->task_wake_up)
2184 p->sched_class->task_wake_up(rq, p);
2185#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002186 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188
Avi Kivitye107be32007-07-26 13:40:43 +02002189#ifdef CONFIG_PREEMPT_NOTIFIERS
2190
2191/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002192 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2193 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002194 */
2195void preempt_notifier_register(struct preempt_notifier *notifier)
2196{
2197 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2198}
2199EXPORT_SYMBOL_GPL(preempt_notifier_register);
2200
2201/**
2202 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002203 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002204 *
2205 * This is safe to call from within a preemption notifier.
2206 */
2207void preempt_notifier_unregister(struct preempt_notifier *notifier)
2208{
2209 hlist_del(&notifier->link);
2210}
2211EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2212
2213static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2214{
2215 struct preempt_notifier *notifier;
2216 struct hlist_node *node;
2217
2218 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2219 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2220}
2221
2222static void
2223fire_sched_out_preempt_notifiers(struct task_struct *curr,
2224 struct task_struct *next)
2225{
2226 struct preempt_notifier *notifier;
2227 struct hlist_node *node;
2228
2229 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2230 notifier->ops->sched_out(notifier, next);
2231}
2232
2233#else
2234
2235static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2236{
2237}
2238
2239static void
2240fire_sched_out_preempt_notifiers(struct task_struct *curr,
2241 struct task_struct *next)
2242{
2243}
2244
2245#endif
2246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002248 * prepare_task_switch - prepare to switch tasks
2249 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002250 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002251 * @next: the task we are going to switch to.
2252 *
2253 * This is called with the rq lock held and interrupts off. It must
2254 * be paired with a subsequent finish_task_switch after the context
2255 * switch.
2256 *
2257 * prepare_task_switch sets up locking and calls architecture specific
2258 * hooks.
2259 */
Avi Kivitye107be32007-07-26 13:40:43 +02002260static inline void
2261prepare_task_switch(struct rq *rq, struct task_struct *prev,
2262 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002263{
Avi Kivitye107be32007-07-26 13:40:43 +02002264 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002265 prepare_lock_switch(rq, next);
2266 prepare_arch_switch(next);
2267}
2268
2269/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002271 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 * @prev: the thread we just switched away from.
2273 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002274 * finish_task_switch must be called after the context switch, paired
2275 * with a prepare_task_switch call before the context switch.
2276 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2277 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 *
2279 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002280 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 * with the lock held can cause deadlocks; see schedule() for
2282 * details.)
2283 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002284static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 __releases(rq->lock)
2286{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002288 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
2290 rq->prev_mm = NULL;
2291
2292 /*
2293 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002294 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002295 * schedule one last time. The schedule call will never return, and
2296 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002297 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 * still held, otherwise prev could be scheduled on another cpu, die
2299 * there before we look at prev->state, and then the reference would
2300 * be dropped twice.
2301 * Manfred Spraul <manfred@colorfullife.com>
2302 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002303 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002304 finish_arch_switch(prev);
2305 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002306#ifdef CONFIG_SMP
2307 if (current->sched_class->post_schedule)
2308 current->sched_class->post_schedule(rq);
2309#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002310
Avi Kivitye107be32007-07-26 13:40:43 +02002311 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (mm)
2313 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002314 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002315 /*
2316 * Remove function-return probe instances associated with this
2317 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002318 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002319 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322}
2323
2324/**
2325 * schedule_tail - first thing a freshly forked thread must call.
2326 * @prev: the thread we just switched away from.
2327 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002328asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 __releases(rq->lock)
2330{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002331 struct rq *rq = this_rq();
2332
Nick Piggin4866cde2005-06-25 14:57:23 -07002333 finish_task_switch(rq, prev);
2334#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2335 /* In this case, finish_task_switch does not reenable preemption */
2336 preempt_enable();
2337#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002339 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340}
2341
2342/*
2343 * context_switch - switch to the new MM and the new
2344 * thread's register state.
2345 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002346static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002347context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002348 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
Ingo Molnardd41f592007-07-09 18:51:59 +02002350 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Avi Kivitye107be32007-07-26 13:40:43 +02002352 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002353 mm = next->mm;
2354 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002355 /*
2356 * For paravirt, this is coupled with an exit in switch_to to
2357 * combine the page table reload and the switch backend into
2358 * one hypercall.
2359 */
2360 arch_enter_lazy_cpu_mode();
2361
Ingo Molnardd41f592007-07-09 18:51:59 +02002362 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 next->active_mm = oldmm;
2364 atomic_inc(&oldmm->mm_count);
2365 enter_lazy_tlb(oldmm, next);
2366 } else
2367 switch_mm(oldmm, mm, next);
2368
Ingo Molnardd41f592007-07-09 18:51:59 +02002369 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 rq->prev_mm = oldmm;
2372 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002373 /*
2374 * Since the runqueue lock will be released by the next
2375 * task (which is an invalid locking op but in the case
2376 * of the scheduler it's an obvious special-case), so we
2377 * do an early lockdep release here:
2378 */
2379#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002380 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002381#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
2383 /* Here we just switch the register state and the stack. */
2384 switch_to(prev, next, prev);
2385
Ingo Molnardd41f592007-07-09 18:51:59 +02002386 barrier();
2387 /*
2388 * this_rq must be evaluated again because prev may have moved
2389 * CPUs since it called schedule(), thus the 'rq' on its stack
2390 * frame will be invalid.
2391 */
2392 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393}
2394
2395/*
2396 * nr_running, nr_uninterruptible and nr_context_switches:
2397 *
2398 * externally visible scheduler statistics: current number of runnable
2399 * threads, current number of uninterruptible-sleeping threads, total
2400 * number of context switches performed since bootup.
2401 */
2402unsigned long nr_running(void)
2403{
2404 unsigned long i, sum = 0;
2405
2406 for_each_online_cpu(i)
2407 sum += cpu_rq(i)->nr_running;
2408
2409 return sum;
2410}
2411
2412unsigned long nr_uninterruptible(void)
2413{
2414 unsigned long i, sum = 0;
2415
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002416 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 sum += cpu_rq(i)->nr_uninterruptible;
2418
2419 /*
2420 * Since we read the counters lockless, it might be slightly
2421 * inaccurate. Do not allow it to go below zero though:
2422 */
2423 if (unlikely((long)sum < 0))
2424 sum = 0;
2425
2426 return sum;
2427}
2428
2429unsigned long long nr_context_switches(void)
2430{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002431 int i;
2432 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002434 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 sum += cpu_rq(i)->nr_switches;
2436
2437 return sum;
2438}
2439
2440unsigned long nr_iowait(void)
2441{
2442 unsigned long i, sum = 0;
2443
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002444 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2446
2447 return sum;
2448}
2449
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002450unsigned long nr_active(void)
2451{
2452 unsigned long i, running = 0, uninterruptible = 0;
2453
2454 for_each_online_cpu(i) {
2455 running += cpu_rq(i)->nr_running;
2456 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2457 }
2458
2459 if (unlikely((long)uninterruptible < 0))
2460 uninterruptible = 0;
2461
2462 return running + uninterruptible;
2463}
2464
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002466 * Update rq->cpu_load[] statistics. This function is usually called every
2467 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002468 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002469static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002470{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002471 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002472 int i, scale;
2473
2474 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002475
2476 /* Update our load: */
2477 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2478 unsigned long old_load, new_load;
2479
2480 /* scale is effectively 1 << i now, and >> i divides by scale */
2481
2482 old_load = this_rq->cpu_load[i];
2483 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002484 /*
2485 * Round up the averaging division if load is increasing. This
2486 * prevents us from getting stuck on 9 if the load is 10, for
2487 * example.
2488 */
2489 if (new_load > old_load)
2490 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002491 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2492 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002493}
2494
Ingo Molnardd41f592007-07-09 18:51:59 +02002495#ifdef CONFIG_SMP
2496
Ingo Molnar48f24c42006-07-03 00:25:40 -07002497/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 * double_rq_lock - safely lock two runqueues
2499 *
2500 * Note this does not disable interrupts like task_rq_lock,
2501 * you need to do so manually before calling.
2502 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002503static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 __acquires(rq1->lock)
2505 __acquires(rq2->lock)
2506{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002507 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 if (rq1 == rq2) {
2509 spin_lock(&rq1->lock);
2510 __acquire(rq2->lock); /* Fake it out ;) */
2511 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002512 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 spin_lock(&rq1->lock);
2514 spin_lock(&rq2->lock);
2515 } else {
2516 spin_lock(&rq2->lock);
2517 spin_lock(&rq1->lock);
2518 }
2519 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002520 update_rq_clock(rq1);
2521 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522}
2523
2524/*
2525 * double_rq_unlock - safely unlock two runqueues
2526 *
2527 * Note this does not restore interrupts like task_rq_unlock,
2528 * you need to do so manually after calling.
2529 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002530static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 __releases(rq1->lock)
2532 __releases(rq2->lock)
2533{
2534 spin_unlock(&rq1->lock);
2535 if (rq1 != rq2)
2536 spin_unlock(&rq2->lock);
2537 else
2538 __release(rq2->lock);
2539}
2540
2541/*
2542 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2543 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002544static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 __releases(this_rq->lock)
2546 __acquires(busiest->lock)
2547 __acquires(this_rq->lock)
2548{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002549 int ret = 0;
2550
Kirill Korotaev054b9102006-12-10 02:20:11 -08002551 if (unlikely(!irqs_disabled())) {
2552 /* printk() doesn't work good under rq->lock */
2553 spin_unlock(&this_rq->lock);
2554 BUG_ON(1);
2555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002557 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 spin_unlock(&this_rq->lock);
2559 spin_lock(&busiest->lock);
2560 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002561 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 } else
2563 spin_lock(&busiest->lock);
2564 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002565 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566}
2567
2568/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 * If dest_cpu is allowed for this process, migrate the task to it.
2570 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002571 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 * the cpu_allowed mask is restored.
2573 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002574static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002576 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002578 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
2580 rq = task_rq_lock(p, &flags);
2581 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2582 || unlikely(cpu_is_offline(dest_cpu)))
2583 goto out;
2584
2585 /* force the process onto the specified CPU */
2586 if (migrate_task(p, dest_cpu, &req)) {
2587 /* Need to wait for migration thread (might exit: take ref). */
2588 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002589
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 get_task_struct(mt);
2591 task_rq_unlock(rq, &flags);
2592 wake_up_process(mt);
2593 put_task_struct(mt);
2594 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002595
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 return;
2597 }
2598out:
2599 task_rq_unlock(rq, &flags);
2600}
2601
2602/*
Nick Piggin476d1392005-06-25 14:57:29 -07002603 * sched_exec - execve() is a valuable balancing opportunity, because at
2604 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 */
2606void sched_exec(void)
2607{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002609 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002611 if (new_cpu != this_cpu)
2612 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613}
2614
2615/*
2616 * pull_task - move a task from a remote runqueue to the local runqueue.
2617 * Both runqueues must be locked.
2618 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002619static void pull_task(struct rq *src_rq, struct task_struct *p,
2620 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002622 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002624 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 /*
2626 * Note that idle threads have a prio of MAX_PRIO, for this test
2627 * to be always true for them.
2628 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002629 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630}
2631
2632/*
2633 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2634 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002635static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002636int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002637 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002638 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639{
2640 /*
2641 * We do not migrate tasks that are:
2642 * 1) running (obviously), or
2643 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2644 * 3) are cache-hot on their current CPU.
2645 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002646 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2647 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002649 }
Nick Piggin81026792005-06-25 14:57:07 -07002650 *all_pinned = 0;
2651
Ingo Molnarcc367732007-10-15 17:00:18 +02002652 if (task_running(rq, p)) {
2653 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002654 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Ingo Molnarda84d962007-10-15 17:00:18 +02002657 /*
2658 * Aggressive migration if:
2659 * 1) task is cache cold, or
2660 * 2) too many balance attempts have failed.
2661 */
2662
Ingo Molnar6bc16652007-10-15 17:00:18 +02002663 if (!task_hot(p, rq->clock, sd) ||
2664 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002665#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002666 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002667 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002668 schedstat_inc(p, se.nr_forced_migrations);
2669 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002670#endif
2671 return 1;
2672 }
2673
Ingo Molnarcc367732007-10-15 17:00:18 +02002674 if (task_hot(p, rq->clock, sd)) {
2675 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002676 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 return 1;
2679}
2680
Peter Williamse1d14842007-10-24 18:23:51 +02002681static unsigned long
2682balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2683 unsigned long max_load_move, struct sched_domain *sd,
2684 enum cpu_idle_type idle, int *all_pinned,
2685 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002686{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002687 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002688 struct task_struct *p;
2689 long rem_load_move = max_load_move;
2690
Peter Williamse1d14842007-10-24 18:23:51 +02002691 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002692 goto out;
2693
2694 pinned = 1;
2695
2696 /*
2697 * Start the load-balancing iterator:
2698 */
2699 p = iterator->start(iterator->arg);
2700next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002701 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002702 goto out;
2703 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002704 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002705 * skip a task if it will be the highest priority task (i.e. smallest
2706 * prio value) on its new queue regardless of its load weight
2707 */
2708 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2709 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002710 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002711 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002712 p = iterator->next(iterator->arg);
2713 goto next;
2714 }
2715
2716 pull_task(busiest, p, this_rq, this_cpu);
2717 pulled++;
2718 rem_load_move -= p->se.load.weight;
2719
2720 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002721 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002722 */
Peter Williamse1d14842007-10-24 18:23:51 +02002723 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002724 if (p->prio < *this_best_prio)
2725 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002726 p = iterator->next(iterator->arg);
2727 goto next;
2728 }
2729out:
2730 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002731 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002732 * so we can safely collect pull_task() stats here rather than
2733 * inside pull_task().
2734 */
2735 schedstat_add(sd, lb_gained[idle], pulled);
2736
2737 if (all_pinned)
2738 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002739
2740 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002741}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743/*
Peter Williams43010652007-08-09 11:16:46 +02002744 * move_tasks tries to move up to max_load_move weighted load from busiest to
2745 * this_rq, as part of a balancing operation within domain "sd".
2746 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 *
2748 * Called with both runqueues locked.
2749 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002750static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002751 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002752 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002753 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002755 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002756 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002757 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Ingo Molnardd41f592007-07-09 18:51:59 +02002759 do {
Peter Williams43010652007-08-09 11:16:46 +02002760 total_load_moved +=
2761 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002762 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002763 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002764 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002765 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
Peter Williams43010652007-08-09 11:16:46 +02002767 return total_load_moved > 0;
2768}
2769
Peter Williamse1d14842007-10-24 18:23:51 +02002770static int
2771iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2772 struct sched_domain *sd, enum cpu_idle_type idle,
2773 struct rq_iterator *iterator)
2774{
2775 struct task_struct *p = iterator->start(iterator->arg);
2776 int pinned = 0;
2777
2778 while (p) {
2779 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2780 pull_task(busiest, p, this_rq, this_cpu);
2781 /*
2782 * Right now, this is only the second place pull_task()
2783 * is called, so we can safely collect pull_task()
2784 * stats here rather than inside pull_task().
2785 */
2786 schedstat_inc(sd, lb_gained[idle]);
2787
2788 return 1;
2789 }
2790 p = iterator->next(iterator->arg);
2791 }
2792
2793 return 0;
2794}
2795
Peter Williams43010652007-08-09 11:16:46 +02002796/*
2797 * move_one_task tries to move exactly one task from busiest to this_rq, as
2798 * part of active balancing operations within "domain".
2799 * Returns 1 if successful and 0 otherwise.
2800 *
2801 * Called with both runqueues locked.
2802 */
2803static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2804 struct sched_domain *sd, enum cpu_idle_type idle)
2805{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002806 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002807
2808 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002809 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002810 return 1;
2811
2812 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813}
2814
2815/*
2816 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002817 * domain. It calculates and returns the amount of weighted load which
2818 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 */
2820static struct sched_group *
2821find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002822 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07002823 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824{
2825 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2826 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002827 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002828 unsigned long busiest_load_per_task, busiest_nr_running;
2829 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002830 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002831#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2832 int power_savings_balance = 1;
2833 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2834 unsigned long min_nr_running = ULONG_MAX;
2835 struct sched_group *group_min = NULL, *group_leader = NULL;
2836#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
2838 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002839 busiest_load_per_task = busiest_nr_running = 0;
2840 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002841 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002842 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002843 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002844 load_idx = sd->newidle_idx;
2845 else
2846 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
2848 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002849 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 int local_group;
2851 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002852 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002853 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002854 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
2856 local_group = cpu_isset(this_cpu, group->cpumask);
2857
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002858 if (local_group)
2859 balance_cpu = first_cpu(group->cpumask);
2860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002862 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002863 max_cpu_load = 0;
2864 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002867 struct rq *rq;
2868
2869 if (!cpu_isset(i, *cpus))
2870 continue;
2871
2872 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002873
Suresh Siddha9439aab2007-07-19 21:28:35 +02002874 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002875 *sd_idle = 0;
2876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002878 if (local_group) {
2879 if (idle_cpu(i) && !first_idle_cpu) {
2880 first_idle_cpu = 1;
2881 balance_cpu = i;
2882 }
2883
Nick Piggina2000572006-02-10 01:51:02 -08002884 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002885 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002886 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002887 if (load > max_cpu_load)
2888 max_cpu_load = load;
2889 if (min_cpu_load > load)
2890 min_cpu_load = load;
2891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002894 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002895 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 }
2897
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002898 /*
2899 * First idle cpu or the first cpu(busiest) in this sched group
2900 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002901 * domains. In the newly idle case, we will allow all the cpu's
2902 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002903 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002904 if (idle != CPU_NEWLY_IDLE && local_group &&
2905 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002906 *balance = 0;
2907 goto ret;
2908 }
2909
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002911 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
2913 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002914 avg_load = sg_div_cpu_power(group,
2915 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Ken Chen908a7c12007-10-17 16:55:11 +02002917 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
2918 __group_imb = 1;
2919
Eric Dumazet5517d862007-05-08 00:32:57 -07002920 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002921
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 if (local_group) {
2923 this_load = avg_load;
2924 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002925 this_nr_running = sum_nr_running;
2926 this_load_per_task = sum_weighted_load;
2927 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02002928 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 max_load = avg_load;
2930 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002931 busiest_nr_running = sum_nr_running;
2932 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02002933 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002935
2936#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2937 /*
2938 * Busy processors will not participate in power savings
2939 * balance.
2940 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002941 if (idle == CPU_NOT_IDLE ||
2942 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2943 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002944
2945 /*
2946 * If the local group is idle or completely loaded
2947 * no need to do power savings balance at this domain
2948 */
2949 if (local_group && (this_nr_running >= group_capacity ||
2950 !this_nr_running))
2951 power_savings_balance = 0;
2952
Ingo Molnardd41f592007-07-09 18:51:59 +02002953 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002954 * If a group is already running at full capacity or idle,
2955 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002956 */
2957 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002958 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002959 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002960
Ingo Molnardd41f592007-07-09 18:51:59 +02002961 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002962 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002963 * This is the group from where we need to pick up the load
2964 * for saving power
2965 */
2966 if ((sum_nr_running < min_nr_running) ||
2967 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002968 first_cpu(group->cpumask) <
2969 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002970 group_min = group;
2971 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002972 min_load_per_task = sum_weighted_load /
2973 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002974 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002975
Ingo Molnardd41f592007-07-09 18:51:59 +02002976 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002977 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002978 * capacity but still has some space to pick up some load
2979 * from other group and save more power
2980 */
2981 if (sum_nr_running <= group_capacity - 1) {
2982 if (sum_nr_running > leader_nr_running ||
2983 (sum_nr_running == leader_nr_running &&
2984 first_cpu(group->cpumask) >
2985 first_cpu(group_leader->cpumask))) {
2986 group_leader = group;
2987 leader_nr_running = sum_nr_running;
2988 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002989 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002990group_next:
2991#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 group = group->next;
2993 } while (group != sd->groups);
2994
Peter Williams2dd73a42006-06-27 02:54:34 -07002995 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 goto out_balanced;
2997
2998 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2999
3000 if (this_load >= avg_load ||
3001 100*max_load <= sd->imbalance_pct*this_load)
3002 goto out_balanced;
3003
Peter Williams2dd73a42006-06-27 02:54:34 -07003004 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003005 if (group_imb)
3006 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3007
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 /*
3009 * We're trying to get all the cpus to the average_load, so we don't
3010 * want to push ourselves above the average load, nor do we wish to
3011 * reduce the max loaded cpu below the average load, as either of these
3012 * actions would just result in more rebalancing later, and ping-pong
3013 * tasks around. Thus we look for the minimum possible imbalance.
3014 * Negative imbalances (*we* are more loaded than anyone else) will
3015 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003016 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 * appear as very large values with unsigned longs.
3018 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003019 if (max_load <= busiest_load_per_task)
3020 goto out_balanced;
3021
3022 /*
3023 * In the presence of smp nice balancing, certain scenarios can have
3024 * max load less than avg load(as we skip the groups at or below
3025 * its cpu_power, while calculating max_load..)
3026 */
3027 if (max_load < avg_load) {
3028 *imbalance = 0;
3029 goto small_imbalance;
3030 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003031
3032 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003033 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003034
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003036 *imbalance = min(max_pull * busiest->__cpu_power,
3037 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 / SCHED_LOAD_SCALE;
3039
Peter Williams2dd73a42006-06-27 02:54:34 -07003040 /*
3041 * if *imbalance is less than the average load per runnable task
3042 * there is no gaurantee that any tasks will be moved so we'll have
3043 * a think about bumping its value to force at least one task to be
3044 * moved
3045 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003046 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003047 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003048 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
Peter Williams2dd73a42006-06-27 02:54:34 -07003050small_imbalance:
3051 pwr_move = pwr_now = 0;
3052 imbn = 2;
3053 if (this_nr_running) {
3054 this_load_per_task /= this_nr_running;
3055 if (busiest_load_per_task > this_load_per_task)
3056 imbn = 1;
3057 } else
3058 this_load_per_task = SCHED_LOAD_SCALE;
3059
Ingo Molnardd41f592007-07-09 18:51:59 +02003060 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3061 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003062 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 return busiest;
3064 }
3065
3066 /*
3067 * OK, we don't have enough imbalance to justify moving tasks,
3068 * however we may be able to increase total CPU power used by
3069 * moving them.
3070 */
3071
Eric Dumazet5517d862007-05-08 00:32:57 -07003072 pwr_now += busiest->__cpu_power *
3073 min(busiest_load_per_task, max_load);
3074 pwr_now += this->__cpu_power *
3075 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 pwr_now /= SCHED_LOAD_SCALE;
3077
3078 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003079 tmp = sg_div_cpu_power(busiest,
3080 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003082 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003083 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
3085 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003086 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003087 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003088 tmp = sg_div_cpu_power(this,
3089 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003091 tmp = sg_div_cpu_power(this,
3092 busiest_load_per_task * SCHED_LOAD_SCALE);
3093 pwr_move += this->__cpu_power *
3094 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 pwr_move /= SCHED_LOAD_SCALE;
3096
3097 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003098 if (pwr_move > pwr_now)
3099 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 }
3101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 return busiest;
3103
3104out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003105#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003106 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003107 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003109 if (this == group_leader && group_leader != group_min) {
3110 *imbalance = min_load_per_task;
3111 return group_min;
3112 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003113#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003114ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 *imbalance = 0;
3116 return NULL;
3117}
3118
3119/*
3120 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3121 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003122static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003123find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003124 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003126 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003127 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 int i;
3129
3130 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003131 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003132
3133 if (!cpu_isset(i, *cpus))
3134 continue;
3135
Ingo Molnar48f24c42006-07-03 00:25:40 -07003136 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003137 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
Ingo Molnardd41f592007-07-09 18:51:59 +02003139 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003140 continue;
3141
Ingo Molnardd41f592007-07-09 18:51:59 +02003142 if (wl > max_load) {
3143 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003144 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 }
3146 }
3147
3148 return busiest;
3149}
3150
3151/*
Nick Piggin77391d72005-06-25 14:57:30 -07003152 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3153 * so long as it is large enough.
3154 */
3155#define MAX_PINNED_INTERVAL 512
3156
3157/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3159 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003161static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003162 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003163 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164{
Peter Williams43010652007-08-09 11:16:46 +02003165 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003168 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003169 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07003170
Mike Travis7c16ec52008-04-04 18:11:11 -07003171 cpus_setall(*cpus);
3172
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003173 /*
3174 * When power savings policy is enabled for the parent domain, idle
3175 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003176 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003177 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003178 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003179 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003180 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003181 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
Ingo Molnar2d723762007-10-15 17:00:12 +02003183 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003185redo:
3186 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003187 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003188
Chen, Kenneth W06066712006-12-10 02:20:35 -08003189 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003190 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 if (!group) {
3193 schedstat_inc(sd, lb_nobusyg[idle]);
3194 goto out_balanced;
3195 }
3196
Mike Travis7c16ec52008-04-04 18:11:11 -07003197 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 if (!busiest) {
3199 schedstat_inc(sd, lb_nobusyq[idle]);
3200 goto out_balanced;
3201 }
3202
Nick Piggindb935db2005-06-25 14:57:11 -07003203 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
3205 schedstat_add(sd, lb_imbalance[idle], imbalance);
3206
Peter Williams43010652007-08-09 11:16:46 +02003207 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 if (busiest->nr_running > 1) {
3209 /*
3210 * Attempt to move tasks. If find_busiest_group has found
3211 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003212 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 * correctly treated as an imbalance.
3214 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003215 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003216 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003217 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003218 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003219 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003220 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003221
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003222 /*
3223 * some other cpu did the load balance for us.
3224 */
Peter Williams43010652007-08-09 11:16:46 +02003225 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003226 resched_cpu(this_cpu);
3227
Nick Piggin81026792005-06-25 14:57:07 -07003228 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003229 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003230 cpu_clear(cpu_of(busiest), *cpus);
3231 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003232 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003233 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 }
Nick Piggin81026792005-06-25 14:57:07 -07003236
Peter Williams43010652007-08-09 11:16:46 +02003237 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 schedstat_inc(sd, lb_failed[idle]);
3239 sd->nr_balance_failed++;
3240
3241 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003243 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003244
3245 /* don't kick the migration_thread, if the curr
3246 * task on busiest cpu can't be moved to this_cpu
3247 */
3248 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003249 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003250 all_pinned = 1;
3251 goto out_one_pinned;
3252 }
3253
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 if (!busiest->active_balance) {
3255 busiest->active_balance = 1;
3256 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003257 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003259 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003260 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 wake_up_process(busiest->migration_thread);
3262
3263 /*
3264 * We've kicked active balancing, reset the failure
3265 * counter.
3266 */
Nick Piggin39507452005-06-25 14:57:09 -07003267 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 }
Nick Piggin81026792005-06-25 14:57:07 -07003269 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 sd->nr_balance_failed = 0;
3271
Nick Piggin81026792005-06-25 14:57:07 -07003272 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 /* We were unbalanced, so reset the balancing interval */
3274 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003275 } else {
3276 /*
3277 * If we've begun active balancing, start to back off. This
3278 * case may not be covered by the all_pinned logic if there
3279 * is only 1 task on the busy runqueue (because we don't call
3280 * move_tasks).
3281 */
3282 if (sd->balance_interval < sd->max_interval)
3283 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 }
3285
Peter Williams43010652007-08-09 11:16:46 +02003286 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003287 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003288 return -1;
Peter Williams43010652007-08-09 11:16:46 +02003289 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
3291out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 schedstat_inc(sd, lb_balanced[idle]);
3293
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003294 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003295
3296out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003298 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3299 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 sd->balance_interval *= 2;
3301
Ingo Molnar48f24c42006-07-03 00:25:40 -07003302 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003303 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003304 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 return 0;
3306}
3307
3308/*
3309 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3310 * tasks if there is an imbalance.
3311 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003312 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 * this_rq is locked.
3314 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003315static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003316load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3317 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318{
3319 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003320 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003322 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003323 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003324 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003325
3326 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003327
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003328 /*
3329 * When power savings policy is enabled for the parent domain, idle
3330 * sibling can pick up load irrespective of busy siblings. In this case,
3331 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003332 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003333 */
3334 if (sd->flags & SD_SHARE_CPUPOWER &&
3335 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003336 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Ingo Molnar2d723762007-10-15 17:00:12 +02003338 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003339redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003340 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003341 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003343 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003344 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 }
3346
Mike Travis7c16ec52008-04-04 18:11:11 -07003347 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003348 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003349 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003350 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 }
3352
Nick Piggindb935db2005-06-25 14:57:11 -07003353 BUG_ON(busiest == this_rq);
3354
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003355 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003356
Peter Williams43010652007-08-09 11:16:46 +02003357 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003358 if (busiest->nr_running > 1) {
3359 /* Attempt to move tasks */
3360 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003361 /* this_rq->clock is already updated */
3362 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003363 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003364 imbalance, sd, CPU_NEWLY_IDLE,
3365 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003366 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003367
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003368 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003369 cpu_clear(cpu_of(busiest), *cpus);
3370 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003371 goto redo;
3372 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003373 }
3374
Peter Williams43010652007-08-09 11:16:46 +02003375 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003376 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003377 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3378 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003379 return -1;
3380 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003381 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
Peter Williams43010652007-08-09 11:16:46 +02003383 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003384
3385out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003386 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003387 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003388 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003389 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003390 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003391
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003392 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393}
3394
3395/*
3396 * idle_balance is called by schedule() if this_cpu is about to become
3397 * idle. Attempts to pull tasks from other CPUs.
3398 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003399static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400{
3401 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003402 int pulled_task = -1;
3403 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003404 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
3406 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003407 unsigned long interval;
3408
3409 if (!(sd->flags & SD_LOAD_BALANCE))
3410 continue;
3411
3412 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003413 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003414 pulled_task = load_balance_newidle(this_cpu, this_rq,
3415 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003416
3417 interval = msecs_to_jiffies(sd->balance_interval);
3418 if (time_after(next_balance, sd->last_balance + interval))
3419 next_balance = sd->last_balance + interval;
3420 if (pulled_task)
3421 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003423 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003424 /*
3425 * We are going idle. next_balance may be set based on
3426 * a busy processor. So reset next_balance.
3427 */
3428 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430}
3431
3432/*
3433 * active_load_balance is run by migration threads. It pushes running tasks
3434 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3435 * running on each physical CPU where possible, and avoids physical /
3436 * logical imbalances.
3437 *
3438 * Called with busiest_rq locked.
3439 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003440static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441{
Nick Piggin39507452005-06-25 14:57:09 -07003442 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003443 struct sched_domain *sd;
3444 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003445
Ingo Molnar48f24c42006-07-03 00:25:40 -07003446 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003447 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003448 return;
3449
3450 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
3452 /*
Nick Piggin39507452005-06-25 14:57:09 -07003453 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003454 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003455 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 */
Nick Piggin39507452005-06-25 14:57:09 -07003457 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
Nick Piggin39507452005-06-25 14:57:09 -07003459 /* move a task from busiest_rq to target_rq */
3460 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003461 update_rq_clock(busiest_rq);
3462 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
Nick Piggin39507452005-06-25 14:57:09 -07003464 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003465 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003466 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003467 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003468 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
Ingo Molnar48f24c42006-07-03 00:25:40 -07003471 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003472 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473
Peter Williams43010652007-08-09 11:16:46 +02003474 if (move_one_task(target_rq, target_cpu, busiest_rq,
3475 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003476 schedstat_inc(sd, alb_pushed);
3477 else
3478 schedstat_inc(sd, alb_failed);
3479 }
Nick Piggin39507452005-06-25 14:57:09 -07003480 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481}
3482
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003483#ifdef CONFIG_NO_HZ
3484static struct {
3485 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003486 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003487} nohz ____cacheline_aligned = {
3488 .load_balancer = ATOMIC_INIT(-1),
3489 .cpu_mask = CPU_MASK_NONE,
3490};
3491
Christoph Lameter7835b982006-12-10 02:20:22 -08003492/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003493 * This routine will try to nominate the ilb (idle load balancing)
3494 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3495 * load balancing on behalf of all those cpus. If all the cpus in the system
3496 * go into this tickless mode, then there will be no ilb owner (as there is
3497 * no need for one) and all the cpus will sleep till the next wakeup event
3498 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003499 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003500 * For the ilb owner, tick is not stopped. And this tick will be used
3501 * for idle load balancing. ilb owner will still be part of
3502 * nohz.cpu_mask..
3503 *
3504 * While stopping the tick, this cpu will become the ilb owner if there
3505 * is no other owner. And will be the owner till that cpu becomes busy
3506 * or if all cpus in the system stop their ticks at which point
3507 * there is no need for ilb owner.
3508 *
3509 * When the ilb owner becomes busy, it nominates another owner, during the
3510 * next busy scheduler_tick()
3511 */
3512int select_nohz_load_balancer(int stop_tick)
3513{
3514 int cpu = smp_processor_id();
3515
3516 if (stop_tick) {
3517 cpu_set(cpu, nohz.cpu_mask);
3518 cpu_rq(cpu)->in_nohz_recently = 1;
3519
3520 /*
3521 * If we are going offline and still the leader, give up!
3522 */
3523 if (cpu_is_offline(cpu) &&
3524 atomic_read(&nohz.load_balancer) == cpu) {
3525 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3526 BUG();
3527 return 0;
3528 }
3529
3530 /* time for ilb owner also to sleep */
3531 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3532 if (atomic_read(&nohz.load_balancer) == cpu)
3533 atomic_set(&nohz.load_balancer, -1);
3534 return 0;
3535 }
3536
3537 if (atomic_read(&nohz.load_balancer) == -1) {
3538 /* make me the ilb owner */
3539 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3540 return 1;
3541 } else if (atomic_read(&nohz.load_balancer) == cpu)
3542 return 1;
3543 } else {
3544 if (!cpu_isset(cpu, nohz.cpu_mask))
3545 return 0;
3546
3547 cpu_clear(cpu, nohz.cpu_mask);
3548
3549 if (atomic_read(&nohz.load_balancer) == cpu)
3550 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3551 BUG();
3552 }
3553 return 0;
3554}
3555#endif
3556
3557static DEFINE_SPINLOCK(balancing);
3558
3559/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003560 * It checks each scheduling domain to see if it is due to be balanced,
3561 * and initiates a balancing operation if so.
3562 *
3563 * Balancing parameters are set up in arch_init_sched_domains.
3564 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003565static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003566{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003567 int balance = 1;
3568 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003569 unsigned long interval;
3570 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003571 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003572 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003573 int update_next_balance = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003574 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003576 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 if (!(sd->flags & SD_LOAD_BALANCE))
3578 continue;
3579
3580 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003581 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 interval *= sd->busy_factor;
3583
3584 /* scale ms to jiffies */
3585 interval = msecs_to_jiffies(interval);
3586 if (unlikely(!interval))
3587 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003588 if (interval > HZ*NR_CPUS/10)
3589 interval = HZ*NR_CPUS/10;
3590
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591
Christoph Lameter08c183f2006-12-10 02:20:29 -08003592 if (sd->flags & SD_SERIALIZE) {
3593 if (!spin_trylock(&balancing))
3594 goto out;
3595 }
3596
Christoph Lameterc9819f42006-12-10 02:20:25 -08003597 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003598 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003599 /*
3600 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003601 * longer idle, or one of our SMT siblings is
3602 * not idle.
3603 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003604 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003606 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003608 if (sd->flags & SD_SERIALIZE)
3609 spin_unlock(&balancing);
3610out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003611 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003612 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003613 update_next_balance = 1;
3614 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003615
3616 /*
3617 * Stop the load balance at this level. There is another
3618 * CPU in our sched group which is doing load balancing more
3619 * actively.
3620 */
3621 if (!balance)
3622 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003624
3625 /*
3626 * next_balance will be updated only when there is a need.
3627 * When the cpu is attached to null domain for ex, it will not be
3628 * updated.
3629 */
3630 if (likely(update_next_balance))
3631 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003632}
3633
3634/*
3635 * run_rebalance_domains is triggered when needed from the scheduler tick.
3636 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3637 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3638 */
3639static void run_rebalance_domains(struct softirq_action *h)
3640{
Ingo Molnardd41f592007-07-09 18:51:59 +02003641 int this_cpu = smp_processor_id();
3642 struct rq *this_rq = cpu_rq(this_cpu);
3643 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3644 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003645
Ingo Molnardd41f592007-07-09 18:51:59 +02003646 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003647
3648#ifdef CONFIG_NO_HZ
3649 /*
3650 * If this cpu is the owner for idle load balancing, then do the
3651 * balancing on behalf of the other idle cpus whose ticks are
3652 * stopped.
3653 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003654 if (this_rq->idle_at_tick &&
3655 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003656 cpumask_t cpus = nohz.cpu_mask;
3657 struct rq *rq;
3658 int balance_cpu;
3659
Ingo Molnardd41f592007-07-09 18:51:59 +02003660 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003661 for_each_cpu_mask(balance_cpu, cpus) {
3662 /*
3663 * If this cpu gets work to do, stop the load balancing
3664 * work being done for other cpus. Next load
3665 * balancing owner will pick it up.
3666 */
3667 if (need_resched())
3668 break;
3669
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003670 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003671
3672 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003673 if (time_after(this_rq->next_balance, rq->next_balance))
3674 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003675 }
3676 }
3677#endif
3678}
3679
3680/*
3681 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3682 *
3683 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3684 * idle load balancing owner or decide to stop the periodic load balancing,
3685 * if the whole system is idle.
3686 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003687static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003688{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003689#ifdef CONFIG_NO_HZ
3690 /*
3691 * If we were in the nohz mode recently and busy at the current
3692 * scheduler tick, then check if we need to nominate new idle
3693 * load balancer.
3694 */
3695 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3696 rq->in_nohz_recently = 0;
3697
3698 if (atomic_read(&nohz.load_balancer) == cpu) {
3699 cpu_clear(cpu, nohz.cpu_mask);
3700 atomic_set(&nohz.load_balancer, -1);
3701 }
3702
3703 if (atomic_read(&nohz.load_balancer) == -1) {
3704 /*
3705 * simple selection for now: Nominate the
3706 * first cpu in the nohz list to be the next
3707 * ilb owner.
3708 *
3709 * TBD: Traverse the sched domains and nominate
3710 * the nearest cpu in the nohz.cpu_mask.
3711 */
3712 int ilb = first_cpu(nohz.cpu_mask);
3713
Mike Travis434d53b2008-04-04 18:11:04 -07003714 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003715 resched_cpu(ilb);
3716 }
3717 }
3718
3719 /*
3720 * If this cpu is idle and doing idle load balancing for all the
3721 * cpus with ticks stopped, is it time for that to stop?
3722 */
3723 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3724 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3725 resched_cpu(cpu);
3726 return;
3727 }
3728
3729 /*
3730 * If this cpu is idle and the idle load balancing is done by
3731 * someone else, then no need raise the SCHED_SOFTIRQ
3732 */
3733 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3734 cpu_isset(cpu, nohz.cpu_mask))
3735 return;
3736#endif
3737 if (time_after_eq(jiffies, rq->next_balance))
3738 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739}
Ingo Molnardd41f592007-07-09 18:51:59 +02003740
3741#else /* CONFIG_SMP */
3742
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743/*
3744 * on UP we do not need to balance between CPUs:
3745 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003746static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747{
3748}
Ingo Molnardd41f592007-07-09 18:51:59 +02003749
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750#endif
3751
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752DEFINE_PER_CPU(struct kernel_stat, kstat);
3753
3754EXPORT_PER_CPU_SYMBOL(kstat);
3755
3756/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003757 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3758 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003760unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003763 u64 ns, delta_exec;
3764 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003765
Ingo Molnar41b86e92007-07-09 18:51:58 +02003766 rq = task_rq_lock(p, &flags);
3767 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003768 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003769 update_rq_clock(rq);
3770 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003771 if ((s64)delta_exec > 0)
3772 ns += delta_exec;
3773 }
3774 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003775
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 return ns;
3777}
3778
3779/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 * Account user cpu time to a process.
3781 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 * @cputime: the cpu time spent in user space since the last update
3783 */
3784void account_user_time(struct task_struct *p, cputime_t cputime)
3785{
3786 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3787 cputime64_t tmp;
3788
3789 p->utime = cputime_add(p->utime, cputime);
3790
3791 /* Add user time to cpustat. */
3792 tmp = cputime_to_cputime64(cputime);
3793 if (TASK_NICE(p) > 0)
3794 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3795 else
3796 cpustat->user = cputime64_add(cpustat->user, tmp);
3797}
3798
3799/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003800 * Account guest cpu time to a process.
3801 * @p: the process that the cpu time gets accounted to
3802 * @cputime: the cpu time spent in virtual machine since the last update
3803 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003804static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003805{
3806 cputime64_t tmp;
3807 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3808
3809 tmp = cputime_to_cputime64(cputime);
3810
3811 p->utime = cputime_add(p->utime, cputime);
3812 p->gtime = cputime_add(p->gtime, cputime);
3813
3814 cpustat->user = cputime64_add(cpustat->user, tmp);
3815 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3816}
3817
3818/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003819 * Account scaled user cpu time to a process.
3820 * @p: the process that the cpu time gets accounted to
3821 * @cputime: the cpu time spent in user space since the last update
3822 */
3823void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3824{
3825 p->utimescaled = cputime_add(p->utimescaled, cputime);
3826}
3827
3828/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 * Account system cpu time to a process.
3830 * @p: the process that the cpu time gets accounted to
3831 * @hardirq_offset: the offset to subtract from hardirq_count()
3832 * @cputime: the cpu time spent in kernel space since the last update
3833 */
3834void account_system_time(struct task_struct *p, int hardirq_offset,
3835 cputime_t cputime)
3836{
3837 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003838 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 cputime64_t tmp;
3840
Christian Borntraeger97783852007-11-15 20:57:39 +01003841 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
3842 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003843
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 p->stime = cputime_add(p->stime, cputime);
3845
3846 /* Add system time to cpustat. */
3847 tmp = cputime_to_cputime64(cputime);
3848 if (hardirq_count() - hardirq_offset)
3849 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3850 else if (softirq_count())
3851 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003852 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003854 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3856 else
3857 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3858 /* Account for system time used */
3859 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860}
3861
3862/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003863 * Account scaled system cpu time to a process.
3864 * @p: the process that the cpu time gets accounted to
3865 * @hardirq_offset: the offset to subtract from hardirq_count()
3866 * @cputime: the cpu time spent in kernel space since the last update
3867 */
3868void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
3869{
3870 p->stimescaled = cputime_add(p->stimescaled, cputime);
3871}
3872
3873/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 * Account for involuntary wait time.
3875 * @p: the process from which the cpu time has been stolen
3876 * @steal: the cpu time spent in involuntary wait
3877 */
3878void account_steal_time(struct task_struct *p, cputime_t steal)
3879{
3880 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3881 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003882 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883
3884 if (p == rq->idle) {
3885 p->stime = cputime_add(p->stime, steal);
3886 if (atomic_read(&rq->nr_iowait) > 0)
3887 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3888 else
3889 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003890 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3892}
3893
Christoph Lameter7835b982006-12-10 02:20:22 -08003894/*
3895 * This function gets called by the timer code, with HZ frequency.
3896 * We call it with interrupts disabled.
3897 *
3898 * It also gets called by the fork code, when changing the parent's
3899 * timeslices.
3900 */
3901void scheduler_tick(void)
3902{
Christoph Lameter7835b982006-12-10 02:20:22 -08003903 int cpu = smp_processor_id();
3904 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003905 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003906 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003907
Ingo Molnardd41f592007-07-09 18:51:59 +02003908 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003909 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003910 /*
3911 * Let rq->clock advance by at least TICK_NSEC:
3912 */
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003913 if (unlikely(rq->clock < next_tick)) {
Ingo Molnar529c7722007-08-10 23:05:11 +02003914 rq->clock = next_tick;
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003915 rq->clock_underflows++;
3916 }
Ingo Molnar529c7722007-08-10 23:05:11 +02003917 rq->tick_timestamp = rq->clock;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02003918 update_last_tick_seen(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003919 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003920 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02003921 spin_unlock(&rq->lock);
3922
Christoph Lametere418e1c2006-12-10 02:20:23 -08003923#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003924 rq->idle_at_tick = idle_cpu(cpu);
3925 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003926#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927}
3928
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3930
Srinivasa Ds43627582008-02-23 15:24:04 -08003931void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932{
3933 /*
3934 * Underflow?
3935 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003936 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3937 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 preempt_count() += val;
3939 /*
3940 * Spinlock count overflowing soon?
3941 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003942 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3943 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944}
3945EXPORT_SYMBOL(add_preempt_count);
3946
Srinivasa Ds43627582008-02-23 15:24:04 -08003947void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948{
3949 /*
3950 * Underflow?
3951 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003952 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3953 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 /*
3955 * Is the spinlock portion underflowing?
3956 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003957 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3958 !(preempt_count() & PREEMPT_MASK)))
3959 return;
3960
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 preempt_count() -= val;
3962}
3963EXPORT_SYMBOL(sub_preempt_count);
3964
3965#endif
3966
3967/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003968 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003970static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971{
Satyam Sharma838225b2007-10-24 18:23:50 +02003972 struct pt_regs *regs = get_irq_regs();
3973
3974 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
3975 prev->comm, prev->pid, preempt_count());
3976
Ingo Molnardd41f592007-07-09 18:51:59 +02003977 debug_show_held_locks(prev);
3978 if (irqs_disabled())
3979 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003980
3981 if (regs)
3982 show_regs(regs);
3983 else
3984 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003985}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
Ingo Molnardd41f592007-07-09 18:51:59 +02003987/*
3988 * Various schedule()-time debugging checks and statistics:
3989 */
3990static inline void schedule_debug(struct task_struct *prev)
3991{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003993 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 * schedule() atomically, we ignore that path for now.
3995 * Otherwise, whine if we are scheduling when we should not be.
3996 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003997 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3998 __schedule_bug(prev);
3999
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4001
Ingo Molnar2d723762007-10-15 17:00:12 +02004002 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004003#ifdef CONFIG_SCHEDSTATS
4004 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004005 schedstat_inc(this_rq(), bkl_count);
4006 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004007 }
4008#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004009}
4010
4011/*
4012 * Pick up the highest-prio task:
4013 */
4014static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004015pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004016{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004017 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004018 struct task_struct *p;
4019
4020 /*
4021 * Optimization: we know that if all tasks are in
4022 * the fair class we can call that function directly:
4023 */
4024 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004025 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004026 if (likely(p))
4027 return p;
4028 }
4029
4030 class = sched_class_highest;
4031 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004032 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004033 if (p)
4034 return p;
4035 /*
4036 * Will never be NULL as the idle class always
4037 * returns a non-NULL p:
4038 */
4039 class = class->next;
4040 }
4041}
4042
4043/*
4044 * schedule() is the main scheduler function.
4045 */
4046asmlinkage void __sched schedule(void)
4047{
4048 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004049 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004050 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02004051 int cpu;
4052
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053need_resched:
4054 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004055 cpu = smp_processor_id();
4056 rq = cpu_rq(cpu);
4057 rcu_qsctr_inc(cpu);
4058 prev = rq->curr;
4059 switch_count = &prev->nivcsw;
4060
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 release_kernel_lock(prev);
4062need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063
Ingo Molnardd41f592007-07-09 18:51:59 +02004064 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004066 hrtick_clear(rq);
4067
Ingo Molnar1e819952007-10-15 17:00:13 +02004068 /*
4069 * Do the rq-clock update outside the rq lock:
4070 */
4071 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02004072 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004073 spin_lock(&rq->lock);
4074 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075
Ingo Molnardd41f592007-07-09 18:51:59 +02004076 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
4077 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
Roel Kluin23e3c3c2008-03-13 17:41:59 +01004078 signal_pending(prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004079 prev->state = TASK_RUNNING;
4080 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004081 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004082 }
4083 switch_count = &prev->nvcsw;
4084 }
4085
Steven Rostedt9a897c52008-01-25 21:08:22 +01004086#ifdef CONFIG_SMP
4087 if (prev->sched_class->pre_schedule)
4088 prev->sched_class->pre_schedule(rq, prev);
4089#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004090
Ingo Molnardd41f592007-07-09 18:51:59 +02004091 if (unlikely(!rq->nr_running))
4092 idle_balance(cpu, rq);
4093
Ingo Molnar31ee5292007-08-09 11:16:49 +02004094 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004095 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
4097 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02004098
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 rq->nr_switches++;
4101 rq->curr = next;
4102 ++*switch_count;
4103
Ingo Molnardd41f592007-07-09 18:51:59 +02004104 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004105 /*
4106 * the context switch might have flipped the stack from under
4107 * us, hence refresh the local variables.
4108 */
4109 cpu = smp_processor_id();
4110 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 } else
4112 spin_unlock_irq(&rq->lock);
4113
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004114 hrtick_set(rq);
4115
4116 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004118
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 preempt_enable_no_resched();
4120 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4121 goto need_resched;
4122}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123EXPORT_SYMBOL(schedule);
4124
4125#ifdef CONFIG_PREEMPT
4126/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004127 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004128 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 * occur there and call schedule directly.
4130 */
4131asmlinkage void __sched preempt_schedule(void)
4132{
4133 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 struct task_struct *task = current;
4135 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004136
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 /*
4138 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004139 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004141 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 return;
4143
Andi Kleen3a5c3592007-10-15 17:00:14 +02004144 do {
4145 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146
Andi Kleen3a5c3592007-10-15 17:00:14 +02004147 /*
4148 * We keep the big kernel semaphore locked, but we
4149 * clear ->lock_depth so that schedule() doesnt
4150 * auto-release the semaphore:
4151 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004152 saved_lock_depth = task->lock_depth;
4153 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004154 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004155 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004156 sub_preempt_count(PREEMPT_ACTIVE);
4157
4158 /*
4159 * Check again in case we missed a preemption opportunity
4160 * between schedule and now.
4161 */
4162 barrier();
4163 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165EXPORT_SYMBOL(preempt_schedule);
4166
4167/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004168 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 * off of irq context.
4170 * Note, that this is called and return with irqs disabled. This will
4171 * protect us against recursive calling from irq.
4172 */
4173asmlinkage void __sched preempt_schedule_irq(void)
4174{
4175 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 struct task_struct *task = current;
4177 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004178
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004179 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 BUG_ON(ti->preempt_count || !irqs_disabled());
4181
Andi Kleen3a5c3592007-10-15 17:00:14 +02004182 do {
4183 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184
Andi Kleen3a5c3592007-10-15 17:00:14 +02004185 /*
4186 * We keep the big kernel semaphore locked, but we
4187 * clear ->lock_depth so that schedule() doesnt
4188 * auto-release the semaphore:
4189 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004190 saved_lock_depth = task->lock_depth;
4191 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004192 local_irq_enable();
4193 schedule();
4194 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004195 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004196 sub_preempt_count(PREEMPT_ACTIVE);
4197
4198 /*
4199 * Check again in case we missed a preemption opportunity
4200 * between schedule and now.
4201 */
4202 barrier();
4203 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204}
4205
4206#endif /* CONFIG_PREEMPT */
4207
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004208int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4209 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004211 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213EXPORT_SYMBOL(default_wake_function);
4214
4215/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004216 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4217 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 * number) then we wake all the non-exclusive tasks and one exclusive task.
4219 *
4220 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004221 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4223 */
4224static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4225 int nr_exclusive, int sync, void *key)
4226{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004227 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004229 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004230 unsigned flags = curr->flags;
4231
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004233 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 break;
4235 }
4236}
4237
4238/**
4239 * __wake_up - wake up threads blocked on a waitqueue.
4240 * @q: the waitqueue
4241 * @mode: which threads
4242 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004243 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004245void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004246 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247{
4248 unsigned long flags;
4249
4250 spin_lock_irqsave(&q->lock, flags);
4251 __wake_up_common(q, mode, nr_exclusive, 0, key);
4252 spin_unlock_irqrestore(&q->lock, flags);
4253}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254EXPORT_SYMBOL(__wake_up);
4255
4256/*
4257 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4258 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004259void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260{
4261 __wake_up_common(q, mode, 1, 0, NULL);
4262}
4263
4264/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004265 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 * @q: the waitqueue
4267 * @mode: which threads
4268 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4269 *
4270 * The sync wakeup differs that the waker knows that it will schedule
4271 * away soon, so while the target thread will be woken up, it will not
4272 * be migrated to another CPU - ie. the two threads are 'synchronized'
4273 * with each other. This can prevent needless bouncing between CPUs.
4274 *
4275 * On UP it can prevent extra preemption.
4276 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004277void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004278__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279{
4280 unsigned long flags;
4281 int sync = 1;
4282
4283 if (unlikely(!q))
4284 return;
4285
4286 if (unlikely(!nr_exclusive))
4287 sync = 0;
4288
4289 spin_lock_irqsave(&q->lock, flags);
4290 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4291 spin_unlock_irqrestore(&q->lock, flags);
4292}
4293EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4294
Ingo Molnarb15136e2007-10-24 18:23:48 +02004295void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296{
4297 unsigned long flags;
4298
4299 spin_lock_irqsave(&x->wait.lock, flags);
4300 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004301 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 spin_unlock_irqrestore(&x->wait.lock, flags);
4303}
4304EXPORT_SYMBOL(complete);
4305
Ingo Molnarb15136e2007-10-24 18:23:48 +02004306void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307{
4308 unsigned long flags;
4309
4310 spin_lock_irqsave(&x->wait.lock, flags);
4311 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004312 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 spin_unlock_irqrestore(&x->wait.lock, flags);
4314}
4315EXPORT_SYMBOL(complete_all);
4316
Andi Kleen8cbbe862007-10-15 17:00:14 +02004317static inline long __sched
4318do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 if (!x->done) {
4321 DECLARE_WAITQUEUE(wait, current);
4322
4323 wait.flags |= WQ_FLAG_EXCLUSIVE;
4324 __add_wait_queue_tail(&x->wait, &wait);
4325 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004326 if ((state == TASK_INTERRUPTIBLE &&
4327 signal_pending(current)) ||
4328 (state == TASK_KILLABLE &&
4329 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004330 __remove_wait_queue(&x->wait, &wait);
4331 return -ERESTARTSYS;
4332 }
4333 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004335 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004337 if (!timeout) {
4338 __remove_wait_queue(&x->wait, &wait);
4339 return timeout;
4340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 } while (!x->done);
4342 __remove_wait_queue(&x->wait, &wait);
4343 }
4344 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004345 return timeout;
4346}
4347
4348static long __sched
4349wait_for_common(struct completion *x, long timeout, int state)
4350{
4351 might_sleep();
4352
4353 spin_lock_irq(&x->wait.lock);
4354 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004356 return timeout;
4357}
4358
Ingo Molnarb15136e2007-10-24 18:23:48 +02004359void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004360{
4361 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362}
4363EXPORT_SYMBOL(wait_for_completion);
4364
Ingo Molnarb15136e2007-10-24 18:23:48 +02004365unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4367{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004368 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369}
4370EXPORT_SYMBOL(wait_for_completion_timeout);
4371
Andi Kleen8cbbe862007-10-15 17:00:14 +02004372int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373{
Andi Kleen51e97992007-10-18 21:32:55 +02004374 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4375 if (t == -ERESTARTSYS)
4376 return t;
4377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378}
4379EXPORT_SYMBOL(wait_for_completion_interruptible);
4380
Ingo Molnarb15136e2007-10-24 18:23:48 +02004381unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382wait_for_completion_interruptible_timeout(struct completion *x,
4383 unsigned long timeout)
4384{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004385 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386}
4387EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4388
Matthew Wilcox009e5772007-12-06 12:29:54 -05004389int __sched wait_for_completion_killable(struct completion *x)
4390{
4391 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4392 if (t == -ERESTARTSYS)
4393 return t;
4394 return 0;
4395}
4396EXPORT_SYMBOL(wait_for_completion_killable);
4397
Andi Kleen8cbbe862007-10-15 17:00:14 +02004398static long __sched
4399sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004400{
4401 unsigned long flags;
4402 wait_queue_t wait;
4403
4404 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405
Andi Kleen8cbbe862007-10-15 17:00:14 +02004406 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407
Andi Kleen8cbbe862007-10-15 17:00:14 +02004408 spin_lock_irqsave(&q->lock, flags);
4409 __add_wait_queue(q, &wait);
4410 spin_unlock(&q->lock);
4411 timeout = schedule_timeout(timeout);
4412 spin_lock_irq(&q->lock);
4413 __remove_wait_queue(q, &wait);
4414 spin_unlock_irqrestore(&q->lock, flags);
4415
4416 return timeout;
4417}
4418
4419void __sched interruptible_sleep_on(wait_queue_head_t *q)
4420{
4421 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423EXPORT_SYMBOL(interruptible_sleep_on);
4424
Ingo Molnar0fec1712007-07-09 18:52:01 +02004425long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004426interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004428 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4431
Ingo Molnar0fec1712007-07-09 18:52:01 +02004432void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004434 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436EXPORT_SYMBOL(sleep_on);
4437
Ingo Molnar0fec1712007-07-09 18:52:01 +02004438long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004440 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442EXPORT_SYMBOL(sleep_on_timeout);
4443
Ingo Molnarb29739f2006-06-27 02:54:51 -07004444#ifdef CONFIG_RT_MUTEXES
4445
4446/*
4447 * rt_mutex_setprio - set the current priority of a task
4448 * @p: task
4449 * @prio: prio value (kernel-internal form)
4450 *
4451 * This function changes the 'effective' priority of a task. It does
4452 * not touch ->normal_prio like __setscheduler().
4453 *
4454 * Used by the rt_mutex code to implement priority inheritance logic.
4455 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004456void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004457{
4458 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004459 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004460 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004461 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004462
4463 BUG_ON(prio < 0 || prio > MAX_PRIO);
4464
4465 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004466 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004467
Andrew Mortond5f9f942007-05-08 20:27:06 -07004468 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004469 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004470 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004471 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004472 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004473 if (running)
4474 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004475
4476 if (rt_prio(prio))
4477 p->sched_class = &rt_sched_class;
4478 else
4479 p->sched_class = &fair_sched_class;
4480
Ingo Molnarb29739f2006-06-27 02:54:51 -07004481 p->prio = prio;
4482
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004483 if (running)
4484 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004485 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004486 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004487
4488 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004489 }
4490 task_rq_unlock(rq, &flags);
4491}
4492
4493#endif
4494
Ingo Molnar36c8b582006-07-03 00:25:41 -07004495void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496{
Ingo Molnardd41f592007-07-09 18:51:59 +02004497 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004499 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
4501 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4502 return;
4503 /*
4504 * We have to be careful, if called from sys_setpriority(),
4505 * the task might be in the middle of scheduling on another CPU.
4506 */
4507 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004508 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 /*
4510 * The RT priorities are set via sched_setscheduler(), but we still
4511 * allow the 'normal' nice value to be set - but as expected
4512 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004513 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004515 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 p->static_prio = NICE_TO_PRIO(nice);
4517 goto out_unlock;
4518 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004519 on_rq = p->se.on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004520 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004521 dequeue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004522 dec_load(rq, p);
4523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004526 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004527 old_prio = p->prio;
4528 p->prio = effective_prio(p);
4529 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
Ingo Molnardd41f592007-07-09 18:51:59 +02004531 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004532 enqueue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004533 inc_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004535 * If the task increased its priority or is running and
4536 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004538 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 resched_task(rq->curr);
4540 }
4541out_unlock:
4542 task_rq_unlock(rq, &flags);
4543}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544EXPORT_SYMBOL(set_user_nice);
4545
Matt Mackalle43379f2005-05-01 08:59:00 -07004546/*
4547 * can_nice - check if a task can reduce its nice value
4548 * @p: task
4549 * @nice: nice value
4550 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004551int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004552{
Matt Mackall024f4742005-08-18 11:24:19 -07004553 /* convert nice value [19,-20] to rlimit style value [1,40] */
4554 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004555
Matt Mackalle43379f2005-05-01 08:59:00 -07004556 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4557 capable(CAP_SYS_NICE));
4558}
4559
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560#ifdef __ARCH_WANT_SYS_NICE
4561
4562/*
4563 * sys_nice - change the priority of the current process.
4564 * @increment: priority increment
4565 *
4566 * sys_setpriority is a more generic, but much slower function that
4567 * does similar things.
4568 */
4569asmlinkage long sys_nice(int increment)
4570{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004571 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572
4573 /*
4574 * Setpriority might change our priority at the same moment.
4575 * We don't have to worry. Conceptually one call occurs first
4576 * and we have a single winner.
4577 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004578 if (increment < -40)
4579 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 if (increment > 40)
4581 increment = 40;
4582
4583 nice = PRIO_TO_NICE(current->static_prio) + increment;
4584 if (nice < -20)
4585 nice = -20;
4586 if (nice > 19)
4587 nice = 19;
4588
Matt Mackalle43379f2005-05-01 08:59:00 -07004589 if (increment < 0 && !can_nice(current, nice))
4590 return -EPERM;
4591
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 retval = security_task_setnice(current, nice);
4593 if (retval)
4594 return retval;
4595
4596 set_user_nice(current, nice);
4597 return 0;
4598}
4599
4600#endif
4601
4602/**
4603 * task_prio - return the priority value of a given task.
4604 * @p: the task in question.
4605 *
4606 * This is the priority value as seen by users in /proc.
4607 * RT tasks are offset by -200. Normal tasks are centered
4608 * around 0, value goes from -16 to +15.
4609 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004610int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611{
4612 return p->prio - MAX_RT_PRIO;
4613}
4614
4615/**
4616 * task_nice - return the nice value of a given task.
4617 * @p: the task in question.
4618 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004619int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620{
4621 return TASK_NICE(p);
4622}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004623EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624
4625/**
4626 * idle_cpu - is a given cpu idle currently?
4627 * @cpu: the processor in question.
4628 */
4629int idle_cpu(int cpu)
4630{
4631 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4632}
4633
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634/**
4635 * idle_task - return the idle task for a given cpu.
4636 * @cpu: the processor in question.
4637 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004638struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639{
4640 return cpu_rq(cpu)->idle;
4641}
4642
4643/**
4644 * find_process_by_pid - find a process with a matching PID value.
4645 * @pid: the pid in question.
4646 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004647static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004649 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650}
4651
4652/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004653static void
4654__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655{
Ingo Molnardd41f592007-07-09 18:51:59 +02004656 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004657
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004659 switch (p->policy) {
4660 case SCHED_NORMAL:
4661 case SCHED_BATCH:
4662 case SCHED_IDLE:
4663 p->sched_class = &fair_sched_class;
4664 break;
4665 case SCHED_FIFO:
4666 case SCHED_RR:
4667 p->sched_class = &rt_sched_class;
4668 break;
4669 }
4670
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004672 p->normal_prio = normal_prio(p);
4673 /* we are holding p->pi_lock already */
4674 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004675 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676}
4677
4678/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004679 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 * @p: the task in question.
4681 * @policy: new policy.
4682 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004683 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004684 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004686int sched_setscheduler(struct task_struct *p, int policy,
4687 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004689 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004691 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004692 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
Steven Rostedt66e53932006-06-27 02:54:44 -07004694 /* may grab non-irq protected spin_locks */
4695 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696recheck:
4697 /* double check policy once rq lock held */
4698 if (policy < 0)
4699 policy = oldpolicy = p->policy;
4700 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004701 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4702 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004703 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 /*
4705 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004706 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4707 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 */
4709 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004710 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004711 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004713 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 return -EINVAL;
4715
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004716 /*
4717 * Allow unprivileged RT tasks to decrease priority:
4718 */
4719 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004720 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004721 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004722
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004723 if (!lock_task_sighand(p, &flags))
4724 return -ESRCH;
4725 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4726 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004727
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004728 /* can't set/change the rt policy */
4729 if (policy != p->policy && !rlim_rtprio)
4730 return -EPERM;
4731
4732 /* can't increase priority */
4733 if (param->sched_priority > p->rt_priority &&
4734 param->sched_priority > rlim_rtprio)
4735 return -EPERM;
4736 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004737 /*
4738 * Like positive nice levels, dont allow tasks to
4739 * move out of SCHED_IDLE either:
4740 */
4741 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4742 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004743
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004744 /* can't change other user's priorities */
4745 if ((current->euid != p->euid) &&
4746 (current->euid != p->uid))
4747 return -EPERM;
4748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004750#ifdef CONFIG_RT_GROUP_SCHED
4751 /*
4752 * Do not allow realtime tasks into groups that have no runtime
4753 * assigned.
4754 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02004755 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004756 return -EPERM;
4757#endif
4758
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759 retval = security_task_setscheduler(p, policy, param);
4760 if (retval)
4761 return retval;
4762 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004763 * make sure no PI-waiters arrive (or leave) while we are
4764 * changing the priority of the task:
4765 */
4766 spin_lock_irqsave(&p->pi_lock, flags);
4767 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 * To be able to change p->policy safely, the apropriate
4769 * runqueue lock must be held.
4770 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004771 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 /* recheck policy now with rq lock held */
4773 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4774 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004775 __task_rq_unlock(rq);
4776 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 goto recheck;
4778 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004779 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004780 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004781 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004782 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004783 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004784 if (running)
4785 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004786
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004788 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004789
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004790 if (running)
4791 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004792 if (on_rq) {
4793 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004794
4795 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004797 __task_rq_unlock(rq);
4798 spin_unlock_irqrestore(&p->pi_lock, flags);
4799
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004800 rt_mutex_adjust_pi(p);
4801
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 return 0;
4803}
4804EXPORT_SYMBOL_GPL(sched_setscheduler);
4805
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004806static int
4807do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809 struct sched_param lparam;
4810 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004811 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812
4813 if (!param || pid < 0)
4814 return -EINVAL;
4815 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4816 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004817
4818 rcu_read_lock();
4819 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004821 if (p != NULL)
4822 retval = sched_setscheduler(p, policy, &lparam);
4823 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004824
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825 return retval;
4826}
4827
4828/**
4829 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4830 * @pid: the pid in question.
4831 * @policy: new policy.
4832 * @param: structure containing the new RT priority.
4833 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004834asmlinkage long
4835sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836{
Jason Baronc21761f2006-01-18 17:43:03 -08004837 /* negative values for policy are not valid */
4838 if (policy < 0)
4839 return -EINVAL;
4840
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 return do_sched_setscheduler(pid, policy, param);
4842}
4843
4844/**
4845 * sys_sched_setparam - set/change the RT priority of a thread
4846 * @pid: the pid in question.
4847 * @param: structure containing the new RT priority.
4848 */
4849asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4850{
4851 return do_sched_setscheduler(pid, -1, param);
4852}
4853
4854/**
4855 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4856 * @pid: the pid in question.
4857 */
4858asmlinkage long sys_sched_getscheduler(pid_t pid)
4859{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004860 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004861 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862
4863 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004864 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865
4866 retval = -ESRCH;
4867 read_lock(&tasklist_lock);
4868 p = find_process_by_pid(pid);
4869 if (p) {
4870 retval = security_task_getscheduler(p);
4871 if (!retval)
4872 retval = p->policy;
4873 }
4874 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 return retval;
4876}
4877
4878/**
4879 * sys_sched_getscheduler - get the RT priority of a thread
4880 * @pid: the pid in question.
4881 * @param: structure containing the RT priority.
4882 */
4883asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4884{
4885 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004886 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004887 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888
4889 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004890 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891
4892 read_lock(&tasklist_lock);
4893 p = find_process_by_pid(pid);
4894 retval = -ESRCH;
4895 if (!p)
4896 goto out_unlock;
4897
4898 retval = security_task_getscheduler(p);
4899 if (retval)
4900 goto out_unlock;
4901
4902 lp.sched_priority = p->rt_priority;
4903 read_unlock(&tasklist_lock);
4904
4905 /*
4906 * This one might sleep, we cannot do it with a spinlock held ...
4907 */
4908 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4909
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 return retval;
4911
4912out_unlock:
4913 read_unlock(&tasklist_lock);
4914 return retval;
4915}
4916
Mike Travisb53e9212008-04-04 18:11:08 -07004917long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07004920 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004921 struct task_struct *p;
4922 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004924 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 read_lock(&tasklist_lock);
4926
4927 p = find_process_by_pid(pid);
4928 if (!p) {
4929 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004930 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 return -ESRCH;
4932 }
4933
4934 /*
4935 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004936 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 * usage count and then drop tasklist_lock.
4938 */
4939 get_task_struct(p);
4940 read_unlock(&tasklist_lock);
4941
4942 retval = -EPERM;
4943 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4944 !capable(CAP_SYS_NICE))
4945 goto out_unlock;
4946
David Quigleye7834f82006-06-23 02:03:59 -07004947 retval = security_task_setscheduler(p, 0, NULL);
4948 if (retval)
4949 goto out_unlock;
4950
Mike Travisf9a86fc2008-04-04 18:11:07 -07004951 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004953 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07004954 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955
Paul Menage8707d8b2007-10-18 23:40:22 -07004956 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07004957 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004958 if (!cpus_subset(new_mask, cpus_allowed)) {
4959 /*
4960 * We must have raced with a concurrent cpuset
4961 * update. Just reset the cpus_allowed to the
4962 * cpuset's cpus_allowed
4963 */
4964 new_mask = cpus_allowed;
4965 goto again;
4966 }
4967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968out_unlock:
4969 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004970 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 return retval;
4972}
4973
4974static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4975 cpumask_t *new_mask)
4976{
4977 if (len < sizeof(cpumask_t)) {
4978 memset(new_mask, 0, sizeof(cpumask_t));
4979 } else if (len > sizeof(cpumask_t)) {
4980 len = sizeof(cpumask_t);
4981 }
4982 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4983}
4984
4985/**
4986 * sys_sched_setaffinity - set the cpu affinity of a process
4987 * @pid: pid of the process
4988 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4989 * @user_mask_ptr: user-space pointer to the new cpu mask
4990 */
4991asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4992 unsigned long __user *user_mask_ptr)
4993{
4994 cpumask_t new_mask;
4995 int retval;
4996
4997 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4998 if (retval)
4999 return retval;
5000
Mike Travisb53e9212008-04-04 18:11:08 -07005001 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002}
5003
5004/*
5005 * Represents all cpu's present in the system
5006 * In systems capable of hotplug, this map could dynamically grow
5007 * as new cpu's are detected in the system via any platform specific
5008 * method, such as ACPI for e.g.
5009 */
5010
Andi Kleen4cef0c62006-01-11 22:44:57 +01005011cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012EXPORT_SYMBOL(cpu_present_map);
5013
5014#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01005015cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005016EXPORT_SYMBOL(cpu_online_map);
5017
Andi Kleen4cef0c62006-01-11 22:44:57 +01005018cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005019EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020#endif
5021
5022long sched_getaffinity(pid_t pid, cpumask_t *mask)
5023{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005024 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005027 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 read_lock(&tasklist_lock);
5029
5030 retval = -ESRCH;
5031 p = find_process_by_pid(pid);
5032 if (!p)
5033 goto out_unlock;
5034
David Quigleye7834f82006-06-23 02:03:59 -07005035 retval = security_task_getscheduler(p);
5036 if (retval)
5037 goto out_unlock;
5038
Jack Steiner2f7016d2006-02-01 03:05:18 -08005039 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040
5041out_unlock:
5042 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005043 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044
Ulrich Drepper9531b622007-08-09 11:16:46 +02005045 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046}
5047
5048/**
5049 * sys_sched_getaffinity - get the cpu affinity of a process
5050 * @pid: pid of the process
5051 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5052 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5053 */
5054asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5055 unsigned long __user *user_mask_ptr)
5056{
5057 int ret;
5058 cpumask_t mask;
5059
5060 if (len < sizeof(cpumask_t))
5061 return -EINVAL;
5062
5063 ret = sched_getaffinity(pid, &mask);
5064 if (ret < 0)
5065 return ret;
5066
5067 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5068 return -EFAULT;
5069
5070 return sizeof(cpumask_t);
5071}
5072
5073/**
5074 * sys_sched_yield - yield the current processor to other threads.
5075 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005076 * This function yields the current CPU to other tasks. If there are no
5077 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 */
5079asmlinkage long sys_sched_yield(void)
5080{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005081 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082
Ingo Molnar2d723762007-10-15 17:00:12 +02005083 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005084 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085
5086 /*
5087 * Since we are going to call schedule() anyway, there's
5088 * no need to preempt or enable interrupts:
5089 */
5090 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005091 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 _raw_spin_unlock(&rq->lock);
5093 preempt_enable_no_resched();
5094
5095 schedule();
5096
5097 return 0;
5098}
5099
Andrew Mortone7b38402006-06-30 01:56:00 -07005100static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005102#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5103 __might_sleep(__FILE__, __LINE__);
5104#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005105 /*
5106 * The BKS might be reacquired before we have dropped
5107 * PREEMPT_ACTIVE, which could trigger a second
5108 * cond_resched() call.
5109 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 do {
5111 add_preempt_count(PREEMPT_ACTIVE);
5112 schedule();
5113 sub_preempt_count(PREEMPT_ACTIVE);
5114 } while (need_resched());
5115}
5116
Herbert Xu02b67cc32008-01-25 21:08:28 +01005117#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
5118int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119{
Ingo Molnar94142322006-12-29 16:48:13 -08005120 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5121 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122 __cond_resched();
5123 return 1;
5124 }
5125 return 0;
5126}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005127EXPORT_SYMBOL(_cond_resched);
5128#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129
5130/*
5131 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5132 * call schedule, and on return reacquire the lock.
5133 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005134 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 * operations here to prevent schedule() from being called twice (once via
5136 * spin_unlock(), once by hand).
5137 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005138int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139{
Nick Piggin95c354f2008-01-30 13:31:20 +01005140 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005141 int ret = 0;
5142
Nick Piggin95c354f2008-01-30 13:31:20 +01005143 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005145 if (resched && need_resched())
5146 __cond_resched();
5147 else
5148 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005149 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005152 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154EXPORT_SYMBOL(cond_resched_lock);
5155
5156int __sched cond_resched_softirq(void)
5157{
5158 BUG_ON(!in_softirq());
5159
Ingo Molnar94142322006-12-29 16:48:13 -08005160 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005161 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162 __cond_resched();
5163 local_bh_disable();
5164 return 1;
5165 }
5166 return 0;
5167}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168EXPORT_SYMBOL(cond_resched_softirq);
5169
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170/**
5171 * yield - yield the current processor to other threads.
5172 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005173 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 * thread runnable and calls sys_sched_yield().
5175 */
5176void __sched yield(void)
5177{
5178 set_current_state(TASK_RUNNING);
5179 sys_sched_yield();
5180}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181EXPORT_SYMBOL(yield);
5182
5183/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005184 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185 * that process accounting knows that this is a task in IO wait state.
5186 *
5187 * But don't do that if it is a deliberate, throttling IO wait (this task
5188 * has set its backing_dev_info: the queue against which it should throttle)
5189 */
5190void __sched io_schedule(void)
5191{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005192 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005194 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 atomic_inc(&rq->nr_iowait);
5196 schedule();
5197 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005198 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200EXPORT_SYMBOL(io_schedule);
5201
5202long __sched io_schedule_timeout(long timeout)
5203{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005204 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205 long ret;
5206
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005207 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 atomic_inc(&rq->nr_iowait);
5209 ret = schedule_timeout(timeout);
5210 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005211 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 return ret;
5213}
5214
5215/**
5216 * sys_sched_get_priority_max - return maximum RT priority.
5217 * @policy: scheduling class.
5218 *
5219 * this syscall returns the maximum rt_priority that can be used
5220 * by a given scheduling class.
5221 */
5222asmlinkage long sys_sched_get_priority_max(int policy)
5223{
5224 int ret = -EINVAL;
5225
5226 switch (policy) {
5227 case SCHED_FIFO:
5228 case SCHED_RR:
5229 ret = MAX_USER_RT_PRIO-1;
5230 break;
5231 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005232 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005233 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234 ret = 0;
5235 break;
5236 }
5237 return ret;
5238}
5239
5240/**
5241 * sys_sched_get_priority_min - return minimum RT priority.
5242 * @policy: scheduling class.
5243 *
5244 * this syscall returns the minimum rt_priority that can be used
5245 * by a given scheduling class.
5246 */
5247asmlinkage long sys_sched_get_priority_min(int policy)
5248{
5249 int ret = -EINVAL;
5250
5251 switch (policy) {
5252 case SCHED_FIFO:
5253 case SCHED_RR:
5254 ret = 1;
5255 break;
5256 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005257 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005258 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259 ret = 0;
5260 }
5261 return ret;
5262}
5263
5264/**
5265 * sys_sched_rr_get_interval - return the default timeslice of a process.
5266 * @pid: pid of the process.
5267 * @interval: userspace pointer to the timeslice value.
5268 *
5269 * this syscall writes the default timeslice value of a given process
5270 * into the user-space timespec buffer. A value of '0' means infinity.
5271 */
5272asmlinkage
5273long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5274{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005275 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005276 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005277 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279
5280 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005281 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282
5283 retval = -ESRCH;
5284 read_lock(&tasklist_lock);
5285 p = find_process_by_pid(pid);
5286 if (!p)
5287 goto out_unlock;
5288
5289 retval = security_task_getscheduler(p);
5290 if (retval)
5291 goto out_unlock;
5292
Ingo Molnar77034932007-12-04 17:04:39 +01005293 /*
5294 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5295 * tasks that are on an otherwise idle runqueue:
5296 */
5297 time_slice = 0;
5298 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005299 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005300 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005301 struct sched_entity *se = &p->se;
5302 unsigned long flags;
5303 struct rq *rq;
5304
5305 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005306 if (rq->cfs.load.weight)
5307 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005308 task_rq_unlock(rq, &flags);
5309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005311 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005314
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315out_unlock:
5316 read_unlock(&tasklist_lock);
5317 return retval;
5318}
5319
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005320static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005321
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005322void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005325 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005328 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005329 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005330#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005332 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005334 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335#else
5336 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005337 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005339 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340#endif
5341#ifdef CONFIG_DEBUG_STACK_USAGE
5342 {
Al Viro10ebffd2005-11-13 16:06:56 -08005343 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 while (!*n)
5345 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005346 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347 }
5348#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005349 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005350 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005352 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353}
5354
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005355void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005357 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358
Ingo Molnar4bd77322007-07-11 21:21:47 +02005359#if BITS_PER_LONG == 32
5360 printk(KERN_INFO
5361 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005363 printk(KERN_INFO
5364 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365#endif
5366 read_lock(&tasklist_lock);
5367 do_each_thread(g, p) {
5368 /*
5369 * reset the NMI-timeout, listing all files on a slow
5370 * console might take alot of time:
5371 */
5372 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005373 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005374 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 } while_each_thread(g, p);
5376
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005377 touch_all_softlockup_watchdogs();
5378
Ingo Molnardd41f592007-07-09 18:51:59 +02005379#ifdef CONFIG_SCHED_DEBUG
5380 sysrq_sched_debug_show();
5381#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005383 /*
5384 * Only show locks if all tasks are dumped:
5385 */
5386 if (state_filter == -1)
5387 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388}
5389
Ingo Molnar1df21052007-07-09 18:51:58 +02005390void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5391{
Ingo Molnardd41f592007-07-09 18:51:59 +02005392 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005393}
5394
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005395/**
5396 * init_idle - set up an idle thread for a given CPU
5397 * @idle: task in question
5398 * @cpu: cpu the idle task belongs to
5399 *
5400 * NOTE: this function does not set the idle thread's NEED_RESCHED
5401 * flag, to make booting more robust.
5402 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005403void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005405 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406 unsigned long flags;
5407
Ingo Molnardd41f592007-07-09 18:51:59 +02005408 __sched_fork(idle);
5409 idle->se.exec_start = sched_clock();
5410
Ingo Molnarb29739f2006-06-27 02:54:51 -07005411 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005413 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
5415 spin_lock_irqsave(&rq->lock, flags);
5416 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005417#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5418 idle->oncpu = 1;
5419#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420 spin_unlock_irqrestore(&rq->lock, flags);
5421
5422 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f52005-11-13 16:06:55 -08005423 task_thread_info(idle)->preempt_count = 0;
Ingo Molnar6478d882008-01-25 21:08:33 +01005424
Ingo Molnardd41f592007-07-09 18:51:59 +02005425 /*
5426 * The idle tasks have their own, simple scheduling class:
5427 */
5428 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429}
5430
5431/*
5432 * In a system that switches off the HZ timer nohz_cpu_mask
5433 * indicates which cpus entered this state. This is used
5434 * in the rcu update to wait only for active cpus. For system
5435 * which do not switch off the HZ timer nohz_cpu_mask should
5436 * always be CPU_MASK_NONE.
5437 */
5438cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5439
Ingo Molnar19978ca2007-11-09 22:39:38 +01005440/*
5441 * Increase the granularity value when there are more CPUs,
5442 * because with more CPUs the 'effective latency' as visible
5443 * to users decreases. But the relationship is not linear,
5444 * so pick a second-best guess by going with the log2 of the
5445 * number of CPUs.
5446 *
5447 * This idea comes from the SD scheduler of Con Kolivas:
5448 */
5449static inline void sched_init_granularity(void)
5450{
5451 unsigned int factor = 1 + ilog2(num_online_cpus());
5452 const unsigned long limit = 200000000;
5453
5454 sysctl_sched_min_granularity *= factor;
5455 if (sysctl_sched_min_granularity > limit)
5456 sysctl_sched_min_granularity = limit;
5457
5458 sysctl_sched_latency *= factor;
5459 if (sysctl_sched_latency > limit)
5460 sysctl_sched_latency = limit;
5461
5462 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005463}
5464
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465#ifdef CONFIG_SMP
5466/*
5467 * This is how migration works:
5468 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005469 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470 * runqueue and wake up that CPU's migration thread.
5471 * 2) we down() the locked semaphore => thread blocks.
5472 * 3) migration thread wakes up (implicitly it forces the migrated
5473 * thread off the CPU)
5474 * 4) it gets the migration request and checks whether the migrated
5475 * task is still in the wrong runqueue.
5476 * 5) if it's in the wrong runqueue then the migration thread removes
5477 * it and puts it into the right queue.
5478 * 6) migration thread up()s the semaphore.
5479 * 7) we wake up and the migration is done.
5480 */
5481
5482/*
5483 * Change a given task's CPU affinity. Migrate the thread to a
5484 * proper CPU and schedule it away if the CPU it's executing on
5485 * is removed from the allowed bitmask.
5486 *
5487 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005488 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489 * call is not atomic; no spinlocks may be held.
5490 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005491int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005493 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005495 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005496 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497
5498 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005499 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500 ret = -EINVAL;
5501 goto out;
5502 }
5503
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005504 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005505 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005506 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005507 p->cpus_allowed = *new_mask;
5508 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005509 }
5510
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005512 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 goto out;
5514
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005515 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516 /* Need help from migration thread: drop lock and wait. */
5517 task_rq_unlock(rq, &flags);
5518 wake_up_process(rq->migration_thread);
5519 wait_for_completion(&req.done);
5520 tlb_migrate_finish(p->mm);
5521 return 0;
5522 }
5523out:
5524 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005525
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526 return ret;
5527}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005528EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
5530/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005531 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 * this because either it can't run here any more (set_cpus_allowed()
5533 * away from this CPU, or CPU going down), or because we're
5534 * attempting to rebalance this task on exec (sched_exec).
5535 *
5536 * So we race with normal scheduler movements, but that's OK, as long
5537 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005538 *
5539 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005541static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005543 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005544 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545
5546 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005547 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548
5549 rq_src = cpu_rq(src_cpu);
5550 rq_dest = cpu_rq(dest_cpu);
5551
5552 double_rq_lock(rq_src, rq_dest);
5553 /* Already moved. */
5554 if (task_cpu(p) != src_cpu)
5555 goto out;
5556 /* Affinity changed (again). */
5557 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5558 goto out;
5559
Ingo Molnardd41f592007-07-09 18:51:59 +02005560 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005561 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005562 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005563
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005565 if (on_rq) {
5566 activate_task(rq_dest, p, 0);
5567 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005569 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570out:
5571 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005572 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573}
5574
5575/*
5576 * migration_thread - this is a highprio system thread that performs
5577 * thread migration by bumping thread off CPU then 'pushing' onto
5578 * another runqueue.
5579 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005580static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005583 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584
5585 rq = cpu_rq(cpu);
5586 BUG_ON(rq->migration_thread != current);
5587
5588 set_current_state(TASK_INTERRUPTIBLE);
5589 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005590 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593 spin_lock_irq(&rq->lock);
5594
5595 if (cpu_is_offline(cpu)) {
5596 spin_unlock_irq(&rq->lock);
5597 goto wait_to_die;
5598 }
5599
5600 if (rq->active_balance) {
5601 active_load_balance(rq, cpu);
5602 rq->active_balance = 0;
5603 }
5604
5605 head = &rq->migration_queue;
5606
5607 if (list_empty(head)) {
5608 spin_unlock_irq(&rq->lock);
5609 schedule();
5610 set_current_state(TASK_INTERRUPTIBLE);
5611 continue;
5612 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005613 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614 list_del_init(head->next);
5615
Nick Piggin674311d2005-06-25 14:57:27 -07005616 spin_unlock(&rq->lock);
5617 __migrate_task(req->task, cpu, req->dest_cpu);
5618 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619
5620 complete(&req->done);
5621 }
5622 __set_current_state(TASK_RUNNING);
5623 return 0;
5624
5625wait_to_die:
5626 /* Wait for kthread_stop */
5627 set_current_state(TASK_INTERRUPTIBLE);
5628 while (!kthread_should_stop()) {
5629 schedule();
5630 set_current_state(TASK_INTERRUPTIBLE);
5631 }
5632 __set_current_state(TASK_RUNNING);
5633 return 0;
5634}
5635
5636#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005637
5638static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5639{
5640 int ret;
5641
5642 local_irq_disable();
5643 ret = __migrate_task(p, src_cpu, dest_cpu);
5644 local_irq_enable();
5645 return ret;
5646}
5647
Kirill Korotaev054b9102006-12-10 02:20:11 -08005648/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005649 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005650 * NOTE: interrupts should be disabled by the caller
5651 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005652static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005654 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005656 struct rq *rq;
5657 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658
Andi Kleen3a5c3592007-10-15 17:00:14 +02005659 do {
5660 /* On same node? */
5661 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5662 cpus_and(mask, mask, p->cpus_allowed);
5663 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664
Andi Kleen3a5c3592007-10-15 17:00:14 +02005665 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07005666 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005667 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668
Andi Kleen3a5c3592007-10-15 17:00:14 +02005669 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07005670 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005671 cpumask_t cpus_allowed;
5672
5673 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd6462007-10-18 23:40:46 -07005674 /*
5675 * Try to stay on the same cpuset, where the
5676 * current cpuset may be a subset of all cpus.
5677 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005678 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd6462007-10-18 23:40:46 -07005679 * called within calls to cpuset_lock/cpuset_unlock.
5680 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005681 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd6462007-10-18 23:40:46 -07005682 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005683 dest_cpu = any_online_cpu(p->cpus_allowed);
5684 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685
Andi Kleen3a5c3592007-10-15 17:00:14 +02005686 /*
5687 * Don't tell them about moving exiting tasks or
5688 * kernel threads (both mm NULL), since they never
5689 * leave kernel.
5690 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005691 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005692 printk(KERN_INFO "process %d (%s) no "
5693 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005694 task_pid_nr(p), p->comm, dead_cpu);
5695 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005696 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005697 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698}
5699
5700/*
5701 * While a dead CPU has no uninterruptible tasks queued at this point,
5702 * it might still have a nonzero ->nr_uninterruptible counter, because
5703 * for performance reasons the counter is not stricly tracking tasks to
5704 * their home CPUs. So we just add the counter to another CPU's counter,
5705 * to keep the global sum constant after CPU-down:
5706 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005707static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708{
Mike Travis7c16ec52008-04-04 18:11:11 -07005709 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710 unsigned long flags;
5711
5712 local_irq_save(flags);
5713 double_rq_lock(rq_src, rq_dest);
5714 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5715 rq_src->nr_uninterruptible = 0;
5716 double_rq_unlock(rq_src, rq_dest);
5717 local_irq_restore(flags);
5718}
5719
5720/* Run through task list and migrate tasks from the dead cpu. */
5721static void migrate_live_tasks(int src_cpu)
5722{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005723 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005725 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726
Ingo Molnar48f24c42006-07-03 00:25:40 -07005727 do_each_thread(t, p) {
5728 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729 continue;
5730
Ingo Molnar48f24c42006-07-03 00:25:40 -07005731 if (task_cpu(p) == src_cpu)
5732 move_task_off_dead_cpu(src_cpu, p);
5733 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005735 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736}
5737
Ingo Molnardd41f592007-07-09 18:51:59 +02005738/*
5739 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005740 * It does so by boosting its priority to highest possible.
5741 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 */
5743void sched_idle_next(void)
5744{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005745 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005746 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 struct task_struct *p = rq->idle;
5748 unsigned long flags;
5749
5750 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005751 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752
Ingo Molnar48f24c42006-07-03 00:25:40 -07005753 /*
5754 * Strictly not necessary since rest of the CPUs are stopped by now
5755 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756 */
5757 spin_lock_irqsave(&rq->lock, flags);
5758
Ingo Molnardd41f592007-07-09 18:51:59 +02005759 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005760
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005761 update_rq_clock(rq);
5762 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763
5764 spin_unlock_irqrestore(&rq->lock, flags);
5765}
5766
Ingo Molnar48f24c42006-07-03 00:25:40 -07005767/*
5768 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769 * offline.
5770 */
5771void idle_task_exit(void)
5772{
5773 struct mm_struct *mm = current->active_mm;
5774
5775 BUG_ON(cpu_online(smp_processor_id()));
5776
5777 if (mm != &init_mm)
5778 switch_mm(mm, &init_mm, current);
5779 mmdrop(mm);
5780}
5781
Kirill Korotaev054b9102006-12-10 02:20:11 -08005782/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005783static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005785 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786
5787 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005788 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789
5790 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005791 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792
Ingo Molnar48f24c42006-07-03 00:25:40 -07005793 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794
5795 /*
5796 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005797 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798 * fine.
5799 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005800 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005801 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005802 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803
Ingo Molnar48f24c42006-07-03 00:25:40 -07005804 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805}
5806
5807/* release_task() removes task from tasklist, so we won't find dead tasks. */
5808static void migrate_dead_tasks(unsigned int dead_cpu)
5809{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005810 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005811 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812
Ingo Molnardd41f592007-07-09 18:51:59 +02005813 for ( ; ; ) {
5814 if (!rq->nr_running)
5815 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005816 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005817 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005818 if (!next)
5819 break;
5820 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005821
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 }
5823}
5824#endif /* CONFIG_HOTPLUG_CPU */
5825
Nick Piggine692ab52007-07-26 13:40:43 +02005826#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5827
5828static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005829 {
5830 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005831 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005832 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005833 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005834};
5835
5836static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005837 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005838 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005839 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005840 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005841 .child = sd_ctl_dir,
5842 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005843 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005844};
5845
5846static struct ctl_table *sd_alloc_ctl_entry(int n)
5847{
5848 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005849 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005850
Nick Piggine692ab52007-07-26 13:40:43 +02005851 return entry;
5852}
5853
Milton Miller6382bc92007-10-15 17:00:19 +02005854static void sd_free_ctl_entry(struct ctl_table **tablep)
5855{
Milton Millercd7900762007-10-17 16:55:11 +02005856 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005857
Milton Millercd7900762007-10-17 16:55:11 +02005858 /*
5859 * In the intermediate directories, both the child directory and
5860 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005861 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02005862 * static strings and all have proc handlers.
5863 */
5864 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005865 if (entry->child)
5866 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02005867 if (entry->proc_handler == NULL)
5868 kfree(entry->procname);
5869 }
Milton Miller6382bc92007-10-15 17:00:19 +02005870
5871 kfree(*tablep);
5872 *tablep = NULL;
5873}
5874
Nick Piggine692ab52007-07-26 13:40:43 +02005875static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005876set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005877 const char *procname, void *data, int maxlen,
5878 mode_t mode, proc_handler *proc_handler)
5879{
Nick Piggine692ab52007-07-26 13:40:43 +02005880 entry->procname = procname;
5881 entry->data = data;
5882 entry->maxlen = maxlen;
5883 entry->mode = mode;
5884 entry->proc_handler = proc_handler;
5885}
5886
5887static struct ctl_table *
5888sd_alloc_ctl_domain_table(struct sched_domain *sd)
5889{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005890 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005891
Milton Millerad1cdc12007-10-15 17:00:19 +02005892 if (table == NULL)
5893 return NULL;
5894
Alexey Dobriyane0361852007-08-09 11:16:46 +02005895 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005896 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005897 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005898 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005899 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005900 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005901 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005902 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005903 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005904 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005905 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005906 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005907 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005908 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005909 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005910 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005911 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005912 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005913 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005914 &sd->cache_nice_tries,
5915 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005916 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005917 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005918 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005919
5920 return table;
5921}
5922
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005923static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005924{
5925 struct ctl_table *entry, *table;
5926 struct sched_domain *sd;
5927 int domain_num = 0, i;
5928 char buf[32];
5929
5930 for_each_domain(cpu, sd)
5931 domain_num++;
5932 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005933 if (table == NULL)
5934 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005935
5936 i = 0;
5937 for_each_domain(cpu, sd) {
5938 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005939 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005940 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005941 entry->child = sd_alloc_ctl_domain_table(sd);
5942 entry++;
5943 i++;
5944 }
5945 return table;
5946}
5947
5948static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005949static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005950{
5951 int i, cpu_num = num_online_cpus();
5952 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5953 char buf[32];
5954
Milton Miller73785472007-10-24 18:23:48 +02005955 WARN_ON(sd_ctl_dir[0].child);
5956 sd_ctl_dir[0].child = entry;
5957
Milton Millerad1cdc12007-10-15 17:00:19 +02005958 if (entry == NULL)
5959 return;
5960
Milton Miller97b6ea72007-10-15 17:00:19 +02005961 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005962 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005963 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005964 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005965 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005966 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005967 }
Milton Miller73785472007-10-24 18:23:48 +02005968
5969 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005970 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5971}
Milton Miller6382bc92007-10-15 17:00:19 +02005972
Milton Miller73785472007-10-24 18:23:48 +02005973/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005974static void unregister_sched_domain_sysctl(void)
5975{
Milton Miller73785472007-10-24 18:23:48 +02005976 if (sd_sysctl_header)
5977 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005978 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005979 if (sd_ctl_dir[0].child)
5980 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005981}
Nick Piggine692ab52007-07-26 13:40:43 +02005982#else
Milton Miller6382bc92007-10-15 17:00:19 +02005983static void register_sched_domain_sysctl(void)
5984{
5985}
5986static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005987{
5988}
5989#endif
5990
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991/*
5992 * migration_call - callback that gets triggered when a CPU is added.
5993 * Here we can start up the necessary migration thread for the new CPU.
5994 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005995static int __cpuinit
5996migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005999 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006001 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002
6003 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006004
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006006 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006007 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008 if (IS_ERR(p))
6009 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010 kthread_bind(p, cpu);
6011 /* Must be high prio: stop_machine expects to yield to it. */
6012 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006013 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014 task_rq_unlock(rq, &flags);
6015 cpu_rq(cpu)->migration_thread = p;
6016 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006017
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006019 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006020 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006022
6023 /* Update our root-domain */
6024 rq = cpu_rq(cpu);
6025 spin_lock_irqsave(&rq->lock, flags);
6026 if (rq->rd) {
6027 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6028 cpu_set(cpu, rq->rd->online);
6029 }
6030 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006032
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033#ifdef CONFIG_HOTPLUG_CPU
6034 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006035 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006036 if (!cpu_rq(cpu)->migration_thread)
6037 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006038 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006039 kthread_bind(cpu_rq(cpu)->migration_thread,
6040 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041 kthread_stop(cpu_rq(cpu)->migration_thread);
6042 cpu_rq(cpu)->migration_thread = NULL;
6043 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006044
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006046 case CPU_DEAD_FROZEN:
Cliff Wickman470fd6462007-10-18 23:40:46 -07006047 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048 migrate_live_tasks(cpu);
6049 rq = cpu_rq(cpu);
6050 kthread_stop(rq->migration_thread);
6051 rq->migration_thread = NULL;
6052 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006053 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006054 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006055 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006057 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6058 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006060 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd6462007-10-18 23:40:46 -07006061 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062 migrate_nr_uninterruptible(rq);
6063 BUG_ON(rq->nr_running != 0);
6064
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006065 /*
6066 * No need to migrate the tasks: it was best-effort if
6067 * they didn't take sched_hotcpu_mutex. Just wake up
6068 * the requestors.
6069 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070 spin_lock_irq(&rq->lock);
6071 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006072 struct migration_req *req;
6073
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006075 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076 list_del_init(&req->list);
6077 complete(&req->done);
6078 }
6079 spin_unlock_irq(&rq->lock);
6080 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006081
Gregory Haskins08f503b2008-03-10 17:59:11 -04006082 case CPU_DYING:
6083 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006084 /* Update our root-domain */
6085 rq = cpu_rq(cpu);
6086 spin_lock_irqsave(&rq->lock, flags);
6087 if (rq->rd) {
6088 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6089 cpu_clear(cpu, rq->rd->online);
6090 }
6091 spin_unlock_irqrestore(&rq->lock, flags);
6092 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093#endif
6094 }
6095 return NOTIFY_OK;
6096}
6097
6098/* Register at highest priority so that task migration (migrate_all_tasks)
6099 * happens before everything else.
6100 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006101static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102 .notifier_call = migration_call,
6103 .priority = 10
6104};
6105
Adrian Bunke6fe6642007-11-09 22:39:39 +01006106void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107{
6108 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006109 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006110
6111 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006112 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6113 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6115 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116}
6117#endif
6118
6119#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006120
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006121#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006122
Mike Travis7c16ec52008-04-04 18:11:11 -07006123static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6124 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006125{
6126 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006127 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006128
Mike Travis434d53b2008-04-04 18:11:04 -07006129 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006130 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006131
6132 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6133
6134 if (!(sd->flags & SD_LOAD_BALANCE)) {
6135 printk("does not load-balance\n");
6136 if (sd->parent)
6137 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6138 " has parent");
6139 return -1;
6140 }
6141
6142 printk(KERN_CONT "span %s\n", str);
6143
6144 if (!cpu_isset(cpu, sd->span)) {
6145 printk(KERN_ERR "ERROR: domain->span does not contain "
6146 "CPU%d\n", cpu);
6147 }
6148 if (!cpu_isset(cpu, group->cpumask)) {
6149 printk(KERN_ERR "ERROR: domain->groups does not contain"
6150 " CPU%d\n", cpu);
6151 }
6152
6153 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6154 do {
6155 if (!group) {
6156 printk("\n");
6157 printk(KERN_ERR "ERROR: group is NULL\n");
6158 break;
6159 }
6160
6161 if (!group->__cpu_power) {
6162 printk(KERN_CONT "\n");
6163 printk(KERN_ERR "ERROR: domain->cpu_power not "
6164 "set\n");
6165 break;
6166 }
6167
6168 if (!cpus_weight(group->cpumask)) {
6169 printk(KERN_CONT "\n");
6170 printk(KERN_ERR "ERROR: empty group\n");
6171 break;
6172 }
6173
Mike Travis7c16ec52008-04-04 18:11:11 -07006174 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006175 printk(KERN_CONT "\n");
6176 printk(KERN_ERR "ERROR: repeated CPUs\n");
6177 break;
6178 }
6179
Mike Travis7c16ec52008-04-04 18:11:11 -07006180 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006181
Mike Travis434d53b2008-04-04 18:11:04 -07006182 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006183 printk(KERN_CONT " %s", str);
6184
6185 group = group->next;
6186 } while (group != sd->groups);
6187 printk(KERN_CONT "\n");
6188
Mike Travis7c16ec52008-04-04 18:11:11 -07006189 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006190 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6191
Mike Travis7c16ec52008-04-04 18:11:11 -07006192 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006193 printk(KERN_ERR "ERROR: parent span is not a superset "
6194 "of domain->span\n");
6195 return 0;
6196}
6197
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198static void sched_domain_debug(struct sched_domain *sd, int cpu)
6199{
Mike Travis7c16ec52008-04-04 18:11:11 -07006200 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201 int level = 0;
6202
Nick Piggin41c7ce92005-06-25 14:57:24 -07006203 if (!sd) {
6204 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6205 return;
6206 }
6207
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6209
Mike Travis7c16ec52008-04-04 18:11:11 -07006210 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6211 if (!groupmask) {
6212 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6213 return;
6214 }
6215
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006216 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006217 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219 level++;
6220 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006221 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006222 break;
6223 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006224 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225}
6226#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006227# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228#endif
6229
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006230static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006231{
6232 if (cpus_weight(sd->span) == 1)
6233 return 1;
6234
6235 /* Following flags need at least 2 groups */
6236 if (sd->flags & (SD_LOAD_BALANCE |
6237 SD_BALANCE_NEWIDLE |
6238 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006239 SD_BALANCE_EXEC |
6240 SD_SHARE_CPUPOWER |
6241 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006242 if (sd->groups != sd->groups->next)
6243 return 0;
6244 }
6245
6246 /* Following flags don't use groups */
6247 if (sd->flags & (SD_WAKE_IDLE |
6248 SD_WAKE_AFFINE |
6249 SD_WAKE_BALANCE))
6250 return 0;
6251
6252 return 1;
6253}
6254
Ingo Molnar48f24c42006-07-03 00:25:40 -07006255static int
6256sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006257{
6258 unsigned long cflags = sd->flags, pflags = parent->flags;
6259
6260 if (sd_degenerate(parent))
6261 return 1;
6262
6263 if (!cpus_equal(sd->span, parent->span))
6264 return 0;
6265
6266 /* Does parent contain flags not in child? */
6267 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6268 if (cflags & SD_WAKE_AFFINE)
6269 pflags &= ~SD_WAKE_BALANCE;
6270 /* Flags needing groups don't count if only 1 group in parent */
6271 if (parent->groups == parent->groups->next) {
6272 pflags &= ~(SD_LOAD_BALANCE |
6273 SD_BALANCE_NEWIDLE |
6274 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006275 SD_BALANCE_EXEC |
6276 SD_SHARE_CPUPOWER |
6277 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006278 }
6279 if (~cflags & pflags)
6280 return 0;
6281
6282 return 1;
6283}
6284
Gregory Haskins57d885f2008-01-25 21:08:18 +01006285static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6286{
6287 unsigned long flags;
6288 const struct sched_class *class;
6289
6290 spin_lock_irqsave(&rq->lock, flags);
6291
6292 if (rq->rd) {
6293 struct root_domain *old_rd = rq->rd;
6294
Ingo Molnar0eab9142008-01-25 21:08:19 +01006295 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006296 if (class->leave_domain)
6297 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006298 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006299
Gregory Haskinsdc938522008-01-25 21:08:26 +01006300 cpu_clear(rq->cpu, old_rd->span);
6301 cpu_clear(rq->cpu, old_rd->online);
6302
Gregory Haskins57d885f2008-01-25 21:08:18 +01006303 if (atomic_dec_and_test(&old_rd->refcount))
6304 kfree(old_rd);
6305 }
6306
6307 atomic_inc(&rd->refcount);
6308 rq->rd = rd;
6309
Gregory Haskinsdc938522008-01-25 21:08:26 +01006310 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006311 if (cpu_isset(rq->cpu, cpu_online_map))
6312 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006313
Ingo Molnar0eab9142008-01-25 21:08:19 +01006314 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006315 if (class->join_domain)
6316 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006317 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006318
6319 spin_unlock_irqrestore(&rq->lock, flags);
6320}
6321
Gregory Haskinsdc938522008-01-25 21:08:26 +01006322static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006323{
6324 memset(rd, 0, sizeof(*rd));
6325
Gregory Haskinsdc938522008-01-25 21:08:26 +01006326 cpus_clear(rd->span);
6327 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006328}
6329
6330static void init_defrootdomain(void)
6331{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006332 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006333 atomic_set(&def_root_domain.refcount, 1);
6334}
6335
Gregory Haskinsdc938522008-01-25 21:08:26 +01006336static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006337{
6338 struct root_domain *rd;
6339
6340 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6341 if (!rd)
6342 return NULL;
6343
Gregory Haskinsdc938522008-01-25 21:08:26 +01006344 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006345
6346 return rd;
6347}
6348
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006350 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351 * hold the hotplug lock.
6352 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006353static void
6354cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006356 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006357 struct sched_domain *tmp;
6358
6359 /* Remove the sched domains which do not contribute to scheduling. */
6360 for (tmp = sd; tmp; tmp = tmp->parent) {
6361 struct sched_domain *parent = tmp->parent;
6362 if (!parent)
6363 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006364 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006365 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006366 if (parent->parent)
6367 parent->parent->child = tmp;
6368 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006369 }
6370
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006371 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006372 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006373 if (sd)
6374 sd->child = NULL;
6375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376
6377 sched_domain_debug(sd, cpu);
6378
Gregory Haskins57d885f2008-01-25 21:08:18 +01006379 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006380 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381}
6382
6383/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006384static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385
6386/* Setup the mask of cpus configured for isolated domains */
6387static int __init isolated_cpu_setup(char *str)
6388{
6389 int ints[NR_CPUS], i;
6390
6391 str = get_options(str, ARRAY_SIZE(ints), ints);
6392 cpus_clear(cpu_isolated_map);
6393 for (i = 1; i <= ints[0]; i++)
6394 if (ints[i] < NR_CPUS)
6395 cpu_set(ints[i], cpu_isolated_map);
6396 return 1;
6397}
6398
Ingo Molnar8927f492007-10-15 17:00:13 +02006399__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400
6401/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006402 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6403 * to a function which identifies what group(along with sched group) a CPU
6404 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6405 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406 *
6407 * init_sched_build_groups will build a circular linked list of the groups
6408 * covered by the given span, and will set each group's ->cpumask correctly,
6409 * and ->cpu_power to 0.
6410 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006411static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006412init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006413 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006414 struct sched_group **sg,
6415 cpumask_t *tmpmask),
6416 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417{
6418 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419 int i;
6420
Mike Travis7c16ec52008-04-04 18:11:11 -07006421 cpus_clear(*covered);
6422
6423 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006424 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006425 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426 int j;
6427
Mike Travis7c16ec52008-04-04 18:11:11 -07006428 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429 continue;
6430
Mike Travis7c16ec52008-04-04 18:11:11 -07006431 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006432 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433
Mike Travis7c16ec52008-04-04 18:11:11 -07006434 for_each_cpu_mask(j, *span) {
6435 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436 continue;
6437
Mike Travis7c16ec52008-04-04 18:11:11 -07006438 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439 cpu_set(j, sg->cpumask);
6440 }
6441 if (!first)
6442 first = sg;
6443 if (last)
6444 last->next = sg;
6445 last = sg;
6446 }
6447 last->next = first;
6448}
6449
John Hawkes9c1cfda2005-09-06 15:18:14 -07006450#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451
John Hawkes9c1cfda2005-09-06 15:18:14 -07006452#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006453
John Hawkes9c1cfda2005-09-06 15:18:14 -07006454/**
6455 * find_next_best_node - find the next node to include in a sched_domain
6456 * @node: node whose sched_domain we're building
6457 * @used_nodes: nodes already in the sched_domain
6458 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006459 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006460 * finds the closest node not already in the @used_nodes map.
6461 *
6462 * Should use nodemask_t.
6463 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006464static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006465{
6466 int i, n, val, min_val, best_node = 0;
6467
6468 min_val = INT_MAX;
6469
6470 for (i = 0; i < MAX_NUMNODES; i++) {
6471 /* Start at @node */
6472 n = (node + i) % MAX_NUMNODES;
6473
6474 if (!nr_cpus_node(n))
6475 continue;
6476
6477 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006478 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006479 continue;
6480
6481 /* Simple min distance search */
6482 val = node_distance(node, n);
6483
6484 if (val < min_val) {
6485 min_val = val;
6486 best_node = n;
6487 }
6488 }
6489
Mike Travisc5f59f02008-04-04 18:11:10 -07006490 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006491 return best_node;
6492}
6493
6494/**
6495 * sched_domain_node_span - get a cpumask for a node's sched_domain
6496 * @node: node whose cpumask we're constructing
John Hawkes9c1cfda2005-09-06 15:18:14 -07006497 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006498 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006499 * should be one that prevents unnecessary balancing, but also spreads tasks
6500 * out optimally.
6501 */
Mike Travis4bdbaad32008-04-15 16:35:52 -07006502static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006503{
Mike Travisc5f59f02008-04-04 18:11:10 -07006504 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07006505 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006506 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006507
Mike Travis4bdbaad32008-04-15 16:35:52 -07006508 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07006509 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006510
Mike Travis4bdbaad32008-04-15 16:35:52 -07006511 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07006512 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006513
6514 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07006515 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006516
Mike Travisc5f59f02008-04-04 18:11:10 -07006517 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad32008-04-15 16:35:52 -07006518 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006519 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006520}
6521#endif
6522
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006523int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006524
John Hawkes9c1cfda2005-09-06 15:18:14 -07006525/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006526 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006527 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528#ifdef CONFIG_SCHED_SMT
6529static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006530static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006531
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006532static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006533cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6534 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006536 if (sg)
6537 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538 return cpu;
6539}
6540#endif
6541
Ingo Molnar48f24c42006-07-03 00:25:40 -07006542/*
6543 * multi-core sched-domains:
6544 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006545#ifdef CONFIG_SCHED_MC
6546static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006547static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006548#endif
6549
6550#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006551static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006552cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6553 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006554{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006555 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07006556
6557 *mask = per_cpu(cpu_sibling_map, cpu);
6558 cpus_and(*mask, *mask, *cpu_map);
6559 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006560 if (sg)
6561 *sg = &per_cpu(sched_group_core, group);
6562 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006563}
6564#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006565static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006566cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6567 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006568{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006569 if (sg)
6570 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006571 return cpu;
6572}
6573#endif
6574
Linus Torvalds1da177e2005-04-16 15:20:36 -07006575static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006576static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006577
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006578static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006579cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6580 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006582 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006583#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07006584 *mask = cpu_coregroup_map(cpu);
6585 cpus_and(*mask, *mask, *cpu_map);
6586 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006587#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07006588 *mask = per_cpu(cpu_sibling_map, cpu);
6589 cpus_and(*mask, *mask, *cpu_map);
6590 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006592 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006594 if (sg)
6595 *sg = &per_cpu(sched_group_phys, group);
6596 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597}
6598
6599#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006600/*
6601 * The init_sched_build_groups can't handle what we want to do with node
6602 * groups, so roll our own. Now each node has its own list of groups which
6603 * gets dynamically allocated.
6604 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07006606static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006607
6608static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006609static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006610
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006611static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006612 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006614 int group;
6615
Mike Travis7c16ec52008-04-04 18:11:11 -07006616 *nodemask = node_to_cpumask(cpu_to_node(cpu));
6617 cpus_and(*nodemask, *nodemask, *cpu_map);
6618 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006619
6620 if (sg)
6621 *sg = &per_cpu(sched_group_allnodes, group);
6622 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006624
Siddha, Suresh B08069032006-03-27 01:15:23 -08006625static void init_numa_sched_groups_power(struct sched_group *group_head)
6626{
6627 struct sched_group *sg = group_head;
6628 int j;
6629
6630 if (!sg)
6631 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006632 do {
6633 for_each_cpu_mask(j, sg->cpumask) {
6634 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006635
Andi Kleen3a5c3592007-10-15 17:00:14 +02006636 sd = &per_cpu(phys_domains, j);
6637 if (j != first_cpu(sd->groups->cpumask)) {
6638 /*
6639 * Only add "power" once for each
6640 * physical package.
6641 */
6642 continue;
6643 }
6644
6645 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006646 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006647 sg = sg->next;
6648 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006649}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650#endif
6651
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006652#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006653/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07006654static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006655{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006656 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006657
6658 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006659 struct sched_group **sched_group_nodes
6660 = sched_group_nodes_bycpu[cpu];
6661
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006662 if (!sched_group_nodes)
6663 continue;
6664
6665 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006666 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6667
Mike Travis7c16ec52008-04-04 18:11:11 -07006668 *nodemask = node_to_cpumask(i);
6669 cpus_and(*nodemask, *nodemask, *cpu_map);
6670 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006671 continue;
6672
6673 if (sg == NULL)
6674 continue;
6675 sg = sg->next;
6676next_sg:
6677 oldsg = sg;
6678 sg = sg->next;
6679 kfree(oldsg);
6680 if (oldsg != sched_group_nodes[i])
6681 goto next_sg;
6682 }
6683 kfree(sched_group_nodes);
6684 sched_group_nodes_bycpu[cpu] = NULL;
6685 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006686}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006687#else
Mike Travis7c16ec52008-04-04 18:11:11 -07006688static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006689{
6690}
6691#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006692
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006694 * Initialize sched groups cpu_power.
6695 *
6696 * cpu_power indicates the capacity of sched group, which is used while
6697 * distributing the load between different sched groups in a sched domain.
6698 * Typically cpu_power for all the groups in a sched domain will be same unless
6699 * there are asymmetries in the topology. If there are asymmetries, group
6700 * having more cpu_power will pickup more load compared to the group having
6701 * less cpu_power.
6702 *
6703 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6704 * the maximum number of tasks a group can handle in the presence of other idle
6705 * or lightly loaded groups in the same sched domain.
6706 */
6707static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6708{
6709 struct sched_domain *child;
6710 struct sched_group *group;
6711
6712 WARN_ON(!sd || !sd->groups);
6713
6714 if (cpu != first_cpu(sd->groups->cpumask))
6715 return;
6716
6717 child = sd->child;
6718
Eric Dumazet5517d862007-05-08 00:32:57 -07006719 sd->groups->__cpu_power = 0;
6720
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006721 /*
6722 * For perf policy, if the groups in child domain share resources
6723 * (for example cores sharing some portions of the cache hierarchy
6724 * or SMT), then set this domain groups cpu_power such that each group
6725 * can handle only one task, when there are other idle groups in the
6726 * same sched domain.
6727 */
6728 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6729 (child->flags &
6730 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006731 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006732 return;
6733 }
6734
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006735 /*
6736 * add cpu_power of each child group to this groups cpu_power
6737 */
6738 group = child->groups;
6739 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006740 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006741 group = group->next;
6742 } while (group != child->groups);
6743}
6744
6745/*
Mike Travis7c16ec52008-04-04 18:11:11 -07006746 * Initializers for schedule domains
6747 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
6748 */
6749
6750#define SD_INIT(sd, type) sd_init_##type(sd)
6751#define SD_INIT_FUNC(type) \
6752static noinline void sd_init_##type(struct sched_domain *sd) \
6753{ \
6754 memset(sd, 0, sizeof(*sd)); \
6755 *sd = SD_##type##_INIT; \
6756}
6757
6758SD_INIT_FUNC(CPU)
6759#ifdef CONFIG_NUMA
6760 SD_INIT_FUNC(ALLNODES)
6761 SD_INIT_FUNC(NODE)
6762#endif
6763#ifdef CONFIG_SCHED_SMT
6764 SD_INIT_FUNC(SIBLING)
6765#endif
6766#ifdef CONFIG_SCHED_MC
6767 SD_INIT_FUNC(MC)
6768#endif
6769
6770/*
6771 * To minimize stack usage kmalloc room for cpumasks and share the
6772 * space as the usage in build_sched_domains() dictates. Used only
6773 * if the amount of space is significant.
6774 */
6775struct allmasks {
6776 cpumask_t tmpmask; /* make this one first */
6777 union {
6778 cpumask_t nodemask;
6779 cpumask_t this_sibling_map;
6780 cpumask_t this_core_map;
6781 };
6782 cpumask_t send_covered;
6783
6784#ifdef CONFIG_NUMA
6785 cpumask_t domainspan;
6786 cpumask_t covered;
6787 cpumask_t notcovered;
6788#endif
6789};
6790
6791#if NR_CPUS > 128
6792#define SCHED_CPUMASK_ALLOC 1
6793#define SCHED_CPUMASK_FREE(v) kfree(v)
6794#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
6795#else
6796#define SCHED_CPUMASK_ALLOC 0
6797#define SCHED_CPUMASK_FREE(v)
6798#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
6799#endif
6800
6801#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
6802 ((unsigned long)(a) + offsetof(struct allmasks, v))
6803
6804/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006805 * Build sched domains for a given set of cpus and attach the sched domains
6806 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006808static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809{
6810 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006811 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006812 SCHED_CPUMASK_DECLARE(allmasks);
6813 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07006814#ifdef CONFIG_NUMA
6815 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006816 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006817
6818 /*
6819 * Allocate the per-node list of sched groups
6820 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006821 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006822 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006823 if (!sched_group_nodes) {
6824 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006825 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006826 }
John Hawkesd1b55132005-09-06 15:18:14 -07006827#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828
Gregory Haskinsdc938522008-01-25 21:08:26 +01006829 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006830 if (!rd) {
6831 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07006832#ifdef CONFIG_NUMA
6833 kfree(sched_group_nodes);
6834#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006835 return -ENOMEM;
6836 }
6837
Mike Travis7c16ec52008-04-04 18:11:11 -07006838#if SCHED_CPUMASK_ALLOC
6839 /* get space for all scratch cpumask variables */
6840 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
6841 if (!allmasks) {
6842 printk(KERN_WARNING "Cannot alloc cpumask array\n");
6843 kfree(rd);
6844#ifdef CONFIG_NUMA
6845 kfree(sched_group_nodes);
6846#endif
6847 return -ENOMEM;
6848 }
6849#endif
6850 tmpmask = (cpumask_t *)allmasks;
6851
6852
6853#ifdef CONFIG_NUMA
6854 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6855#endif
6856
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006858 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006860 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006861 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07006862 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863
Mike Travis7c16ec52008-04-04 18:11:11 -07006864 *nodemask = node_to_cpumask(cpu_to_node(i));
6865 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866
6867#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006868 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07006869 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006870 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006871 SD_INIT(sd, ALLNODES);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006872 sd->span = *cpu_map;
Mike Travis7c16ec52008-04-04 18:11:11 -07006873 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006874 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006875 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006876 } else
6877 p = NULL;
6878
Linus Torvalds1da177e2005-04-16 15:20:36 -07006879 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006880 SD_INIT(sd, NODE);
Mike Travis4bdbaad32008-04-15 16:35:52 -07006881 sched_domain_node_span(cpu_to_node(i), &sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006882 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006883 if (p)
6884 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006885 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006886#endif
6887
6888 p = sd;
6889 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006890 SD_INIT(sd, CPU);
6891 sd->span = *nodemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006893 if (p)
6894 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006895 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006897#ifdef CONFIG_SCHED_MC
6898 p = sd;
6899 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006900 SD_INIT(sd, MC);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006901 sd->span = cpu_coregroup_map(i);
6902 cpus_and(sd->span, sd->span, *cpu_map);
6903 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006904 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006905 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006906#endif
6907
Linus Torvalds1da177e2005-04-16 15:20:36 -07006908#ifdef CONFIG_SCHED_SMT
6909 p = sd;
6910 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006911 SD_INIT(sd, SIBLING);
Mike Travisd5a74302007-10-16 01:24:05 -07006912 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006913 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006914 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006915 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006916 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917#endif
6918 }
6919
6920#ifdef CONFIG_SCHED_SMT
6921 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006922 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006923 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
6924 SCHED_CPUMASK_VAR(send_covered, allmasks);
6925
6926 *this_sibling_map = per_cpu(cpu_sibling_map, i);
6927 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
6928 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006929 continue;
6930
Ingo Molnardd41f592007-07-09 18:51:59 +02006931 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006932 &cpu_to_cpu_group,
6933 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934 }
6935#endif
6936
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006937#ifdef CONFIG_SCHED_MC
6938 /* Set up multi-core groups */
6939 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006940 SCHED_CPUMASK_VAR(this_core_map, allmasks);
6941 SCHED_CPUMASK_VAR(send_covered, allmasks);
6942
6943 *this_core_map = cpu_coregroup_map(i);
6944 cpus_and(*this_core_map, *this_core_map, *cpu_map);
6945 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006946 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07006947
Ingo Molnardd41f592007-07-09 18:51:59 +02006948 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006949 &cpu_to_core_group,
6950 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006951 }
6952#endif
6953
Linus Torvalds1da177e2005-04-16 15:20:36 -07006954 /* Set up physical groups */
6955 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006956 SCHED_CPUMASK_VAR(nodemask, allmasks);
6957 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958
Mike Travis7c16ec52008-04-04 18:11:11 -07006959 *nodemask = node_to_cpumask(i);
6960 cpus_and(*nodemask, *nodemask, *cpu_map);
6961 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962 continue;
6963
Mike Travis7c16ec52008-04-04 18:11:11 -07006964 init_sched_build_groups(nodemask, cpu_map,
6965 &cpu_to_phys_group,
6966 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006967 }
6968
6969#ifdef CONFIG_NUMA
6970 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07006971 if (sd_allnodes) {
6972 SCHED_CPUMASK_VAR(send_covered, allmasks);
6973
6974 init_sched_build_groups(cpu_map, cpu_map,
6975 &cpu_to_allnodes_group,
6976 send_covered, tmpmask);
6977 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006978
6979 for (i = 0; i < MAX_NUMNODES; i++) {
6980 /* Set up node groups */
6981 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07006982 SCHED_CPUMASK_VAR(nodemask, allmasks);
6983 SCHED_CPUMASK_VAR(domainspan, allmasks);
6984 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006985 int j;
6986
Mike Travis7c16ec52008-04-04 18:11:11 -07006987 *nodemask = node_to_cpumask(i);
6988 cpus_clear(*covered);
6989
6990 cpus_and(*nodemask, *nodemask, *cpu_map);
6991 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07006992 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006993 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006994 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006995
Mike Travis4bdbaad32008-04-15 16:35:52 -07006996 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07006997 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006998
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006999 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007000 if (!sg) {
7001 printk(KERN_WARNING "Can not alloc domain group for "
7002 "node %d\n", i);
7003 goto error;
7004 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007005 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007006 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007007 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007008
John Hawkes9c1cfda2005-09-06 15:18:14 -07007009 sd = &per_cpu(node_domains, j);
7010 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007011 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007012 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007013 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007014 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007015 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007016 prev = sg;
7017
7018 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007019 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007020 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007021 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007022
Mike Travis7c16ec52008-04-04 18:11:11 -07007023 cpus_complement(*notcovered, *covered);
7024 cpus_and(*tmpmask, *notcovered, *cpu_map);
7025 cpus_and(*tmpmask, *tmpmask, *domainspan);
7026 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007027 break;
7028
Mike Travis7c16ec52008-04-04 18:11:11 -07007029 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7030 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007031 continue;
7032
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007033 sg = kmalloc_node(sizeof(struct sched_group),
7034 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007035 if (!sg) {
7036 printk(KERN_WARNING
7037 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007038 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007039 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007040 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007041 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007042 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007043 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007044 prev->next = sg;
7045 prev = sg;
7046 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048#endif
7049
7050 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007051#ifdef CONFIG_SCHED_SMT
7052 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007053 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7054
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007055 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007056 }
7057#endif
7058#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007059 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007060 struct sched_domain *sd = &per_cpu(core_domains, i);
7061
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007062 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007063 }
7064#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007066 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007067 struct sched_domain *sd = &per_cpu(phys_domains, i);
7068
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007069 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070 }
7071
John Hawkes9c1cfda2005-09-06 15:18:14 -07007072#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007073 for (i = 0; i < MAX_NUMNODES; i++)
7074 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007075
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007076 if (sd_allnodes) {
7077 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007078
Mike Travis7c16ec52008-04-04 18:11:11 -07007079 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7080 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007081 init_numa_sched_groups_power(sg);
7082 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007083#endif
7084
Linus Torvalds1da177e2005-04-16 15:20:36 -07007085 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007086 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087 struct sched_domain *sd;
7088#ifdef CONFIG_SCHED_SMT
7089 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007090#elif defined(CONFIG_SCHED_MC)
7091 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007092#else
7093 sd = &per_cpu(phys_domains, i);
7094#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007095 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007097
Mike Travis7c16ec52008-04-04 18:11:11 -07007098 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007099 return 0;
7100
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007101#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007102error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007103 free_sched_groups(cpu_map, tmpmask);
7104 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007105 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007106#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107}
Paul Jackson029190c2007-10-18 23:40:20 -07007108
7109static cpumask_t *doms_cur; /* current sched domains */
7110static int ndoms_cur; /* number of sched domains in 'doms_cur' */
7111
7112/*
7113 * Special case: If a kmalloc of a doms_cur partition (array of
7114 * cpumask_t) fails, then fallback to a single sched domain,
7115 * as determined by the single cpumask_t fallback_doms.
7116 */
7117static cpumask_t fallback_doms;
7118
Heiko Carstens22e52b02008-03-12 18:31:59 +01007119void __attribute__((weak)) arch_update_cpu_topology(void)
7120{
7121}
7122
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007123/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007124 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007125 * For now this just excludes isolated cpus, but could be used to
7126 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007127 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007128static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007129{
Milton Miller73785472007-10-24 18:23:48 +02007130 int err;
7131
Heiko Carstens22e52b02008-03-12 18:31:59 +01007132 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007133 ndoms_cur = 1;
7134 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7135 if (!doms_cur)
7136 doms_cur = &fallback_doms;
7137 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Milton Miller73785472007-10-24 18:23:48 +02007138 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007139 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007140
7141 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007142}
7143
Mike Travis7c16ec52008-04-04 18:11:11 -07007144static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7145 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007146{
Mike Travis7c16ec52008-04-04 18:11:11 -07007147 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007148}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007150/*
7151 * Detach sched domains from a group of cpus specified in cpu_map
7152 * These cpus will now be attached to the NULL domain
7153 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007154static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007155{
Mike Travis7c16ec52008-04-04 18:11:11 -07007156 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007157 int i;
7158
Milton Miller6382bc92007-10-15 17:00:19 +02007159 unregister_sched_domain_sysctl();
7160
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007161 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007162 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007163 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007164 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007165}
7166
Paul Jackson029190c2007-10-18 23:40:20 -07007167/*
7168 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007169 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007170 * doms_new[] to the current sched domain partitioning, doms_cur[].
7171 * It destroys each deleted domain and builds each new domain.
7172 *
7173 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007174 * The masks don't intersect (don't overlap.) We should setup one
7175 * sched domain for each mask. CPUs not in any of the cpumasks will
7176 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007177 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7178 * it as it is.
7179 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007180 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7181 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007182 * failed the kmalloc call, then it can pass in doms_new == NULL,
7183 * and partition_sched_domains() will fallback to the single partition
7184 * 'fallback_doms'.
7185 *
7186 * Call with hotplug lock held
7187 */
7188void partition_sched_domains(int ndoms_new, cpumask_t *doms_new)
7189{
7190 int i, j;
7191
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007192 lock_doms_cur();
7193
Milton Miller73785472007-10-24 18:23:48 +02007194 /* always unregister in case we don't destroy any domains */
7195 unregister_sched_domain_sysctl();
7196
Paul Jackson029190c2007-10-18 23:40:20 -07007197 if (doms_new == NULL) {
7198 ndoms_new = 1;
7199 doms_new = &fallback_doms;
7200 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
7201 }
7202
7203 /* Destroy deleted domains */
7204 for (i = 0; i < ndoms_cur; i++) {
7205 for (j = 0; j < ndoms_new; j++) {
7206 if (cpus_equal(doms_cur[i], doms_new[j]))
7207 goto match1;
7208 }
7209 /* no match - a current sched domain not in new doms_new[] */
7210 detach_destroy_domains(doms_cur + i);
7211match1:
7212 ;
7213 }
7214
7215 /* Build new domains */
7216 for (i = 0; i < ndoms_new; i++) {
7217 for (j = 0; j < ndoms_cur; j++) {
7218 if (cpus_equal(doms_new[i], doms_cur[j]))
7219 goto match2;
7220 }
7221 /* no match - add a new doms_new */
7222 build_sched_domains(doms_new + i);
7223match2:
7224 ;
7225 }
7226
7227 /* Remember the new sched domains */
7228 if (doms_cur != &fallback_doms)
7229 kfree(doms_cur);
7230 doms_cur = doms_new;
7231 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007232
7233 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007234
7235 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07007236}
7237
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007238#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007239int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007240{
7241 int err;
7242
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007243 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007244 detach_destroy_domains(&cpu_online_map);
7245 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007246 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007247
7248 return err;
7249}
7250
7251static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7252{
7253 int ret;
7254
7255 if (buf[0] != '0' && buf[0] != '1')
7256 return -EINVAL;
7257
7258 if (smt)
7259 sched_smt_power_savings = (buf[0] == '1');
7260 else
7261 sched_mc_power_savings = (buf[0] == '1');
7262
7263 ret = arch_reinit_sched_domains();
7264
7265 return ret ? ret : count;
7266}
7267
Adrian Bunk6707de002007-08-12 18:08:19 +02007268#ifdef CONFIG_SCHED_MC
7269static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7270{
7271 return sprintf(page, "%u\n", sched_mc_power_savings);
7272}
7273static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7274 const char *buf, size_t count)
7275{
7276 return sched_power_savings_store(buf, count, 0);
7277}
7278static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7279 sched_mc_power_savings_store);
7280#endif
7281
7282#ifdef CONFIG_SCHED_SMT
7283static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7284{
7285 return sprintf(page, "%u\n", sched_smt_power_savings);
7286}
7287static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7288 const char *buf, size_t count)
7289{
7290 return sched_power_savings_store(buf, count, 1);
7291}
7292static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7293 sched_smt_power_savings_store);
7294#endif
7295
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007296int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7297{
7298 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007299
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007300#ifdef CONFIG_SCHED_SMT
7301 if (smt_capable())
7302 err = sysfs_create_file(&cls->kset.kobj,
7303 &attr_sched_smt_power_savings.attr);
7304#endif
7305#ifdef CONFIG_SCHED_MC
7306 if (!err && mc_capable())
7307 err = sysfs_create_file(&cls->kset.kobj,
7308 &attr_sched_mc_power_savings.attr);
7309#endif
7310 return err;
7311}
7312#endif
7313
Linus Torvalds1da177e2005-04-16 15:20:36 -07007314/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007315 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007317 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318 * which will prevent rebalancing while the sched domains are recalculated.
7319 */
7320static int update_sched_domains(struct notifier_block *nfb,
7321 unsigned long action, void *hcpu)
7322{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007323 switch (action) {
7324 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007325 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007326 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007327 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007328 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007329 return NOTIFY_OK;
7330
7331 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007332 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007334 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007335 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007336 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007338 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339 /*
7340 * Fall through and re-initialise the domains.
7341 */
7342 break;
7343 default:
7344 return NOTIFY_DONE;
7345 }
7346
7347 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007348 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349
7350 return NOTIFY_OK;
7351}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007352
7353void __init sched_init_smp(void)
7354{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007355 cpumask_t non_isolated_cpus;
7356
Mike Travis434d53b2008-04-04 18:11:04 -07007357#if defined(CONFIG_NUMA)
7358 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7359 GFP_KERNEL);
7360 BUG_ON(sched_group_nodes_bycpu == NULL);
7361#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007362 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007363 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007364 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007365 if (cpus_empty(non_isolated_cpus))
7366 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007367 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007368 /* XXX: Theoretical race here - CPU may be hotplugged now */
7369 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007370
7371 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007372 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007373 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007374 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007375}
7376#else
7377void __init sched_init_smp(void)
7378{
Mike Travis434d53b2008-04-04 18:11:04 -07007379#if defined(CONFIG_NUMA)
7380 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7381 GFP_KERNEL);
7382 BUG_ON(sched_group_nodes_bycpu == NULL);
7383#endif
Ingo Molnar19978ca2007-11-09 22:39:38 +01007384 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385}
7386#endif /* CONFIG_SMP */
7387
7388int in_sched_functions(unsigned long addr)
7389{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007390 return in_lock_functions(addr) ||
7391 (addr >= (unsigned long)__sched_text_start
7392 && addr < (unsigned long)__sched_text_end);
7393}
7394
Alexey Dobriyana9957442007-10-15 17:00:13 +02007395static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007396{
7397 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02007398#ifdef CONFIG_FAIR_GROUP_SCHED
7399 cfs_rq->rq = rq;
7400#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007401 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007402}
7403
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007404static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7405{
7406 struct rt_prio_array *array;
7407 int i;
7408
7409 array = &rt_rq->active;
7410 for (i = 0; i < MAX_RT_PRIO; i++) {
7411 INIT_LIST_HEAD(array->queue + i);
7412 __clear_bit(i, array->bitmap);
7413 }
7414 /* delimiter for bitsearch: */
7415 __set_bit(MAX_RT_PRIO, array->bitmap);
7416
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007417#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007418 rt_rq->highest_prio = MAX_RT_PRIO;
7419#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007420#ifdef CONFIG_SMP
7421 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007422 rt_rq->overloaded = 0;
7423#endif
7424
7425 rt_rq->rt_time = 0;
7426 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007427 rt_rq->rt_runtime = 0;
7428 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007429
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007430#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007431 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007432 rt_rq->rq = rq;
7433#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007434}
7435
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007436#ifdef CONFIG_FAIR_GROUP_SCHED
7437static void init_tg_cfs_entry(struct rq *rq, struct task_group *tg,
7438 struct cfs_rq *cfs_rq, struct sched_entity *se,
7439 int cpu, int add)
7440{
7441 tg->cfs_rq[cpu] = cfs_rq;
7442 init_cfs_rq(cfs_rq, rq);
7443 cfs_rq->tg = tg;
7444 if (add)
7445 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7446
7447 tg->se[cpu] = se;
7448 se->cfs_rq = &rq->cfs;
7449 se->my_q = cfs_rq;
7450 se->load.weight = tg->shares;
7451 se->load.inv_weight = div64_64(1ULL<<32, se->load.weight);
7452 se->parent = NULL;
7453}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007454#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007455
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007456#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007457static void init_tg_rt_entry(struct rq *rq, struct task_group *tg,
7458 struct rt_rq *rt_rq, struct sched_rt_entity *rt_se,
7459 int cpu, int add)
7460{
7461 tg->rt_rq[cpu] = rt_rq;
7462 init_rt_rq(rt_rq, rq);
7463 rt_rq->tg = tg;
7464 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007465 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007466 if (add)
7467 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7468
7469 tg->rt_se[cpu] = rt_se;
7470 rt_se->rt_rq = &rq->rt;
7471 rt_se->my_q = rt_rq;
7472 rt_se->parent = NULL;
7473 INIT_LIST_HEAD(&rt_se->run_list);
7474}
7475#endif
7476
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477void __init sched_init(void)
7478{
Ingo Molnardd41f592007-07-09 18:51:59 +02007479 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07007480 unsigned long alloc_size = 0, ptr;
7481
7482#ifdef CONFIG_FAIR_GROUP_SCHED
7483 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7484#endif
7485#ifdef CONFIG_RT_GROUP_SCHED
7486 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7487#endif
7488 /*
7489 * As sched_init() is called before page_alloc is setup,
7490 * we use alloc_bootmem().
7491 */
7492 if (alloc_size) {
7493 ptr = (unsigned long)alloc_bootmem_low(alloc_size);
7494
7495#ifdef CONFIG_FAIR_GROUP_SCHED
7496 init_task_group.se = (struct sched_entity **)ptr;
7497 ptr += nr_cpu_ids * sizeof(void **);
7498
7499 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
7500 ptr += nr_cpu_ids * sizeof(void **);
7501#endif
7502#ifdef CONFIG_RT_GROUP_SCHED
7503 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
7504 ptr += nr_cpu_ids * sizeof(void **);
7505
7506 init_task_group.rt_rq = (struct rt_rq **)ptr;
7507#endif
7508 }
Ingo Molnardd41f592007-07-09 18:51:59 +02007509
Gregory Haskins57d885f2008-01-25 21:08:18 +01007510#ifdef CONFIG_SMP
7511 init_defrootdomain();
7512#endif
7513
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007514 init_rt_bandwidth(&def_rt_bandwidth,
7515 global_rt_period(), global_rt_runtime());
7516
7517#ifdef CONFIG_RT_GROUP_SCHED
7518 init_rt_bandwidth(&init_task_group.rt_bandwidth,
7519 global_rt_period(), global_rt_runtime());
7520#endif
7521
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007522#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007523 list_add(&init_task_group.list, &task_groups);
7524#endif
7525
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007526 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007527 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528
7529 rq = cpu_rq(i);
7530 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007531 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007532 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007533 rq->clock = 1;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02007534 update_last_tick_seen(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02007535 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007536 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007537#ifdef CONFIG_FAIR_GROUP_SCHED
7538 init_task_group.shares = init_task_group_load;
7539 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
7540 init_tg_cfs_entry(rq, &init_task_group,
7541 &per_cpu(init_cfs_rq, i),
7542 &per_cpu(init_sched_entity, i), i, 1);
7543
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007544#endif
7545#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007546 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
7547 init_tg_rt_entry(rq, &init_task_group,
7548 &per_cpu(init_rt_rq, i),
7549 &per_cpu(init_sched_rt_entity, i), i, 1);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007550#else
7551 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007552#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007553
Ingo Molnardd41f592007-07-09 18:51:59 +02007554 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7555 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007556#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007557 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007558 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007560 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007562 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007563 rq->migration_thread = NULL;
7564 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007565 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007566#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007567 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007568 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569 }
7570
Peter Williams2dd73a42006-06-27 02:54:34 -07007571 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007572
Avi Kivitye107be32007-07-26 13:40:43 +02007573#ifdef CONFIG_PREEMPT_NOTIFIERS
7574 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7575#endif
7576
Christoph Lameterc9819f42006-12-10 02:20:25 -08007577#ifdef CONFIG_SMP
7578 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7579#endif
7580
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007581#ifdef CONFIG_RT_MUTEXES
7582 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7583#endif
7584
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585 /*
7586 * The boot idle thread does lazy MMU switching as well:
7587 */
7588 atomic_inc(&init_mm.mm_count);
7589 enter_lazy_tlb(&init_mm, current);
7590
7591 /*
7592 * Make us the idle thread. Technically, schedule() should not be
7593 * called from this thread, however somewhere below it might be,
7594 * but because we are the idle thread, we just pick up running again
7595 * when this runqueue becomes "idle".
7596 */
7597 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02007598 /*
7599 * During early bootup we pretend to be a normal task:
7600 */
7601 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007602
7603 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007604}
7605
7606#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7607void __might_sleep(char *file, int line)
7608{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007609#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610 static unsigned long prev_jiffy; /* ratelimiting */
7611
7612 if ((in_atomic() || irqs_disabled()) &&
7613 system_state == SYSTEM_RUNNING && !oops_in_progress) {
7614 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7615 return;
7616 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08007617 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007618 " context at %s:%d\n", file, line);
7619 printk("in_atomic():%d, irqs_disabled():%d\n",
7620 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007621 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007622 if (irqs_disabled())
7623 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007624 dump_stack();
7625 }
7626#endif
7627}
7628EXPORT_SYMBOL(__might_sleep);
7629#endif
7630
7631#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007632static void normalize_task(struct rq *rq, struct task_struct *p)
7633{
7634 int on_rq;
7635 update_rq_clock(rq);
7636 on_rq = p->se.on_rq;
7637 if (on_rq)
7638 deactivate_task(rq, p, 0);
7639 __setscheduler(rq, p, SCHED_NORMAL, 0);
7640 if (on_rq) {
7641 activate_task(rq, p, 0);
7642 resched_task(rq->curr);
7643 }
7644}
7645
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646void normalize_rt_tasks(void)
7647{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007648 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007649 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007650 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007652 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007653 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007654 /*
7655 * Only normalize user tasks:
7656 */
7657 if (!p->mm)
7658 continue;
7659
Ingo Molnardd41f592007-07-09 18:51:59 +02007660 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007661#ifdef CONFIG_SCHEDSTATS
7662 p->se.wait_start = 0;
7663 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007664 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007665#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007666 task_rq(p)->clock = 0;
7667
7668 if (!rt_task(p)) {
7669 /*
7670 * Renice negative nice level userspace
7671 * tasks back to 0:
7672 */
7673 if (TASK_NICE(p) < 0 && p->mm)
7674 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007678 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007679 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680
Ingo Molnar178be792007-10-15 17:00:18 +02007681 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007682
Ingo Molnarb29739f2006-06-27 02:54:51 -07007683 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007684 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007685 } while_each_thread(g, p);
7686
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007687 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688}
7689
7690#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007691
7692#ifdef CONFIG_IA64
7693/*
7694 * These functions are only useful for the IA64 MCA handling.
7695 *
7696 * They can only be called when the whole system has been
7697 * stopped - every CPU needs to be quiescent, and no scheduling
7698 * activity can take place. Using them for anything else would
7699 * be a serious bug, and as a result, they aren't even visible
7700 * under any other configuration.
7701 */
7702
7703/**
7704 * curr_task - return the current task for a given cpu.
7705 * @cpu: the processor in question.
7706 *
7707 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7708 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007709struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007710{
7711 return cpu_curr(cpu);
7712}
7713
7714/**
7715 * set_curr_task - set the current task for a given cpu.
7716 * @cpu: the processor in question.
7717 * @p: the task pointer to set.
7718 *
7719 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007720 * are serviced on a separate stack. It allows the architecture to switch the
7721 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007722 * must be called with all CPU's synchronized, and interrupts disabled, the
7723 * and caller must save the original value of the current task (see
7724 * curr_task() above) and restore that value before reenabling interrupts and
7725 * re-starting the system.
7726 *
7727 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7728 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007729void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007730{
7731 cpu_curr(cpu) = p;
7732}
7733
7734#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007735
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007736#ifdef CONFIG_FAIR_GROUP_SCHED
7737static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007738{
7739 int i;
7740
7741 for_each_possible_cpu(i) {
7742 if (tg->cfs_rq)
7743 kfree(tg->cfs_rq[i]);
7744 if (tg->se)
7745 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007746 }
7747
7748 kfree(tg->cfs_rq);
7749 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007750}
7751
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007752static int alloc_fair_sched_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007753{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007754 struct cfs_rq *cfs_rq;
7755 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007756 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007757 int i;
7758
Mike Travis434d53b2008-04-04 18:11:04 -07007759 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007760 if (!tg->cfs_rq)
7761 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07007762 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007763 if (!tg->se)
7764 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007765
7766 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007767
7768 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007769 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007770
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007771 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
7772 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007773 if (!cfs_rq)
7774 goto err;
7775
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007776 se = kmalloc_node(sizeof(struct sched_entity),
7777 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007778 if (!se)
7779 goto err;
7780
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007781 init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007782 }
7783
7784 return 1;
7785
7786 err:
7787 return 0;
7788}
7789
7790static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7791{
7792 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
7793 &cpu_rq(cpu)->leaf_cfs_rq_list);
7794}
7795
7796static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7797{
7798 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
7799}
7800#else
7801static inline void free_fair_sched_group(struct task_group *tg)
7802{
7803}
7804
7805static inline int alloc_fair_sched_group(struct task_group *tg)
7806{
7807 return 1;
7808}
7809
7810static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7811{
7812}
7813
7814static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7815{
7816}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007817#endif
7818
7819#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007820static void free_rt_sched_group(struct task_group *tg)
7821{
7822 int i;
7823
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007824 destroy_rt_bandwidth(&tg->rt_bandwidth);
7825
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007826 for_each_possible_cpu(i) {
7827 if (tg->rt_rq)
7828 kfree(tg->rt_rq[i]);
7829 if (tg->rt_se)
7830 kfree(tg->rt_se[i]);
7831 }
7832
7833 kfree(tg->rt_rq);
7834 kfree(tg->rt_se);
7835}
7836
7837static int alloc_rt_sched_group(struct task_group *tg)
7838{
7839 struct rt_rq *rt_rq;
7840 struct sched_rt_entity *rt_se;
7841 struct rq *rq;
7842 int i;
7843
Mike Travis434d53b2008-04-04 18:11:04 -07007844 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007845 if (!tg->rt_rq)
7846 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07007847 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007848 if (!tg->rt_se)
7849 goto err;
7850
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007851 init_rt_bandwidth(&tg->rt_bandwidth,
7852 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007853
7854 for_each_possible_cpu(i) {
7855 rq = cpu_rq(i);
7856
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007857 rt_rq = kmalloc_node(sizeof(struct rt_rq),
7858 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7859 if (!rt_rq)
7860 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007861
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007862 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
7863 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7864 if (!rt_se)
7865 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007866
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007867 init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007868 }
7869
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007870 return 1;
7871
7872 err:
7873 return 0;
7874}
7875
7876static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7877{
7878 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
7879 &cpu_rq(cpu)->leaf_rt_rq_list);
7880}
7881
7882static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7883{
7884 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
7885}
7886#else
7887static inline void free_rt_sched_group(struct task_group *tg)
7888{
7889}
7890
7891static inline int alloc_rt_sched_group(struct task_group *tg)
7892{
7893 return 1;
7894}
7895
7896static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7897{
7898}
7899
7900static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7901{
7902}
7903#endif
7904
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007905#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007906static void free_sched_group(struct task_group *tg)
7907{
7908 free_fair_sched_group(tg);
7909 free_rt_sched_group(tg);
7910 kfree(tg);
7911}
7912
7913/* allocate runqueue etc for a new task group */
7914struct task_group *sched_create_group(void)
7915{
7916 struct task_group *tg;
7917 unsigned long flags;
7918 int i;
7919
7920 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7921 if (!tg)
7922 return ERR_PTR(-ENOMEM);
7923
7924 if (!alloc_fair_sched_group(tg))
7925 goto err;
7926
7927 if (!alloc_rt_sched_group(tg))
7928 goto err;
7929
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007930 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007931 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007932 register_fair_sched_group(tg, i);
7933 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007934 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007935 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007936 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007937
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007938 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007939
7940err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007941 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007942 return ERR_PTR(-ENOMEM);
7943}
7944
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007945/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007946static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007947{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007948 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007949 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007950}
7951
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007952/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007953void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007954{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007955 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007956 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007957
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007958 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007959 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007960 unregister_fair_sched_group(tg, i);
7961 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007962 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007963 list_del_rcu(&tg->list);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007964 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007965
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007966 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007967 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007968}
7969
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007970/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007971 * The caller of this function should have put the task in its new group
7972 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7973 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007974 */
7975void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007976{
7977 int on_rq, running;
7978 unsigned long flags;
7979 struct rq *rq;
7980
7981 rq = task_rq_lock(tsk, &flags);
7982
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007983 update_rq_clock(rq);
7984
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007985 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007986 on_rq = tsk->se.on_rq;
7987
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007988 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007989 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007990 if (unlikely(running))
7991 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007992
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007993 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007994
Peter Zijlstra810b3812008-02-29 15:21:01 -05007995#ifdef CONFIG_FAIR_GROUP_SCHED
7996 if (tsk->sched_class->moved_group)
7997 tsk->sched_class->moved_group(tsk);
7998#endif
7999
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008000 if (unlikely(running))
8001 tsk->sched_class->set_curr_task(rq);
8002 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008003 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008004
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008005 task_rq_unlock(rq, &flags);
8006}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008007#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008008
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008009#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008010static void set_se_shares(struct sched_entity *se, unsigned long shares)
8011{
8012 struct cfs_rq *cfs_rq = se->cfs_rq;
8013 struct rq *rq = cfs_rq->rq;
8014 int on_rq;
8015
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008016 spin_lock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008017
8018 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008019 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008020 dequeue_entity(cfs_rq, se, 0);
8021
8022 se->load.weight = shares;
8023 se->load.inv_weight = div64_64((1ULL<<32), shares);
8024
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008025 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008026 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008027
8028 spin_unlock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008029}
8030
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008031static DEFINE_MUTEX(shares_mutex);
8032
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008033int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008034{
8035 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008036 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008037
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008038 /*
8039 * A weight of 0 or 1 can cause arithmetics problems.
8040 * (The default weight is 1024 - so there's no practical
8041 * limitation from this.)
8042 */
8043 if (shares < 2)
8044 shares = 2;
8045
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008046 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008047 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008048 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008049
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008050 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008051 for_each_possible_cpu(i)
8052 unregister_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008053 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008054
8055 /* wait for any ongoing reference to this group to finish */
8056 synchronize_sched();
8057
8058 /*
8059 * Now we are free to modify the group's share on each cpu
8060 * w/o tripping rebalance_share or load_balance_fair.
8061 */
8062 tg->shares = shares;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008063 for_each_possible_cpu(i)
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008064 set_se_shares(tg->se[i], shares);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008065
8066 /*
8067 * Enable load balance activity on this group, by inserting it back on
8068 * each cpu's rq->leaf_cfs_rq_list.
8069 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008070 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008071 for_each_possible_cpu(i)
8072 register_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008073 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008074done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008075 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008076 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008077}
8078
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008079unsigned long sched_group_shares(struct task_group *tg)
8080{
8081 return tg->shares;
8082}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008083#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008084
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008085#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008086/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008087 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008088 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008089static DEFINE_MUTEX(rt_constraints_mutex);
8090
8091static unsigned long to_ratio(u64 period, u64 runtime)
8092{
8093 if (runtime == RUNTIME_INF)
8094 return 1ULL << 16;
8095
Peter Zijlstra2692a242008-02-27 12:00:46 +01008096 return div64_64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008097}
8098
8099static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008100{
8101 struct task_group *tgi;
8102 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008103 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008104 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008105
8106 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008107 list_for_each_entry_rcu(tgi, &task_groups, list) {
8108 if (tgi == tg)
8109 continue;
8110
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008111 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8112 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008113 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008114 rcu_read_unlock();
8115
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008116 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008117}
8118
Dhaval Giani521f1a242008-02-28 15:21:56 +05308119/* Must be called with tasklist_lock held */
8120static inline int tg_has_rt_tasks(struct task_group *tg)
8121{
8122 struct task_struct *g, *p;
8123 do_each_thread(g, p) {
8124 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8125 return 1;
8126 } while_each_thread(g, p);
8127 return 0;
8128}
8129
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008130static int tg_set_bandwidth(struct task_group *tg,
8131 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008132{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008133 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008134
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008135 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308136 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008137 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308138 err = -EBUSY;
8139 goto unlock;
8140 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008141 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8142 err = -EINVAL;
8143 goto unlock;
8144 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008145
8146 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008147 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8148 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008149
8150 for_each_possible_cpu(i) {
8151 struct rt_rq *rt_rq = tg->rt_rq[i];
8152
8153 spin_lock(&rt_rq->rt_runtime_lock);
8154 rt_rq->rt_runtime = rt_runtime;
8155 spin_unlock(&rt_rq->rt_runtime_lock);
8156 }
8157 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008158 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308159 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008160 mutex_unlock(&rt_constraints_mutex);
8161
8162 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008163}
8164
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008165int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8166{
8167 u64 rt_runtime, rt_period;
8168
8169 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8170 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8171 if (rt_runtime_us < 0)
8172 rt_runtime = RUNTIME_INF;
8173
8174 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8175}
8176
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008177long sched_group_rt_runtime(struct task_group *tg)
8178{
8179 u64 rt_runtime_us;
8180
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008181 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008182 return -1;
8183
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008184 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008185 do_div(rt_runtime_us, NSEC_PER_USEC);
8186 return rt_runtime_us;
8187}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008188
8189int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8190{
8191 u64 rt_runtime, rt_period;
8192
8193 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8194 rt_runtime = tg->rt_bandwidth.rt_runtime;
8195
8196 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8197}
8198
8199long sched_group_rt_period(struct task_group *tg)
8200{
8201 u64 rt_period_us;
8202
8203 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8204 do_div(rt_period_us, NSEC_PER_USEC);
8205 return rt_period_us;
8206}
8207
8208static int sched_rt_global_constraints(void)
8209{
8210 int ret = 0;
8211
8212 mutex_lock(&rt_constraints_mutex);
8213 if (!__rt_schedulable(NULL, 1, 0))
8214 ret = -EINVAL;
8215 mutex_unlock(&rt_constraints_mutex);
8216
8217 return ret;
8218}
8219#else
8220static int sched_rt_global_constraints(void)
8221{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008222 unsigned long flags;
8223 int i;
8224
8225 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8226 for_each_possible_cpu(i) {
8227 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8228
8229 spin_lock(&rt_rq->rt_runtime_lock);
8230 rt_rq->rt_runtime = global_rt_runtime();
8231 spin_unlock(&rt_rq->rt_runtime_lock);
8232 }
8233 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8234
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008235 return 0;
8236}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008237#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008238
8239int sched_rt_handler(struct ctl_table *table, int write,
8240 struct file *filp, void __user *buffer, size_t *lenp,
8241 loff_t *ppos)
8242{
8243 int ret;
8244 int old_period, old_runtime;
8245 static DEFINE_MUTEX(mutex);
8246
8247 mutex_lock(&mutex);
8248 old_period = sysctl_sched_rt_period;
8249 old_runtime = sysctl_sched_rt_runtime;
8250
8251 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8252
8253 if (!ret && write) {
8254 ret = sched_rt_global_constraints();
8255 if (ret) {
8256 sysctl_sched_rt_period = old_period;
8257 sysctl_sched_rt_runtime = old_runtime;
8258 } else {
8259 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8260 def_rt_bandwidth.rt_period =
8261 ns_to_ktime(global_rt_period());
8262 }
8263 }
8264 mutex_unlock(&mutex);
8265
8266 return ret;
8267}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008268
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008269#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008270
8271/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008272static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008273{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008274 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8275 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008276}
8277
8278static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02008279cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008280{
8281 struct task_group *tg;
8282
Paul Menage2b01dfe2007-10-24 18:23:50 +02008283 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008284 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008285 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008286 return &init_task_group.css;
8287 }
8288
8289 /* we support only 1-level deep hierarchical scheduler atm */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008290 if (cgrp->parent->parent)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008291 return ERR_PTR(-EINVAL);
8292
8293 tg = sched_create_group();
8294 if (IS_ERR(tg))
8295 return ERR_PTR(-ENOMEM);
8296
8297 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008298 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008299
8300 return &tg->css;
8301}
8302
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008303static void
8304cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008305{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008306 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008307
8308 sched_destroy_group(tg);
8309}
8310
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008311static int
8312cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
8313 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008314{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008315#ifdef CONFIG_RT_GROUP_SCHED
8316 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008317 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008318 return -EINVAL;
8319#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008320 /* We don't support RT-tasks being in separate groups */
8321 if (tsk->sched_class != &fair_sched_class)
8322 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008323#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008324
8325 return 0;
8326}
8327
8328static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02008329cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008330 struct cgroup *old_cont, struct task_struct *tsk)
8331{
8332 sched_move_task(tsk);
8333}
8334
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008335#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menage2b01dfe2007-10-24 18:23:50 +02008336static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8337 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008338{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008339 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008340}
8341
Paul Menage2b01dfe2007-10-24 18:23:50 +02008342static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008343{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008344 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008345
8346 return (u64) tg->shares;
8347}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008348#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008349
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008350#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008351static ssize_t cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008352 struct file *file,
8353 const char __user *userbuf,
8354 size_t nbytes, loff_t *unused_ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008355{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008356 char buffer[64];
8357 int retval = 0;
8358 s64 val;
8359 char *end;
8360
8361 if (!nbytes)
8362 return -EINVAL;
8363 if (nbytes >= sizeof(buffer))
8364 return -E2BIG;
8365 if (copy_from_user(buffer, userbuf, nbytes))
8366 return -EFAULT;
8367
8368 buffer[nbytes] = 0; /* nul-terminate */
8369
8370 /* strip newline if necessary */
8371 if (nbytes && (buffer[nbytes-1] == '\n'))
8372 buffer[nbytes-1] = 0;
8373 val = simple_strtoll(buffer, &end, 0);
8374 if (*end)
8375 return -EINVAL;
8376
8377 /* Pass to subsystem */
8378 retval = sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
8379 if (!retval)
8380 retval = nbytes;
8381 return retval;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008382}
8383
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008384static ssize_t cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft,
8385 struct file *file,
8386 char __user *buf, size_t nbytes,
8387 loff_t *ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008388{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008389 char tmp[64];
8390 long val = sched_group_rt_runtime(cgroup_tg(cgrp));
8391 int len = sprintf(tmp, "%ld\n", val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008392
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008393 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008394}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008395
8396static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8397 u64 rt_period_us)
8398{
8399 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
8400}
8401
8402static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
8403{
8404 return sched_group_rt_period(cgroup_tg(cgrp));
8405}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008406#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008407
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008408static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008409#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008410 {
8411 .name = "shares",
8412 .read_uint = cpu_shares_read_uint,
8413 .write_uint = cpu_shares_write_uint,
8414 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008415#endif
8416#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008417 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008418 .name = "rt_runtime_us",
8419 .read = cpu_rt_runtime_read,
8420 .write = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008421 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008422 {
8423 .name = "rt_period_us",
8424 .read_uint = cpu_rt_period_read_uint,
8425 .write_uint = cpu_rt_period_write_uint,
8426 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008427#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008428};
8429
8430static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8431{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008432 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008433}
8434
8435struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01008436 .name = "cpu",
8437 .create = cpu_cgroup_create,
8438 .destroy = cpu_cgroup_destroy,
8439 .can_attach = cpu_cgroup_can_attach,
8440 .attach = cpu_cgroup_attach,
8441 .populate = cpu_cgroup_populate,
8442 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008443 .early_init = 1,
8444};
8445
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008446#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008447
8448#ifdef CONFIG_CGROUP_CPUACCT
8449
8450/*
8451 * CPU accounting code for task groups.
8452 *
8453 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
8454 * (balbir@in.ibm.com).
8455 */
8456
8457/* track cpu usage of a group of tasks */
8458struct cpuacct {
8459 struct cgroup_subsys_state css;
8460 /* cpuusage holds pointer to a u64-type object on every cpu */
8461 u64 *cpuusage;
8462};
8463
8464struct cgroup_subsys cpuacct_subsys;
8465
8466/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05308467static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008468{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308469 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008470 struct cpuacct, css);
8471}
8472
8473/* return cpu accounting group to which this task belongs */
8474static inline struct cpuacct *task_ca(struct task_struct *tsk)
8475{
8476 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
8477 struct cpuacct, css);
8478}
8479
8480/* create a new cpu accounting group */
8481static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05308482 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008483{
8484 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
8485
8486 if (!ca)
8487 return ERR_PTR(-ENOMEM);
8488
8489 ca->cpuusage = alloc_percpu(u64);
8490 if (!ca->cpuusage) {
8491 kfree(ca);
8492 return ERR_PTR(-ENOMEM);
8493 }
8494
8495 return &ca->css;
8496}
8497
8498/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008499static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05308500cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008501{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308502 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008503
8504 free_percpu(ca->cpuusage);
8505 kfree(ca);
8506}
8507
8508/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05308509static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008510{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308511 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008512 u64 totalcpuusage = 0;
8513 int i;
8514
8515 for_each_possible_cpu(i) {
8516 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8517
8518 /*
8519 * Take rq->lock to make 64-bit addition safe on 32-bit
8520 * platforms.
8521 */
8522 spin_lock_irq(&cpu_rq(i)->lock);
8523 totalcpuusage += *cpuusage;
8524 spin_unlock_irq(&cpu_rq(i)->lock);
8525 }
8526
8527 return totalcpuusage;
8528}
8529
Dhaval Giani0297b802008-02-29 10:02:44 +05308530static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
8531 u64 reset)
8532{
8533 struct cpuacct *ca = cgroup_ca(cgrp);
8534 int err = 0;
8535 int i;
8536
8537 if (reset) {
8538 err = -EINVAL;
8539 goto out;
8540 }
8541
8542 for_each_possible_cpu(i) {
8543 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8544
8545 spin_lock_irq(&cpu_rq(i)->lock);
8546 *cpuusage = 0;
8547 spin_unlock_irq(&cpu_rq(i)->lock);
8548 }
8549out:
8550 return err;
8551}
8552
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008553static struct cftype files[] = {
8554 {
8555 .name = "usage",
8556 .read_uint = cpuusage_read,
Dhaval Giani0297b802008-02-29 10:02:44 +05308557 .write_uint = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008558 },
8559};
8560
Dhaval Giani32cd7562008-02-29 10:02:43 +05308561static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008562{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308563 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008564}
8565
8566/*
8567 * charge this task's execution time to its accounting group.
8568 *
8569 * called with rq->lock held.
8570 */
8571static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
8572{
8573 struct cpuacct *ca;
8574
8575 if (!cpuacct_subsys.active)
8576 return;
8577
8578 ca = task_ca(tsk);
8579 if (ca) {
8580 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
8581
8582 *cpuusage += cputime;
8583 }
8584}
8585
8586struct cgroup_subsys cpuacct_subsys = {
8587 .name = "cpuacct",
8588 .create = cpuacct_create,
8589 .destroy = cpuacct_destroy,
8590 .populate = cpuacct_populate,
8591 .subsys_id = cpuacct_subsys_id,
8592};
8593#endif /* CONFIG_CGROUP_CPUACCT */