blob: 263e25e10204fe2b727db99e67fb8cf3d07d45ca [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Eric Dumazet5517d862007-05-08 00:32:57 -070071#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020072#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/*
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080075 * Scheduler clock - returns current time in nanosec units.
76 * This is default implementation.
77 * Architectures and sub-architectures can override this.
78 */
79unsigned long long __attribute__((weak)) sched_clock(void)
80{
Eric Dumazetd6322fa2007-11-09 22:39:38 +010081 return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080082}
83
84/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * Convert user-nice values [ -20 ... 0 ... 19 ]
86 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
87 * and back.
88 */
89#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
90#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
91#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
92
93/*
94 * 'User priority' is the nice value converted to something we
95 * can work with better when scaling various scheduler parameters,
96 * it's a [ 0 ... 39 ] range.
97 */
98#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
99#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
100#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
101
102/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100103 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100105#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200107#define NICE_0_LOAD SCHED_LOAD_SCALE
108#define NICE_0_SHIFT SCHED_LOAD_SHIFT
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
111 * These are the 'tuning knobs' of the scheduler:
112 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200113 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * Timeslices get refilled after they expire.
115 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700117
Eric Dumazet5517d862007-05-08 00:32:57 -0700118#ifdef CONFIG_SMP
119/*
120 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
121 * Since cpu_power is a 'constant', we can use a reciprocal divide.
122 */
123static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
124{
125 return reciprocal_divide(load, sg->reciprocal_cpu_power);
126}
127
128/*
129 * Each time a sched group cpu_power is changed,
130 * we must compute its reciprocal value
131 */
132static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
133{
134 sg->__cpu_power += val;
135 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
136}
137#endif
138
Ingo Molnare05606d2007-07-09 18:51:59 +0200139static inline int rt_policy(int policy)
140{
141 if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR))
142 return 1;
143 return 0;
144}
145
146static inline int task_has_rt_policy(struct task_struct *p)
147{
148 return rt_policy(p->policy);
149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200152 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200154struct rt_prio_array {
155 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
156 struct list_head queue[MAX_RT_PRIO];
157};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100159#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200160
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700161#include <linux/cgroup.h>
162
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200163struct cfs_rq;
164
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100165static LIST_HEAD(task_groups);
166
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200167/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200168struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100169#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700170 struct cgroup_subsys_state css;
171#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100172
173#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200174 /* schedulable entities of this group on each cpu */
175 struct sched_entity **se;
176 /* runqueue "owned" by this group on each cpu */
177 struct cfs_rq **cfs_rq;
178 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100179#endif
180
181#ifdef CONFIG_RT_GROUP_SCHED
182 struct sched_rt_entity **rt_se;
183 struct rt_rq **rt_rq;
184
185 u64 rt_runtime;
186#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100187
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100188 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100189 struct list_head list;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200190};
191
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100192#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200193/* Default task group's sched entity on each cpu */
194static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
195/* Default task group's cfs_rq on each cpu */
196static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
197
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100198static struct sched_entity *init_sched_entity_p[NR_CPUS];
199static struct cfs_rq *init_cfs_rq_p[NR_CPUS];
200#endif
201
202#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100203static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
204static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
205
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100206static struct sched_rt_entity *init_sched_rt_entity_p[NR_CPUS];
207static struct rt_rq *init_rt_rq_p[NR_CPUS];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100208#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100209
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100210/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100211 * a task group's cpu shares.
212 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100213static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100214
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100215/* doms_cur_mutex serializes access to doms_cur[] array */
216static DEFINE_MUTEX(doms_cur_mutex);
217
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100218#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100219#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100220# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200221#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100222# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200223#endif
224
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100225static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100226#endif
227
228/* Default task group.
229 * Every task in system belong to this group at bootup.
230 */
231struct task_group init_task_group = {
232#ifdef CONFIG_FAIR_GROUP_SCHED
233 .se = init_sched_entity_p,
234 .cfs_rq = init_cfs_rq_p,
235#endif
236
237#ifdef CONFIG_RT_GROUP_SCHED
238 .rt_se = init_sched_rt_entity_p,
239 .rt_rq = init_rt_rq_p,
240#endif
241};
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200242
243/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200244static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200245{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200246 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200247
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100248#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200249 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100250#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700251 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
252 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200253#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100254 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200255#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200256 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200257}
258
259/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100260static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200261{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100262#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100263 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
264 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100265#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100266
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100267#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100268 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
269 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100270#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200271}
272
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100273static inline void lock_doms_cur(void)
274{
275 mutex_lock(&doms_cur_mutex);
276}
277
278static inline void unlock_doms_cur(void)
279{
280 mutex_unlock(&doms_cur_mutex);
281}
282
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200283#else
284
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100285static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100286static inline void lock_doms_cur(void) { }
287static inline void unlock_doms_cur(void) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200288
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100289#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200290
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200291/* CFS-related fields in a runqueue */
292struct cfs_rq {
293 struct load_weight load;
294 unsigned long nr_running;
295
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200296 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200297 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200298
299 struct rb_root tasks_timeline;
300 struct rb_node *rb_leftmost;
301 struct rb_node *rb_load_balance_curr;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200302 /* 'curr' points to currently running entity on this cfs_rq.
303 * It is set to NULL otherwise (i.e when none are currently running).
304 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100305 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200306
307 unsigned long nr_spread_over;
308
Ingo Molnar62160e32007-10-15 17:00:03 +0200309#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200310 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
311
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100312 /*
313 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200314 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
315 * (like users, containers etc.)
316 *
317 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
318 * list is used during load balance.
319 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100320 struct list_head leaf_cfs_rq_list;
321 struct task_group *tg; /* group that "owns" this runqueue */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200322#endif
323};
324
325/* Real-Time classes' related field in a runqueue: */
326struct rt_rq {
327 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100328 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100329#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100330 int highest_prio; /* highest queued rt task prio */
331#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100332#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100333 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100334 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100335#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100336 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100337 u64 rt_time;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100338
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100339#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100340 unsigned long rt_nr_boosted;
341
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100342 struct rq *rq;
343 struct list_head leaf_rt_rq_list;
344 struct task_group *tg;
345 struct sched_rt_entity *rt_se;
346#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200347};
348
Gregory Haskins57d885f2008-01-25 21:08:18 +0100349#ifdef CONFIG_SMP
350
351/*
352 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100353 * variables. Each exclusive cpuset essentially defines an island domain by
354 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100355 * exclusive cpuset is created, we also create and attach a new root-domain
356 * object.
357 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100358 */
359struct root_domain {
360 atomic_t refcount;
361 cpumask_t span;
362 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100363
Ingo Molnar0eab9142008-01-25 21:08:19 +0100364 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100365 * The "RT overload" flag: it gets set if a CPU has more than
366 * one runnable RT task.
367 */
368 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100369 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100370};
371
Gregory Haskinsdc938522008-01-25 21:08:26 +0100372/*
373 * By default the system creates a single root-domain with all cpus as
374 * members (mimicking the global state we have today).
375 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100376static struct root_domain def_root_domain;
377
378#endif
379
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200380/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 * This is the main, per-CPU runqueue data structure.
382 *
383 * Locking rule: those places that want to lock multiple runqueues
384 * (such as the load balancing or the thread migration code), lock
385 * acquire operations must be ordered by ascending &runqueue.
386 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700387struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200388 /* runqueue lock: */
389 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 /*
392 * nr_running and cpu_load should be in the same cacheline because
393 * remote CPUs use both these fields when doing load calculation.
394 */
395 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200396 #define CPU_LOAD_IDX_MAX 5
397 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700398 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700399#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200400 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700401 unsigned char in_nohz_recently;
402#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200403 /* capture load from *all* tasks on this cpu: */
404 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200405 unsigned long nr_load_updates;
406 u64 nr_switches;
407
408 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100409 struct rt_rq rt;
410 u64 rt_period_expire;
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100411 int rt_throttled;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100412
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200413#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200414 /* list of leaf cfs_rq on this cpu: */
415 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100416#endif
417#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100418 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 /*
422 * This is part of a global counter where only the total sum
423 * over all CPUs matters. A task can increase this counter on
424 * one CPU and if it got migrated afterwards it may decrease
425 * it on another CPU. Always updated under the runqueue lock:
426 */
427 unsigned long nr_uninterruptible;
428
Ingo Molnar36c8b582006-07-03 00:25:41 -0700429 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800430 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200432
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200433 u64 clock, prev_clock_raw;
434 s64 clock_max_delta;
435
Guillaume Chazaraincc203d22008-01-25 21:08:34 +0100436 unsigned int clock_warps, clock_overflows, clock_underflows;
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200437 u64 idle_clock;
438 unsigned int clock_deep_idle_events;
Ingo Molnar529c7722007-08-10 23:05:11 +0200439 u64 tick_timestamp;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 atomic_t nr_iowait;
442
443#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100444 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 struct sched_domain *sd;
446
447 /* For active balancing */
448 int active_balance;
449 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200450 /* cpu of this runqueue: */
451 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Ingo Molnar36c8b582006-07-03 00:25:41 -0700453 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 struct list_head migration_queue;
455#endif
456
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100457#ifdef CONFIG_SCHED_HRTICK
458 unsigned long hrtick_flags;
459 ktime_t hrtick_expire;
460 struct hrtimer hrtick_timer;
461#endif
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#ifdef CONFIG_SCHEDSTATS
464 /* latency stats */
465 struct sched_info rq_sched_info;
466
467 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200468 unsigned int yld_exp_empty;
469 unsigned int yld_act_empty;
470 unsigned int yld_both_empty;
471 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200474 unsigned int sched_switch;
475 unsigned int sched_count;
476 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200479 unsigned int ttwu_count;
480 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200481
482 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200483 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700485 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486};
487
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700488static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Ingo Molnardd41f592007-07-09 18:51:59 +0200490static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
491{
492 rq->curr->sched_class->check_preempt_curr(rq, p);
493}
494
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700495static inline int cpu_of(struct rq *rq)
496{
497#ifdef CONFIG_SMP
498 return rq->cpu;
499#else
500 return 0;
501#endif
502}
503
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200504#ifdef CONFIG_NO_HZ
505static inline bool nohz_on(int cpu)
506{
507 return tick_get_tick_sched(cpu)->nohz_mode != NOHZ_MODE_INACTIVE;
508}
509
510static inline u64 max_skipped_ticks(struct rq *rq)
511{
512 return nohz_on(cpu_of(rq)) ? jiffies - rq->last_tick_seen + 2 : 1;
513}
514
515static inline void update_last_tick_seen(struct rq *rq)
516{
517 rq->last_tick_seen = jiffies;
518}
519#else
520static inline u64 max_skipped_ticks(struct rq *rq)
521{
522 return 1;
523}
524
525static inline void update_last_tick_seen(struct rq *rq)
526{
527}
528#endif
529
Nick Piggin674311d2005-06-25 14:57:27 -0700530/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200531 * Update the per-runqueue clock, as finegrained as the platform can give
532 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200533 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200534static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200535{
536 u64 prev_raw = rq->prev_clock_raw;
537 u64 now = sched_clock();
538 s64 delta = now - prev_raw;
539 u64 clock = rq->clock;
540
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200541#ifdef CONFIG_SCHED_DEBUG
542 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
543#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200544 /*
545 * Protect against sched_clock() occasionally going backwards:
546 */
547 if (unlikely(delta < 0)) {
548 clock++;
549 rq->clock_warps++;
550 } else {
551 /*
552 * Catch too large forward jumps too:
553 */
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200554 u64 max_jump = max_skipped_ticks(rq) * TICK_NSEC;
555 u64 max_time = rq->tick_timestamp + max_jump;
556
557 if (unlikely(clock + delta > max_time)) {
558 if (clock < max_time)
559 clock = max_time;
Ingo Molnar529c7722007-08-10 23:05:11 +0200560 else
561 clock++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200562 rq->clock_overflows++;
563 } else {
564 if (unlikely(delta > rq->clock_max_delta))
565 rq->clock_max_delta = delta;
566 clock += delta;
567 }
568 }
569
570 rq->prev_clock_raw = now;
571 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200572}
573
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200574static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200575{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200576 if (likely(smp_processor_id() == cpu_of(rq)))
577 __update_rq_clock(rq);
578}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200579
Ingo Molnar20d315d2007-07-09 18:51:58 +0200580/*
Nick Piggin674311d2005-06-25 14:57:27 -0700581 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700582 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700583 *
584 * The domain tree of any CPU may only be accessed from within
585 * preempt-disabled sections.
586 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700587#define for_each_domain(cpu, __sd) \
588 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
591#define this_rq() (&__get_cpu_var(runqueues))
592#define task_rq(p) cpu_rq(task_cpu(p))
593#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
594
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100595unsigned long rt_needs_cpu(int cpu)
596{
597 struct rq *rq = cpu_rq(cpu);
598 u64 delta;
599
600 if (!rq->rt_throttled)
601 return 0;
602
603 if (rq->clock > rq->rt_period_expire)
604 return 1;
605
606 delta = rq->rt_period_expire - rq->clock;
607 do_div(delta, NSEC_PER_SEC / HZ);
608
609 return (unsigned long)delta;
610}
611
Ingo Molnare436d802007-07-19 21:28:35 +0200612/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200613 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
614 */
615#ifdef CONFIG_SCHED_DEBUG
616# define const_debug __read_mostly
617#else
618# define const_debug static const
619#endif
620
621/*
622 * Debugging: various feature bits
623 */
624enum {
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200625 SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
Ingo Molnar96126332007-11-15 20:57:40 +0100626 SCHED_FEAT_WAKEUP_PREEMPT = 2,
627 SCHED_FEAT_START_DEBIT = 4,
Peter Zijlstra2070ee02008-03-21 16:43:47 +0100628 SCHED_FEAT_HRTICK = 8,
629 SCHED_FEAT_DOUBLE_TICK = 16,
Ingo Molnarb85d0662008-03-16 20:03:22 +0100630 SCHED_FEAT_SYNC_WAKEUPS = 32,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200631};
632
633const_debug unsigned int sysctl_sched_features =
Ingo Molnar8401f772007-10-18 21:32:55 +0200634 SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 |
Ingo Molnar96126332007-11-15 20:57:40 +0100635 SCHED_FEAT_WAKEUP_PREEMPT * 1 |
Ingo Molnar8401f772007-10-18 21:32:55 +0200636 SCHED_FEAT_START_DEBIT * 1 |
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100637 SCHED_FEAT_HRTICK * 1 |
Ingo Molnarb85d0662008-03-16 20:03:22 +0100638 SCHED_FEAT_DOUBLE_TICK * 0 |
639 SCHED_FEAT_SYNC_WAKEUPS * 0;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200640
641#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
642
643/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100644 * Number of tasks to iterate in a single balance run.
645 * Limited because this is done with IRQs disabled.
646 */
647const_debug unsigned int sysctl_sched_nr_migrate = 32;
648
649/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100650 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100651 * default: 1s
652 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100653unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100654
Ingo Molnar6892b752008-02-13 14:02:36 +0100655static __read_mostly int scheduler_running;
656
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100657/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100658 * part of the period that we allow rt tasks to run in us.
659 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100660 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100661int sysctl_sched_rt_runtime = 950000;
662
663/*
664 * single value that denotes runtime == period, ie unlimited time.
665 */
666#define RUNTIME_INF ((u64)~0ULL)
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100667
Ingo Molnar27ec4402008-02-28 21:00:21 +0100668static const unsigned long long time_sync_thresh = 100000;
669
670static DEFINE_PER_CPU(unsigned long long, time_offset);
671static DEFINE_PER_CPU(unsigned long long, prev_cpu_time);
672
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100673/*
Ingo Molnar27ec4402008-02-28 21:00:21 +0100674 * Global lock which we take every now and then to synchronize
675 * the CPUs time. This method is not warp-safe, but it's good
676 * enough to synchronize slowly diverging time sources and thus
677 * it's good enough for tracing:
Ingo Molnare436d802007-07-19 21:28:35 +0200678 */
Ingo Molnar27ec4402008-02-28 21:00:21 +0100679static DEFINE_SPINLOCK(time_sync_lock);
680static unsigned long long prev_global_time;
681
682static unsigned long long __sync_cpu_clock(cycles_t time, int cpu)
683{
684 unsigned long flags;
685
686 spin_lock_irqsave(&time_sync_lock, flags);
687
688 if (time < prev_global_time) {
689 per_cpu(time_offset, cpu) += prev_global_time - time;
690 time = prev_global_time;
691 } else {
692 prev_global_time = time;
693 }
694
695 spin_unlock_irqrestore(&time_sync_lock, flags);
696
697 return time;
698}
699
700static unsigned long long __cpu_clock(int cpu)
Ingo Molnare436d802007-07-19 21:28:35 +0200701{
Ingo Molnare436d802007-07-19 21:28:35 +0200702 unsigned long long now;
703 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200704 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200705
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100706 /*
707 * Only call sched_clock() if the scheduler has already been
708 * initialized (some code might call cpu_clock() very early):
709 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100710 if (unlikely(!scheduler_running))
711 return 0;
712
713 local_irq_save(flags);
714 rq = cpu_rq(cpu);
715 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200716 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200717 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200718
719 return now;
720}
Ingo Molnar27ec4402008-02-28 21:00:21 +0100721
722/*
723 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
724 * clock constructed from sched_clock():
725 */
726unsigned long long cpu_clock(int cpu)
727{
728 unsigned long long prev_cpu_time, time, delta_time;
729
730 prev_cpu_time = per_cpu(prev_cpu_time, cpu);
731 time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
732 delta_time = time-prev_cpu_time;
733
734 if (unlikely(delta_time > time_sync_thresh))
735 time = __sync_cpu_clock(time, cpu);
736
737 return time;
738}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200739EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700742# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700744#ifndef finish_arch_switch
745# define finish_arch_switch(prev) do { } while (0)
746#endif
747
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100748static inline int task_current(struct rq *rq, struct task_struct *p)
749{
750 return rq->curr == p;
751}
752
Nick Piggin4866cde2005-06-25 14:57:23 -0700753#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700754static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700755{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100756 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700757}
758
Ingo Molnar70b97a72006-07-03 00:25:42 -0700759static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700760{
761}
762
Ingo Molnar70b97a72006-07-03 00:25:42 -0700763static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700764{
Ingo Molnarda04c032005-09-13 11:17:59 +0200765#ifdef CONFIG_DEBUG_SPINLOCK
766 /* this is a valid case when another task releases the spinlock */
767 rq->lock.owner = current;
768#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700769 /*
770 * If we are tracking spinlock dependencies then we have to
771 * fix up the runqueue lock - which gets 'carried over' from
772 * prev into current:
773 */
774 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
775
Nick Piggin4866cde2005-06-25 14:57:23 -0700776 spin_unlock_irq(&rq->lock);
777}
778
779#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700780static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700781{
782#ifdef CONFIG_SMP
783 return p->oncpu;
784#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100785 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700786#endif
787}
788
Ingo Molnar70b97a72006-07-03 00:25:42 -0700789static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700790{
791#ifdef CONFIG_SMP
792 /*
793 * We can optimise this out completely for !SMP, because the
794 * SMP rebalancing from interrupt is the only thing that cares
795 * here.
796 */
797 next->oncpu = 1;
798#endif
799#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
800 spin_unlock_irq(&rq->lock);
801#else
802 spin_unlock(&rq->lock);
803#endif
804}
805
Ingo Molnar70b97a72006-07-03 00:25:42 -0700806static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700807{
808#ifdef CONFIG_SMP
809 /*
810 * After ->oncpu is cleared, the task can be moved to a different CPU.
811 * We must ensure this doesn't happen until the switch is completely
812 * finished.
813 */
814 smp_wmb();
815 prev->oncpu = 0;
816#endif
817#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
818 local_irq_enable();
819#endif
820}
821#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700824 * __task_rq_lock - lock the runqueue a given task resides on.
825 * Must be called interrupts disabled.
826 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700827static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700828 __acquires(rq->lock)
829{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200830 for (;;) {
831 struct rq *rq = task_rq(p);
832 spin_lock(&rq->lock);
833 if (likely(rq == task_rq(p)))
834 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700835 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700836 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700837}
838
839/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100841 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 * explicitly disabling preemption.
843 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700844static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 __acquires(rq->lock)
846{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700847 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Andi Kleen3a5c3592007-10-15 17:00:14 +0200849 for (;;) {
850 local_irq_save(*flags);
851 rq = task_rq(p);
852 spin_lock(&rq->lock);
853 if (likely(rq == task_rq(p)))
854 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
Alexey Dobriyana9957442007-10-15 17:00:13 +0200859static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700860 __releases(rq->lock)
861{
862 spin_unlock(&rq->lock);
863}
864
Ingo Molnar70b97a72006-07-03 00:25:42 -0700865static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 __releases(rq->lock)
867{
868 spin_unlock_irqrestore(&rq->lock, *flags);
869}
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800872 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200874static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 __acquires(rq->lock)
876{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700877 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 local_irq_disable();
880 rq = this_rq();
881 spin_lock(&rq->lock);
882
883 return rq;
884}
885
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200886/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200887 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200888 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200889void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200890{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200891 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200892
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200893 spin_lock(&rq->lock);
894 __update_rq_clock(rq);
895 spin_unlock(&rq->lock);
896 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200897}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200898EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
899
900/*
901 * We just idled delta nanoseconds (called with irqs disabled):
902 */
903void sched_clock_idle_wakeup_event(u64 delta_ns)
904{
905 struct rq *rq = cpu_rq(smp_processor_id());
906 u64 now = sched_clock();
907
908 rq->idle_clock += delta_ns;
909 /*
910 * Override the previous timestamp and ignore all
911 * sched_clock() deltas that occured while we idled,
912 * and use the PM-provided delta_ns to advance the
913 * rq clock:
914 */
915 spin_lock(&rq->lock);
916 rq->prev_clock_raw = now;
917 rq->clock += delta_ns;
918 spin_unlock(&rq->lock);
Guillaume Chazarain782daee2008-01-25 21:08:33 +0100919 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200920}
921EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200922
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100923static void __resched_task(struct task_struct *p, int tif_bit);
924
925static inline void resched_task(struct task_struct *p)
926{
927 __resched_task(p, TIF_NEED_RESCHED);
928}
929
930#ifdef CONFIG_SCHED_HRTICK
931/*
932 * Use HR-timers to deliver accurate preemption points.
933 *
934 * Its all a bit involved since we cannot program an hrt while holding the
935 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
936 * reschedule event.
937 *
938 * When we get rescheduled we reprogram the hrtick_timer outside of the
939 * rq->lock.
940 */
941static inline void resched_hrt(struct task_struct *p)
942{
943 __resched_task(p, TIF_HRTICK_RESCHED);
944}
945
946static inline void resched_rq(struct rq *rq)
947{
948 unsigned long flags;
949
950 spin_lock_irqsave(&rq->lock, flags);
951 resched_task(rq->curr);
952 spin_unlock_irqrestore(&rq->lock, flags);
953}
954
955enum {
956 HRTICK_SET, /* re-programm hrtick_timer */
957 HRTICK_RESET, /* not a new slice */
958};
959
960/*
961 * Use hrtick when:
962 * - enabled by features
963 * - hrtimer is actually high res
964 */
965static inline int hrtick_enabled(struct rq *rq)
966{
967 if (!sched_feat(HRTICK))
968 return 0;
969 return hrtimer_is_hres_active(&rq->hrtick_timer);
970}
971
972/*
973 * Called to set the hrtick timer state.
974 *
975 * called with rq->lock held and irqs disabled
976 */
977static void hrtick_start(struct rq *rq, u64 delay, int reset)
978{
979 assert_spin_locked(&rq->lock);
980
981 /*
982 * preempt at: now + delay
983 */
984 rq->hrtick_expire =
985 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
986 /*
987 * indicate we need to program the timer
988 */
989 __set_bit(HRTICK_SET, &rq->hrtick_flags);
990 if (reset)
991 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
992
993 /*
994 * New slices are called from the schedule path and don't need a
995 * forced reschedule.
996 */
997 if (reset)
998 resched_hrt(rq->curr);
999}
1000
1001static void hrtick_clear(struct rq *rq)
1002{
1003 if (hrtimer_active(&rq->hrtick_timer))
1004 hrtimer_cancel(&rq->hrtick_timer);
1005}
1006
1007/*
1008 * Update the timer from the possible pending state.
1009 */
1010static void hrtick_set(struct rq *rq)
1011{
1012 ktime_t time;
1013 int set, reset;
1014 unsigned long flags;
1015
1016 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1017
1018 spin_lock_irqsave(&rq->lock, flags);
1019 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1020 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1021 time = rq->hrtick_expire;
1022 clear_thread_flag(TIF_HRTICK_RESCHED);
1023 spin_unlock_irqrestore(&rq->lock, flags);
1024
1025 if (set) {
1026 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1027 if (reset && !hrtimer_active(&rq->hrtick_timer))
1028 resched_rq(rq);
1029 } else
1030 hrtick_clear(rq);
1031}
1032
1033/*
1034 * High-resolution timer tick.
1035 * Runs from hardirq context with interrupts disabled.
1036 */
1037static enum hrtimer_restart hrtick(struct hrtimer *timer)
1038{
1039 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1040
1041 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1042
1043 spin_lock(&rq->lock);
1044 __update_rq_clock(rq);
1045 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1046 spin_unlock(&rq->lock);
1047
1048 return HRTIMER_NORESTART;
1049}
1050
1051static inline void init_rq_hrtick(struct rq *rq)
1052{
1053 rq->hrtick_flags = 0;
1054 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1055 rq->hrtick_timer.function = hrtick;
1056 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1057}
1058
1059void hrtick_resched(void)
1060{
1061 struct rq *rq;
1062 unsigned long flags;
1063
1064 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1065 return;
1066
1067 local_irq_save(flags);
1068 rq = cpu_rq(smp_processor_id());
1069 hrtick_set(rq);
1070 local_irq_restore(flags);
1071}
1072#else
1073static inline void hrtick_clear(struct rq *rq)
1074{
1075}
1076
1077static inline void hrtick_set(struct rq *rq)
1078{
1079}
1080
1081static inline void init_rq_hrtick(struct rq *rq)
1082{
1083}
1084
1085void hrtick_resched(void)
1086{
1087}
1088#endif
1089
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001090/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001091 * resched_task - mark a task 'to be rescheduled now'.
1092 *
1093 * On UP this means the setting of the need_resched flag, on SMP it
1094 * might also involve a cross-CPU call to trigger the scheduler on
1095 * the target CPU.
1096 */
1097#ifdef CONFIG_SMP
1098
1099#ifndef tsk_is_polling
1100#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1101#endif
1102
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001103static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001104{
1105 int cpu;
1106
1107 assert_spin_locked(&task_rq(p)->lock);
1108
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001109 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001110 return;
1111
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001112 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001113
1114 cpu = task_cpu(p);
1115 if (cpu == smp_processor_id())
1116 return;
1117
1118 /* NEED_RESCHED must be visible before we test polling */
1119 smp_mb();
1120 if (!tsk_is_polling(p))
1121 smp_send_reschedule(cpu);
1122}
1123
1124static void resched_cpu(int cpu)
1125{
1126 struct rq *rq = cpu_rq(cpu);
1127 unsigned long flags;
1128
1129 if (!spin_trylock_irqsave(&rq->lock, flags))
1130 return;
1131 resched_task(cpu_curr(cpu));
1132 spin_unlock_irqrestore(&rq->lock, flags);
1133}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001134
1135#ifdef CONFIG_NO_HZ
1136/*
1137 * When add_timer_on() enqueues a timer into the timer wheel of an
1138 * idle CPU then this timer might expire before the next timer event
1139 * which is scheduled to wake up that CPU. In case of a completely
1140 * idle system the next event might even be infinite time into the
1141 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1142 * leaves the inner idle loop so the newly added timer is taken into
1143 * account when the CPU goes back to idle and evaluates the timer
1144 * wheel for the next timer event.
1145 */
1146void wake_up_idle_cpu(int cpu)
1147{
1148 struct rq *rq = cpu_rq(cpu);
1149
1150 if (cpu == smp_processor_id())
1151 return;
1152
1153 /*
1154 * This is safe, as this function is called with the timer
1155 * wheel base lock of (cpu) held. When the CPU is on the way
1156 * to idle and has not yet set rq->curr to idle then it will
1157 * be serialized on the timer wheel base lock and take the new
1158 * timer into account automatically.
1159 */
1160 if (rq->curr != rq->idle)
1161 return;
1162
1163 /*
1164 * We can set TIF_RESCHED on the idle task of the other CPU
1165 * lockless. The worst case is that the other CPU runs the
1166 * idle task through an additional NOOP schedule()
1167 */
1168 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1169
1170 /* NEED_RESCHED must be visible before we test polling */
1171 smp_mb();
1172 if (!tsk_is_polling(rq->idle))
1173 smp_send_reschedule(cpu);
1174}
1175#endif
1176
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001177#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001178static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001179{
1180 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001181 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001182}
1183#endif
1184
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001185#if BITS_PER_LONG == 32
1186# define WMULT_CONST (~0UL)
1187#else
1188# define WMULT_CONST (1UL << 32)
1189#endif
1190
1191#define WMULT_SHIFT 32
1192
Ingo Molnar194081e2007-08-09 11:16:51 +02001193/*
1194 * Shift right and round:
1195 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001196#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001197
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001198static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001199calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1200 struct load_weight *lw)
1201{
1202 u64 tmp;
1203
1204 if (unlikely(!lw->inv_weight))
Ingo Molnar27d11722008-03-14 22:20:01 +01001205 lw->inv_weight = (WMULT_CONST-lw->weight/2) / (lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001206
1207 tmp = (u64)delta_exec * weight;
1208 /*
1209 * Check whether we'd overflow the 64-bit multiplication:
1210 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001211 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001212 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001213 WMULT_SHIFT/2);
1214 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001215 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001216
Ingo Molnarecf691d2007-08-02 17:41:40 +02001217 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001218}
1219
1220static inline unsigned long
1221calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
1222{
1223 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
1224}
1225
Ingo Molnar10919852007-10-15 17:00:04 +02001226static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001227{
1228 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001229 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001230}
1231
Ingo Molnar10919852007-10-15 17:00:04 +02001232static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001233{
1234 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001235 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001236}
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001239 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1240 * of tasks with abnormal "nice" values across CPUs the contribution that
1241 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001242 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001243 * scaled version of the new time slice allocation that they receive on time
1244 * slice expiry etc.
1245 */
1246
Ingo Molnardd41f592007-07-09 18:51:59 +02001247#define WEIGHT_IDLEPRIO 2
1248#define WMULT_IDLEPRIO (1 << 31)
1249
1250/*
1251 * Nice levels are multiplicative, with a gentle 10% change for every
1252 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1253 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1254 * that remained on nice 0.
1255 *
1256 * The "10% effect" is relative and cumulative: from _any_ nice level,
1257 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001258 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1259 * If a task goes up by ~10% and another task goes down by ~10% then
1260 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001261 */
1262static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001263 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1264 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1265 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1266 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1267 /* 0 */ 1024, 820, 655, 526, 423,
1268 /* 5 */ 335, 272, 215, 172, 137,
1269 /* 10 */ 110, 87, 70, 56, 45,
1270 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001271};
1272
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001273/*
1274 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1275 *
1276 * In cases where the weight does not change often, we can use the
1277 * precalculated inverse to speed up arithmetics by turning divisions
1278 * into multiplications:
1279 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001280static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001281 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1282 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1283 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1284 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1285 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1286 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1287 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1288 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001289};
Peter Williams2dd73a42006-06-27 02:54:34 -07001290
Ingo Molnardd41f592007-07-09 18:51:59 +02001291static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1292
1293/*
1294 * runqueue iterator, to support SMP load-balancing between different
1295 * scheduling classes, without having to expose their internal data
1296 * structures to the load-balancing proper:
1297 */
1298struct rq_iterator {
1299 void *arg;
1300 struct task_struct *(*start)(void *);
1301 struct task_struct *(*next)(void *);
1302};
1303
Peter Williamse1d14842007-10-24 18:23:51 +02001304#ifdef CONFIG_SMP
1305static unsigned long
1306balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1307 unsigned long max_load_move, struct sched_domain *sd,
1308 enum cpu_idle_type idle, int *all_pinned,
1309 int *this_best_prio, struct rq_iterator *iterator);
1310
1311static int
1312iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1313 struct sched_domain *sd, enum cpu_idle_type idle,
1314 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001315#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001316
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001317#ifdef CONFIG_CGROUP_CPUACCT
1318static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1319#else
1320static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1321#endif
1322
Gregory Haskinse7693a32008-01-25 21:08:09 +01001323#ifdef CONFIG_SMP
1324static unsigned long source_load(int cpu, int type);
1325static unsigned long target_load(int cpu, int type);
1326static unsigned long cpu_avg_load_per_task(int cpu);
1327static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
1328#endif /* CONFIG_SMP */
1329
Ingo Molnardd41f592007-07-09 18:51:59 +02001330#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001331#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001332#include "sched_fair.c"
1333#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001334#ifdef CONFIG_SCHED_DEBUG
1335# include "sched_debug.c"
1336#endif
1337
1338#define sched_class_highest (&rt_sched_class)
1339
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001340static inline void inc_load(struct rq *rq, const struct task_struct *p)
Ingo Molnar9c217242007-08-02 17:41:40 +02001341{
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001342 update_load_add(&rq->load, p->se.load.weight);
Ingo Molnar9c217242007-08-02 17:41:40 +02001343}
1344
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001345static inline void dec_load(struct rq *rq, const struct task_struct *p)
1346{
1347 update_load_sub(&rq->load, p->se.load.weight);
1348}
1349
1350static void inc_nr_running(struct task_struct *p, struct rq *rq)
1351{
1352 rq->nr_running++;
1353 inc_load(rq, p);
1354}
1355
1356static void dec_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001357{
1358 rq->nr_running--;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001359 dec_load(rq, p);
Ingo Molnar9c217242007-08-02 17:41:40 +02001360}
1361
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001362static void set_load_weight(struct task_struct *p)
1363{
1364 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001365 p->se.load.weight = prio_to_weight[0] * 2;
1366 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1367 return;
1368 }
1369
1370 /*
1371 * SCHED_IDLE tasks get minimal weight:
1372 */
1373 if (p->policy == SCHED_IDLE) {
1374 p->se.load.weight = WEIGHT_IDLEPRIO;
1375 p->se.load.inv_weight = WMULT_IDLEPRIO;
1376 return;
1377 }
1378
1379 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1380 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001381}
1382
Ingo Molnar8159f872007-08-09 11:16:49 +02001383static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001384{
1385 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001386 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001387 p->se.on_rq = 1;
1388}
1389
Ingo Molnar69be72c2007-08-09 11:16:49 +02001390static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001391{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001392 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001393 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001394}
1395
1396/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001397 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001398 */
Ingo Molnar14531182007-07-09 18:51:59 +02001399static inline int __normal_prio(struct task_struct *p)
1400{
Ingo Molnardd41f592007-07-09 18:51:59 +02001401 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001402}
1403
1404/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001405 * Calculate the expected normal priority: i.e. priority
1406 * without taking RT-inheritance into account. Might be
1407 * boosted by interactivity modifiers. Changes upon fork,
1408 * setprio syscalls, and whenever the interactivity
1409 * estimator recalculates.
1410 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001411static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001412{
1413 int prio;
1414
Ingo Molnare05606d2007-07-09 18:51:59 +02001415 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001416 prio = MAX_RT_PRIO-1 - p->rt_priority;
1417 else
1418 prio = __normal_prio(p);
1419 return prio;
1420}
1421
1422/*
1423 * Calculate the current priority, i.e. the priority
1424 * taken into account by the scheduler. This value might
1425 * be boosted by RT tasks, or might be boosted by
1426 * interactivity modifiers. Will be RT if the task got
1427 * RT-boosted. If not then it returns p->normal_prio.
1428 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001429static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001430{
1431 p->normal_prio = normal_prio(p);
1432 /*
1433 * If we are RT tasks or we were boosted to RT priority,
1434 * keep the priority unchanged. Otherwise, update priority
1435 * to the normal priority:
1436 */
1437 if (!rt_prio(p->prio))
1438 return p->normal_prio;
1439 return p->prio;
1440}
1441
1442/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001443 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001445static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001447 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001448 rq->nr_uninterruptible--;
1449
Ingo Molnar8159f872007-08-09 11:16:49 +02001450 enqueue_task(rq, p, wakeup);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001451 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452}
1453
1454/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 * deactivate_task - remove a task from the runqueue.
1456 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001457static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001459 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001460 rq->nr_uninterruptible++;
1461
Ingo Molnar69be72c2007-08-09 11:16:49 +02001462 dequeue_task(rq, p, sleep);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001463 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466/**
1467 * task_curr - is this task currently executing on a CPU?
1468 * @p: the task in question.
1469 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001470inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
1472 return cpu_curr(task_cpu(p)) == p;
1473}
1474
Peter Williams2dd73a42006-06-27 02:54:34 -07001475/* Used instead of source_load when we know the type == 0 */
1476unsigned long weighted_cpuload(const int cpu)
1477{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001478 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001479}
1480
1481static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1482{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001483 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001484#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001485 /*
1486 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1487 * successfuly executed on another CPU. We must ensure that updates of
1488 * per-task data have been completed by this moment.
1489 */
1490 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001491 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001492#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001493}
1494
Steven Rostedtcb469842008-01-25 21:08:22 +01001495static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1496 const struct sched_class *prev_class,
1497 int oldprio, int running)
1498{
1499 if (prev_class != p->sched_class) {
1500 if (prev_class->switched_from)
1501 prev_class->switched_from(rq, p, running);
1502 p->sched_class->switched_to(rq, p, running);
1503 } else
1504 p->sched_class->prio_changed(rq, p, oldprio, running);
1505}
1506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001508
Ingo Molnarcc367732007-10-15 17:00:18 +02001509/*
1510 * Is this task likely cache-hot:
1511 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001512static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001513task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1514{
1515 s64 delta;
1516
Ingo Molnarf540a602008-03-15 17:10:34 +01001517 /*
1518 * Buddy candidates are cache hot:
1519 */
1520 if (&p->se == cfs_rq_of(&p->se)->next)
1521 return 1;
1522
Ingo Molnarcc367732007-10-15 17:00:18 +02001523 if (p->sched_class != &fair_sched_class)
1524 return 0;
1525
Ingo Molnar6bc16652007-10-15 17:00:18 +02001526 if (sysctl_sched_migration_cost == -1)
1527 return 1;
1528 if (sysctl_sched_migration_cost == 0)
1529 return 0;
1530
Ingo Molnarcc367732007-10-15 17:00:18 +02001531 delta = now - p->se.exec_start;
1532
1533 return delta < (s64)sysctl_sched_migration_cost;
1534}
1535
1536
Ingo Molnardd41f592007-07-09 18:51:59 +02001537void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001538{
Ingo Molnardd41f592007-07-09 18:51:59 +02001539 int old_cpu = task_cpu(p);
1540 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001541 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1542 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001543 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001544
1545 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001546
1547#ifdef CONFIG_SCHEDSTATS
1548 if (p->se.wait_start)
1549 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001550 if (p->se.sleep_start)
1551 p->se.sleep_start -= clock_offset;
1552 if (p->se.block_start)
1553 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001554 if (old_cpu != new_cpu) {
1555 schedstat_inc(p, se.nr_migrations);
1556 if (task_hot(p, old_rq->clock, NULL))
1557 schedstat_inc(p, se.nr_forced2_migrations);
1558 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001559#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001560 p->se.vruntime -= old_cfsrq->min_vruntime -
1561 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001562
1563 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001564}
1565
Ingo Molnar70b97a72006-07-03 00:25:42 -07001566struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Ingo Molnar36c8b582006-07-03 00:25:41 -07001569 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 int dest_cpu;
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001573};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575/*
1576 * The task's runqueue lock must be held.
1577 * Returns true if you have to wait for migration thread.
1578 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001579static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001580migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001582 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 /*
1585 * If the task is not on a runqueue (and not running), then
1586 * it is sufficient to simply update the task's cpu field.
1587 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001588 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 set_task_cpu(p, dest_cpu);
1590 return 0;
1591 }
1592
1593 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 req->task = p;
1595 req->dest_cpu = dest_cpu;
1596 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return 1;
1599}
1600
1601/*
1602 * wait_task_inactive - wait for a thread to unschedule.
1603 *
1604 * The caller must ensure that the task *will* unschedule sometime soon,
1605 * else this function might spin for a *long* time. This function can't
1606 * be called with interrupts off, or it may introduce deadlock with
1607 * smp_call_function() if an IPI is sent by the same process we are
1608 * waiting to become inactive.
1609 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001610void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
1612 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001613 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001614 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Andi Kleen3a5c3592007-10-15 17:00:14 +02001616 for (;;) {
1617 /*
1618 * We do the initial early heuristics without holding
1619 * any task-queue locks at all. We'll only try to get
1620 * the runqueue lock when things look like they will
1621 * work out!
1622 */
1623 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001624
Andi Kleen3a5c3592007-10-15 17:00:14 +02001625 /*
1626 * If the task is actively running on another CPU
1627 * still, just relax and busy-wait without holding
1628 * any locks.
1629 *
1630 * NOTE! Since we don't hold any locks, it's not
1631 * even sure that "rq" stays as the right runqueue!
1632 * But we don't care, since "task_running()" will
1633 * return false if the runqueue has changed and p
1634 * is actually now running somewhere else!
1635 */
1636 while (task_running(rq, p))
1637 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001638
Andi Kleen3a5c3592007-10-15 17:00:14 +02001639 /*
1640 * Ok, time to look more closely! We need the rq
1641 * lock now, to be *sure*. If we're wrong, we'll
1642 * just go back and repeat.
1643 */
1644 rq = task_rq_lock(p, &flags);
1645 running = task_running(rq, p);
1646 on_rq = p->se.on_rq;
1647 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001648
Andi Kleen3a5c3592007-10-15 17:00:14 +02001649 /*
1650 * Was it really running after all now that we
1651 * checked with the proper locks actually held?
1652 *
1653 * Oops. Go back and try again..
1654 */
1655 if (unlikely(running)) {
1656 cpu_relax();
1657 continue;
1658 }
1659
1660 /*
1661 * It's not enough that it's not actively running,
1662 * it must be off the runqueue _entirely_, and not
1663 * preempted!
1664 *
1665 * So if it wa still runnable (but just not actively
1666 * running right now), it's preempted, and we should
1667 * yield - it could be a while.
1668 */
1669 if (unlikely(on_rq)) {
1670 schedule_timeout_uninterruptible(1);
1671 continue;
1672 }
1673
1674 /*
1675 * Ahh, all good. It wasn't running, and it wasn't
1676 * runnable, which means that it will never become
1677 * running in the future either. We're all done!
1678 */
1679 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681}
1682
1683/***
1684 * kick_process - kick a running thread to enter/exit the kernel
1685 * @p: the to-be-kicked thread
1686 *
1687 * Cause a process which is running on another CPU to enter
1688 * kernel-mode, without any delay. (to get signals handled.)
1689 *
1690 * NOTE: this function doesnt have to take the runqueue lock,
1691 * because all it wants to ensure is that the remote task enters
1692 * the kernel. If the IPI races and the task has been migrated
1693 * to another CPU then no harm is done and the purpose has been
1694 * achieved as well.
1695 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001696void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
1698 int cpu;
1699
1700 preempt_disable();
1701 cpu = task_cpu(p);
1702 if ((cpu != smp_processor_id()) && task_curr(p))
1703 smp_send_reschedule(cpu);
1704 preempt_enable();
1705}
1706
1707/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001708 * Return a low guess at the load of a migration-source cpu weighted
1709 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 *
1711 * We want to under-estimate the load of migration sources, to
1712 * balance conservatively.
1713 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001714static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001715{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001716 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001717 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001718
Peter Williams2dd73a42006-06-27 02:54:34 -07001719 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001720 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001721
Ingo Molnardd41f592007-07-09 18:51:59 +02001722 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723}
1724
1725/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001726 * Return a high guess at the load of a migration-target cpu weighted
1727 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001729static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001730{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001731 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001732 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001733
Peter Williams2dd73a42006-06-27 02:54:34 -07001734 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001735 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001736
Ingo Molnardd41f592007-07-09 18:51:59 +02001737 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001738}
1739
1740/*
1741 * Return the average load per task on the cpu's run queue
1742 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001743static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07001744{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001745 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001746 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001747 unsigned long n = rq->nr_running;
1748
Ingo Molnardd41f592007-07-09 18:51:59 +02001749 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750}
1751
Nick Piggin147cbb42005-06-25 14:57:19 -07001752/*
1753 * find_idlest_group finds and returns the least busy CPU group within the
1754 * domain.
1755 */
1756static struct sched_group *
1757find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1758{
1759 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1760 unsigned long min_load = ULONG_MAX, this_load = 0;
1761 int load_idx = sd->forkexec_idx;
1762 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1763
1764 do {
1765 unsigned long load, avg_load;
1766 int local_group;
1767 int i;
1768
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001769 /* Skip over this group if it has no CPUs allowed */
1770 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001771 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001772
Nick Piggin147cbb42005-06-25 14:57:19 -07001773 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001774
1775 /* Tally up the load of all CPUs in the group */
1776 avg_load = 0;
1777
1778 for_each_cpu_mask(i, group->cpumask) {
1779 /* Bias balancing toward cpus of our domain */
1780 if (local_group)
1781 load = source_load(i, load_idx);
1782 else
1783 load = target_load(i, load_idx);
1784
1785 avg_load += load;
1786 }
1787
1788 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001789 avg_load = sg_div_cpu_power(group,
1790 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001791
1792 if (local_group) {
1793 this_load = avg_load;
1794 this = group;
1795 } else if (avg_load < min_load) {
1796 min_load = avg_load;
1797 idlest = group;
1798 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001799 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001800
1801 if (!idlest || 100*this_load < imbalance*min_load)
1802 return NULL;
1803 return idlest;
1804}
1805
1806/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001807 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001808 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001809static int
1810find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001811{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001812 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001813 unsigned long load, min_load = ULONG_MAX;
1814 int idlest = -1;
1815 int i;
1816
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001817 /* Traverse only the allowed CPUs */
1818 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1819
1820 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001821 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001822
1823 if (load < min_load || (load == min_load && i == this_cpu)) {
1824 min_load = load;
1825 idlest = i;
1826 }
1827 }
1828
1829 return idlest;
1830}
1831
Nick Piggin476d1392005-06-25 14:57:29 -07001832/*
1833 * sched_balance_self: balance the current task (running on cpu) in domains
1834 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1835 * SD_BALANCE_EXEC.
1836 *
1837 * Balance, ie. select the least loaded group.
1838 *
1839 * Returns the target CPU number, or the same CPU if no balancing is needed.
1840 *
1841 * preempt must be disabled.
1842 */
1843static int sched_balance_self(int cpu, int flag)
1844{
1845 struct task_struct *t = current;
1846 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001847
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001848 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001849 /*
1850 * If power savings logic is enabled for a domain, stop there.
1851 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001852 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1853 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001854 if (tmp->flags & flag)
1855 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001856 }
Nick Piggin476d1392005-06-25 14:57:29 -07001857
1858 while (sd) {
1859 cpumask_t span;
1860 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001861 int new_cpu, weight;
1862
1863 if (!(sd->flags & flag)) {
1864 sd = sd->child;
1865 continue;
1866 }
Nick Piggin476d1392005-06-25 14:57:29 -07001867
1868 span = sd->span;
1869 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001870 if (!group) {
1871 sd = sd->child;
1872 continue;
1873 }
Nick Piggin476d1392005-06-25 14:57:29 -07001874
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001875 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001876 if (new_cpu == -1 || new_cpu == cpu) {
1877 /* Now try balancing at a lower domain level of cpu */
1878 sd = sd->child;
1879 continue;
1880 }
Nick Piggin476d1392005-06-25 14:57:29 -07001881
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001882 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001883 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001884 sd = NULL;
1885 weight = cpus_weight(span);
1886 for_each_domain(cpu, tmp) {
1887 if (weight <= cpus_weight(tmp->span))
1888 break;
1889 if (tmp->flags & flag)
1890 sd = tmp;
1891 }
1892 /* while loop will break here if sd == NULL */
1893 }
1894
1895 return cpu;
1896}
1897
1898#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900/***
1901 * try_to_wake_up - wake up a thread
1902 * @p: the to-be-woken-up thread
1903 * @state: the mask of task states that can be woken
1904 * @sync: do a synchronous wakeup?
1905 *
1906 * Put it on the run-queue if it's not already there. The "current"
1907 * thread is always on the run-queue (except when the actual
1908 * re-schedule is in progress), and as such you're allowed to do
1909 * the simpler "current->state = TASK_RUNNING" to mark yourself
1910 * runnable without the overhead of this.
1911 *
1912 * returns failure only if the task is already active.
1913 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001914static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
Ingo Molnarcc367732007-10-15 17:00:18 +02001916 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 unsigned long flags;
1918 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001919 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Ingo Molnarb85d0662008-03-16 20:03:22 +01001921 if (!sched_feat(SYNC_WAKEUPS))
1922 sync = 0;
1923
Linus Torvalds04e2f172008-02-23 18:05:03 -08001924 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 rq = task_rq_lock(p, &flags);
1926 old_state = p->state;
1927 if (!(old_state & state))
1928 goto out;
1929
Ingo Molnardd41f592007-07-09 18:51:59 +02001930 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 goto out_running;
1932
1933 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02001934 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 this_cpu = smp_processor_id();
1936
1937#ifdef CONFIG_SMP
1938 if (unlikely(task_running(rq, p)))
1939 goto out_activate;
1940
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01001941 cpu = p->sched_class->select_task_rq(p, sync);
1942 if (cpu != orig_cpu) {
1943 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 task_rq_unlock(rq, &flags);
1945 /* might preempt at this point */
1946 rq = task_rq_lock(p, &flags);
1947 old_state = p->state;
1948 if (!(old_state & state))
1949 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02001950 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 goto out_running;
1952
1953 this_cpu = smp_processor_id();
1954 cpu = task_cpu(p);
1955 }
1956
Gregory Haskinse7693a32008-01-25 21:08:09 +01001957#ifdef CONFIG_SCHEDSTATS
1958 schedstat_inc(rq, ttwu_count);
1959 if (cpu == this_cpu)
1960 schedstat_inc(rq, ttwu_local);
1961 else {
1962 struct sched_domain *sd;
1963 for_each_domain(this_cpu, sd) {
1964 if (cpu_isset(cpu, sd->span)) {
1965 schedstat_inc(sd, ttwu_wake_remote);
1966 break;
1967 }
1968 }
1969 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01001970#endif
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972out_activate:
1973#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02001974 schedstat_inc(p, se.nr_wakeups);
1975 if (sync)
1976 schedstat_inc(p, se.nr_wakeups_sync);
1977 if (orig_cpu != cpu)
1978 schedstat_inc(p, se.nr_wakeups_migrate);
1979 if (cpu == this_cpu)
1980 schedstat_inc(p, se.nr_wakeups_local);
1981 else
1982 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02001983 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02001984 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 success = 1;
1986
1987out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01001988 check_preempt_curr(rq, p);
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01001991#ifdef CONFIG_SMP
1992 if (p->sched_class->task_wake_up)
1993 p->sched_class->task_wake_up(rq, p);
1994#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995out:
1996 task_rq_unlock(rq, &flags);
1997
1998 return success;
1999}
2000
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002001int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002003 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005EXPORT_SYMBOL(wake_up_process);
2006
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002007int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 return try_to_wake_up(p, state, 0);
2010}
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012/*
2013 * Perform scheduler related setup for a newly forked process p.
2014 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002015 *
2016 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002018static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
Ingo Molnardd41f592007-07-09 18:51:59 +02002020 p->se.exec_start = 0;
2021 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002022 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002023 p->se.last_wakeup = 0;
2024 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002025
2026#ifdef CONFIG_SCHEDSTATS
2027 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002028 p->se.sum_sleep_runtime = 0;
2029 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002030 p->se.block_start = 0;
2031 p->se.sleep_max = 0;
2032 p->se.block_max = 0;
2033 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002034 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002035 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002036#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002037
Peter Zijlstrafa717062008-01-25 21:08:27 +01002038 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002039 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07002040
Avi Kivitye107be32007-07-26 13:40:43 +02002041#ifdef CONFIG_PREEMPT_NOTIFIERS
2042 INIT_HLIST_HEAD(&p->preempt_notifiers);
2043#endif
2044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 /*
2046 * We mark the process as running here, but have not actually
2047 * inserted it onto the runqueue yet. This guarantees that
2048 * nobody will actually run it, and a signal or other external
2049 * event cannot wake it up and insert it on the runqueue either.
2050 */
2051 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002052}
2053
2054/*
2055 * fork()/clone()-time setup:
2056 */
2057void sched_fork(struct task_struct *p, int clone_flags)
2058{
2059 int cpu = get_cpu();
2060
2061 __sched_fork(p);
2062
2063#ifdef CONFIG_SMP
2064 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2065#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002066 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002067
2068 /*
2069 * Make sure we do not leak PI boosting priority to the child:
2070 */
2071 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002072 if (!rt_prio(p->prio))
2073 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002074
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002075#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002076 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002077 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002079#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002080 p->oncpu = 0;
2081#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002083 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002084 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002086 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087}
2088
2089/*
2090 * wake_up_new_task - wake up a newly created task for the first time.
2091 *
2092 * This function will do some initial scheduler statistics housekeeping
2093 * that must be done for every newly created context, then puts the task
2094 * on the runqueue and wakes it.
2095 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002096void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
2098 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002099 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002103 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 p->prio = effective_prio(p);
2106
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002107 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002108 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002111 * Let the scheduling class do new task startup
2112 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002114 p->sched_class->task_new(rq, p);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01002115 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002117 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002118#ifdef CONFIG_SMP
2119 if (p->sched_class->task_wake_up)
2120 p->sched_class->task_wake_up(rq, p);
2121#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002122 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
Avi Kivitye107be32007-07-26 13:40:43 +02002125#ifdef CONFIG_PREEMPT_NOTIFIERS
2126
2127/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002128 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2129 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002130 */
2131void preempt_notifier_register(struct preempt_notifier *notifier)
2132{
2133 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2134}
2135EXPORT_SYMBOL_GPL(preempt_notifier_register);
2136
2137/**
2138 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002139 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002140 *
2141 * This is safe to call from within a preemption notifier.
2142 */
2143void preempt_notifier_unregister(struct preempt_notifier *notifier)
2144{
2145 hlist_del(&notifier->link);
2146}
2147EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2148
2149static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2150{
2151 struct preempt_notifier *notifier;
2152 struct hlist_node *node;
2153
2154 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2155 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2156}
2157
2158static void
2159fire_sched_out_preempt_notifiers(struct task_struct *curr,
2160 struct task_struct *next)
2161{
2162 struct preempt_notifier *notifier;
2163 struct hlist_node *node;
2164
2165 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2166 notifier->ops->sched_out(notifier, next);
2167}
2168
2169#else
2170
2171static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2172{
2173}
2174
2175static void
2176fire_sched_out_preempt_notifiers(struct task_struct *curr,
2177 struct task_struct *next)
2178{
2179}
2180
2181#endif
2182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002184 * prepare_task_switch - prepare to switch tasks
2185 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002186 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002187 * @next: the task we are going to switch to.
2188 *
2189 * This is called with the rq lock held and interrupts off. It must
2190 * be paired with a subsequent finish_task_switch after the context
2191 * switch.
2192 *
2193 * prepare_task_switch sets up locking and calls architecture specific
2194 * hooks.
2195 */
Avi Kivitye107be32007-07-26 13:40:43 +02002196static inline void
2197prepare_task_switch(struct rq *rq, struct task_struct *prev,
2198 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002199{
Avi Kivitye107be32007-07-26 13:40:43 +02002200 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002201 prepare_lock_switch(rq, next);
2202 prepare_arch_switch(next);
2203}
2204
2205/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002207 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 * @prev: the thread we just switched away from.
2209 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002210 * finish_task_switch must be called after the context switch, paired
2211 * with a prepare_task_switch call before the context switch.
2212 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2213 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 *
2215 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002216 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 * with the lock held can cause deadlocks; see schedule() for
2218 * details.)
2219 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002220static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 __releases(rq->lock)
2222{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002224 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
2226 rq->prev_mm = NULL;
2227
2228 /*
2229 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002230 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002231 * schedule one last time. The schedule call will never return, and
2232 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002233 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 * still held, otherwise prev could be scheduled on another cpu, die
2235 * there before we look at prev->state, and then the reference would
2236 * be dropped twice.
2237 * Manfred Spraul <manfred@colorfullife.com>
2238 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002239 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002240 finish_arch_switch(prev);
2241 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002242#ifdef CONFIG_SMP
2243 if (current->sched_class->post_schedule)
2244 current->sched_class->post_schedule(rq);
2245#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002246
Avi Kivitye107be32007-07-26 13:40:43 +02002247 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 if (mm)
2249 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002250 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002251 /*
2252 * Remove function-return probe instances associated with this
2253 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002254 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002255 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258}
2259
2260/**
2261 * schedule_tail - first thing a freshly forked thread must call.
2262 * @prev: the thread we just switched away from.
2263 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002264asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 __releases(rq->lock)
2266{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002267 struct rq *rq = this_rq();
2268
Nick Piggin4866cde2005-06-25 14:57:23 -07002269 finish_task_switch(rq, prev);
2270#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2271 /* In this case, finish_task_switch does not reenable preemption */
2272 preempt_enable();
2273#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002275 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277
2278/*
2279 * context_switch - switch to the new MM and the new
2280 * thread's register state.
2281 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002282static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002283context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002284 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285{
Ingo Molnardd41f592007-07-09 18:51:59 +02002286 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Avi Kivitye107be32007-07-26 13:40:43 +02002288 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002289 mm = next->mm;
2290 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002291 /*
2292 * For paravirt, this is coupled with an exit in switch_to to
2293 * combine the page table reload and the switch backend into
2294 * one hypercall.
2295 */
2296 arch_enter_lazy_cpu_mode();
2297
Ingo Molnardd41f592007-07-09 18:51:59 +02002298 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 next->active_mm = oldmm;
2300 atomic_inc(&oldmm->mm_count);
2301 enter_lazy_tlb(oldmm, next);
2302 } else
2303 switch_mm(oldmm, mm, next);
2304
Ingo Molnardd41f592007-07-09 18:51:59 +02002305 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 rq->prev_mm = oldmm;
2308 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002309 /*
2310 * Since the runqueue lock will be released by the next
2311 * task (which is an invalid locking op but in the case
2312 * of the scheduler it's an obvious special-case), so we
2313 * do an early lockdep release here:
2314 */
2315#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002316 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002317#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319 /* Here we just switch the register state and the stack. */
2320 switch_to(prev, next, prev);
2321
Ingo Molnardd41f592007-07-09 18:51:59 +02002322 barrier();
2323 /*
2324 * this_rq must be evaluated again because prev may have moved
2325 * CPUs since it called schedule(), thus the 'rq' on its stack
2326 * frame will be invalid.
2327 */
2328 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329}
2330
2331/*
2332 * nr_running, nr_uninterruptible and nr_context_switches:
2333 *
2334 * externally visible scheduler statistics: current number of runnable
2335 * threads, current number of uninterruptible-sleeping threads, total
2336 * number of context switches performed since bootup.
2337 */
2338unsigned long nr_running(void)
2339{
2340 unsigned long i, sum = 0;
2341
2342 for_each_online_cpu(i)
2343 sum += cpu_rq(i)->nr_running;
2344
2345 return sum;
2346}
2347
2348unsigned long nr_uninterruptible(void)
2349{
2350 unsigned long i, sum = 0;
2351
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002352 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 sum += cpu_rq(i)->nr_uninterruptible;
2354
2355 /*
2356 * Since we read the counters lockless, it might be slightly
2357 * inaccurate. Do not allow it to go below zero though:
2358 */
2359 if (unlikely((long)sum < 0))
2360 sum = 0;
2361
2362 return sum;
2363}
2364
2365unsigned long long nr_context_switches(void)
2366{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002367 int i;
2368 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002370 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 sum += cpu_rq(i)->nr_switches;
2372
2373 return sum;
2374}
2375
2376unsigned long nr_iowait(void)
2377{
2378 unsigned long i, sum = 0;
2379
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002380 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2382
2383 return sum;
2384}
2385
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002386unsigned long nr_active(void)
2387{
2388 unsigned long i, running = 0, uninterruptible = 0;
2389
2390 for_each_online_cpu(i) {
2391 running += cpu_rq(i)->nr_running;
2392 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2393 }
2394
2395 if (unlikely((long)uninterruptible < 0))
2396 uninterruptible = 0;
2397
2398 return running + uninterruptible;
2399}
2400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002402 * Update rq->cpu_load[] statistics. This function is usually called every
2403 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002404 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002405static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002406{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002407 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002408 int i, scale;
2409
2410 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002411
2412 /* Update our load: */
2413 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2414 unsigned long old_load, new_load;
2415
2416 /* scale is effectively 1 << i now, and >> i divides by scale */
2417
2418 old_load = this_rq->cpu_load[i];
2419 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002420 /*
2421 * Round up the averaging division if load is increasing. This
2422 * prevents us from getting stuck on 9 if the load is 10, for
2423 * example.
2424 */
2425 if (new_load > old_load)
2426 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002427 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2428 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002429}
2430
Ingo Molnardd41f592007-07-09 18:51:59 +02002431#ifdef CONFIG_SMP
2432
Ingo Molnar48f24c42006-07-03 00:25:40 -07002433/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 * double_rq_lock - safely lock two runqueues
2435 *
2436 * Note this does not disable interrupts like task_rq_lock,
2437 * you need to do so manually before calling.
2438 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002439static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 __acquires(rq1->lock)
2441 __acquires(rq2->lock)
2442{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002443 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 if (rq1 == rq2) {
2445 spin_lock(&rq1->lock);
2446 __acquire(rq2->lock); /* Fake it out ;) */
2447 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002448 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 spin_lock(&rq1->lock);
2450 spin_lock(&rq2->lock);
2451 } else {
2452 spin_lock(&rq2->lock);
2453 spin_lock(&rq1->lock);
2454 }
2455 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002456 update_rq_clock(rq1);
2457 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458}
2459
2460/*
2461 * double_rq_unlock - safely unlock two runqueues
2462 *
2463 * Note this does not restore interrupts like task_rq_unlock,
2464 * you need to do so manually after calling.
2465 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002466static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 __releases(rq1->lock)
2468 __releases(rq2->lock)
2469{
2470 spin_unlock(&rq1->lock);
2471 if (rq1 != rq2)
2472 spin_unlock(&rq2->lock);
2473 else
2474 __release(rq2->lock);
2475}
2476
2477/*
2478 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2479 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002480static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 __releases(this_rq->lock)
2482 __acquires(busiest->lock)
2483 __acquires(this_rq->lock)
2484{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002485 int ret = 0;
2486
Kirill Korotaev054b9102006-12-10 02:20:11 -08002487 if (unlikely(!irqs_disabled())) {
2488 /* printk() doesn't work good under rq->lock */
2489 spin_unlock(&this_rq->lock);
2490 BUG_ON(1);
2491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002493 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 spin_unlock(&this_rq->lock);
2495 spin_lock(&busiest->lock);
2496 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002497 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 } else
2499 spin_lock(&busiest->lock);
2500 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002501 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502}
2503
2504/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 * If dest_cpu is allowed for this process, migrate the task to it.
2506 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002507 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 * the cpu_allowed mask is restored.
2509 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002510static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002512 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002514 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516 rq = task_rq_lock(p, &flags);
2517 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2518 || unlikely(cpu_is_offline(dest_cpu)))
2519 goto out;
2520
2521 /* force the process onto the specified CPU */
2522 if (migrate_task(p, dest_cpu, &req)) {
2523 /* Need to wait for migration thread (might exit: take ref). */
2524 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002525
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 get_task_struct(mt);
2527 task_rq_unlock(rq, &flags);
2528 wake_up_process(mt);
2529 put_task_struct(mt);
2530 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002531
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 return;
2533 }
2534out:
2535 task_rq_unlock(rq, &flags);
2536}
2537
2538/*
Nick Piggin476d1392005-06-25 14:57:29 -07002539 * sched_exec - execve() is a valuable balancing opportunity, because at
2540 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 */
2542void sched_exec(void)
2543{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002545 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002547 if (new_cpu != this_cpu)
2548 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549}
2550
2551/*
2552 * pull_task - move a task from a remote runqueue to the local runqueue.
2553 * Both runqueues must be locked.
2554 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002555static void pull_task(struct rq *src_rq, struct task_struct *p,
2556 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002558 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002560 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 /*
2562 * Note that idle threads have a prio of MAX_PRIO, for this test
2563 * to be always true for them.
2564 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002565 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566}
2567
2568/*
2569 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2570 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002571static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002572int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002573 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002574 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575{
2576 /*
2577 * We do not migrate tasks that are:
2578 * 1) running (obviously), or
2579 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2580 * 3) are cache-hot on their current CPU.
2581 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002582 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2583 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002585 }
Nick Piggin81026792005-06-25 14:57:07 -07002586 *all_pinned = 0;
2587
Ingo Molnarcc367732007-10-15 17:00:18 +02002588 if (task_running(rq, p)) {
2589 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002590 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Ingo Molnarda84d962007-10-15 17:00:18 +02002593 /*
2594 * Aggressive migration if:
2595 * 1) task is cache cold, or
2596 * 2) too many balance attempts have failed.
2597 */
2598
Ingo Molnar6bc16652007-10-15 17:00:18 +02002599 if (!task_hot(p, rq->clock, sd) ||
2600 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002601#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002602 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002603 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002604 schedstat_inc(p, se.nr_forced_migrations);
2605 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002606#endif
2607 return 1;
2608 }
2609
Ingo Molnarcc367732007-10-15 17:00:18 +02002610 if (task_hot(p, rq->clock, sd)) {
2611 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002612 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 return 1;
2615}
2616
Peter Williamse1d14842007-10-24 18:23:51 +02002617static unsigned long
2618balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2619 unsigned long max_load_move, struct sched_domain *sd,
2620 enum cpu_idle_type idle, int *all_pinned,
2621 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002622{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002623 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002624 struct task_struct *p;
2625 long rem_load_move = max_load_move;
2626
Peter Williamse1d14842007-10-24 18:23:51 +02002627 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002628 goto out;
2629
2630 pinned = 1;
2631
2632 /*
2633 * Start the load-balancing iterator:
2634 */
2635 p = iterator->start(iterator->arg);
2636next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002637 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002638 goto out;
2639 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002640 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002641 * skip a task if it will be the highest priority task (i.e. smallest
2642 * prio value) on its new queue regardless of its load weight
2643 */
2644 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2645 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002646 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002647 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002648 p = iterator->next(iterator->arg);
2649 goto next;
2650 }
2651
2652 pull_task(busiest, p, this_rq, this_cpu);
2653 pulled++;
2654 rem_load_move -= p->se.load.weight;
2655
2656 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002657 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002658 */
Peter Williamse1d14842007-10-24 18:23:51 +02002659 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002660 if (p->prio < *this_best_prio)
2661 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002662 p = iterator->next(iterator->arg);
2663 goto next;
2664 }
2665out:
2666 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002667 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002668 * so we can safely collect pull_task() stats here rather than
2669 * inside pull_task().
2670 */
2671 schedstat_add(sd, lb_gained[idle], pulled);
2672
2673 if (all_pinned)
2674 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002675
2676 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002677}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679/*
Peter Williams43010652007-08-09 11:16:46 +02002680 * move_tasks tries to move up to max_load_move weighted load from busiest to
2681 * this_rq, as part of a balancing operation within domain "sd".
2682 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 *
2684 * Called with both runqueues locked.
2685 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002686static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002687 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002688 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002689 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002691 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002692 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002693 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
Ingo Molnardd41f592007-07-09 18:51:59 +02002695 do {
Peter Williams43010652007-08-09 11:16:46 +02002696 total_load_moved +=
2697 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002698 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002699 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002700 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002701 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
Peter Williams43010652007-08-09 11:16:46 +02002703 return total_load_moved > 0;
2704}
2705
Peter Williamse1d14842007-10-24 18:23:51 +02002706static int
2707iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2708 struct sched_domain *sd, enum cpu_idle_type idle,
2709 struct rq_iterator *iterator)
2710{
2711 struct task_struct *p = iterator->start(iterator->arg);
2712 int pinned = 0;
2713
2714 while (p) {
2715 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2716 pull_task(busiest, p, this_rq, this_cpu);
2717 /*
2718 * Right now, this is only the second place pull_task()
2719 * is called, so we can safely collect pull_task()
2720 * stats here rather than inside pull_task().
2721 */
2722 schedstat_inc(sd, lb_gained[idle]);
2723
2724 return 1;
2725 }
2726 p = iterator->next(iterator->arg);
2727 }
2728
2729 return 0;
2730}
2731
Peter Williams43010652007-08-09 11:16:46 +02002732/*
2733 * move_one_task tries to move exactly one task from busiest to this_rq, as
2734 * part of active balancing operations within "domain".
2735 * Returns 1 if successful and 0 otherwise.
2736 *
2737 * Called with both runqueues locked.
2738 */
2739static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2740 struct sched_domain *sd, enum cpu_idle_type idle)
2741{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002742 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002743
2744 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002745 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002746 return 1;
2747
2748 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749}
2750
2751/*
2752 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002753 * domain. It calculates and returns the amount of weighted load which
2754 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 */
2756static struct sched_group *
2757find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002758 unsigned long *imbalance, enum cpu_idle_type idle,
2759 int *sd_idle, cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760{
2761 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2762 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002763 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002764 unsigned long busiest_load_per_task, busiest_nr_running;
2765 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002766 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002767#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2768 int power_savings_balance = 1;
2769 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2770 unsigned long min_nr_running = ULONG_MAX;
2771 struct sched_group *group_min = NULL, *group_leader = NULL;
2772#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
2774 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002775 busiest_load_per_task = busiest_nr_running = 0;
2776 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002777 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002778 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002779 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002780 load_idx = sd->newidle_idx;
2781 else
2782 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002785 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 int local_group;
2787 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002788 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002789 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002790 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
2792 local_group = cpu_isset(this_cpu, group->cpumask);
2793
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002794 if (local_group)
2795 balance_cpu = first_cpu(group->cpumask);
2796
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002798 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002799 max_cpu_load = 0;
2800 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
2802 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002803 struct rq *rq;
2804
2805 if (!cpu_isset(i, *cpus))
2806 continue;
2807
2808 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002809
Suresh Siddha9439aab2007-07-19 21:28:35 +02002810 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002811 *sd_idle = 0;
2812
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002814 if (local_group) {
2815 if (idle_cpu(i) && !first_idle_cpu) {
2816 first_idle_cpu = 1;
2817 balance_cpu = i;
2818 }
2819
Nick Piggina2000572006-02-10 01:51:02 -08002820 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002821 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002822 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002823 if (load > max_cpu_load)
2824 max_cpu_load = load;
2825 if (min_cpu_load > load)
2826 min_cpu_load = load;
2827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
2829 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002830 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002831 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 }
2833
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002834 /*
2835 * First idle cpu or the first cpu(busiest) in this sched group
2836 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002837 * domains. In the newly idle case, we will allow all the cpu's
2838 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002839 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002840 if (idle != CPU_NEWLY_IDLE && local_group &&
2841 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002842 *balance = 0;
2843 goto ret;
2844 }
2845
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002847 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
2849 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002850 avg_load = sg_div_cpu_power(group,
2851 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Ken Chen908a7c12007-10-17 16:55:11 +02002853 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
2854 __group_imb = 1;
2855
Eric Dumazet5517d862007-05-08 00:32:57 -07002856 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002857
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 if (local_group) {
2859 this_load = avg_load;
2860 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002861 this_nr_running = sum_nr_running;
2862 this_load_per_task = sum_weighted_load;
2863 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02002864 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 max_load = avg_load;
2866 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002867 busiest_nr_running = sum_nr_running;
2868 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02002869 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002871
2872#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2873 /*
2874 * Busy processors will not participate in power savings
2875 * balance.
2876 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002877 if (idle == CPU_NOT_IDLE ||
2878 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2879 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002880
2881 /*
2882 * If the local group is idle or completely loaded
2883 * no need to do power savings balance at this domain
2884 */
2885 if (local_group && (this_nr_running >= group_capacity ||
2886 !this_nr_running))
2887 power_savings_balance = 0;
2888
Ingo Molnardd41f592007-07-09 18:51:59 +02002889 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002890 * If a group is already running at full capacity or idle,
2891 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002892 */
2893 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002894 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002895 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002896
Ingo Molnardd41f592007-07-09 18:51:59 +02002897 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002898 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002899 * This is the group from where we need to pick up the load
2900 * for saving power
2901 */
2902 if ((sum_nr_running < min_nr_running) ||
2903 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002904 first_cpu(group->cpumask) <
2905 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002906 group_min = group;
2907 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002908 min_load_per_task = sum_weighted_load /
2909 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002910 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002911
Ingo Molnardd41f592007-07-09 18:51:59 +02002912 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002913 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002914 * capacity but still has some space to pick up some load
2915 * from other group and save more power
2916 */
2917 if (sum_nr_running <= group_capacity - 1) {
2918 if (sum_nr_running > leader_nr_running ||
2919 (sum_nr_running == leader_nr_running &&
2920 first_cpu(group->cpumask) >
2921 first_cpu(group_leader->cpumask))) {
2922 group_leader = group;
2923 leader_nr_running = sum_nr_running;
2924 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002925 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002926group_next:
2927#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 group = group->next;
2929 } while (group != sd->groups);
2930
Peter Williams2dd73a42006-06-27 02:54:34 -07002931 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 goto out_balanced;
2933
2934 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2935
2936 if (this_load >= avg_load ||
2937 100*max_load <= sd->imbalance_pct*this_load)
2938 goto out_balanced;
2939
Peter Williams2dd73a42006-06-27 02:54:34 -07002940 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002941 if (group_imb)
2942 busiest_load_per_task = min(busiest_load_per_task, avg_load);
2943
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 /*
2945 * We're trying to get all the cpus to the average_load, so we don't
2946 * want to push ourselves above the average load, nor do we wish to
2947 * reduce the max loaded cpu below the average load, as either of these
2948 * actions would just result in more rebalancing later, and ping-pong
2949 * tasks around. Thus we look for the minimum possible imbalance.
2950 * Negative imbalances (*we* are more loaded than anyone else) will
2951 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002952 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 * appear as very large values with unsigned longs.
2954 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002955 if (max_load <= busiest_load_per_task)
2956 goto out_balanced;
2957
2958 /*
2959 * In the presence of smp nice balancing, certain scenarios can have
2960 * max load less than avg load(as we skip the groups at or below
2961 * its cpu_power, while calculating max_load..)
2962 */
2963 if (max_load < avg_load) {
2964 *imbalance = 0;
2965 goto small_imbalance;
2966 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002967
2968 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002969 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002970
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07002972 *imbalance = min(max_pull * busiest->__cpu_power,
2973 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 / SCHED_LOAD_SCALE;
2975
Peter Williams2dd73a42006-06-27 02:54:34 -07002976 /*
2977 * if *imbalance is less than the average load per runnable task
2978 * there is no gaurantee that any tasks will be moved so we'll have
2979 * a think about bumping its value to force at least one task to be
2980 * moved
2981 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002982 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002983 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002984 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Peter Williams2dd73a42006-06-27 02:54:34 -07002986small_imbalance:
2987 pwr_move = pwr_now = 0;
2988 imbn = 2;
2989 if (this_nr_running) {
2990 this_load_per_task /= this_nr_running;
2991 if (busiest_load_per_task > this_load_per_task)
2992 imbn = 1;
2993 } else
2994 this_load_per_task = SCHED_LOAD_SCALE;
2995
Ingo Molnardd41f592007-07-09 18:51:59 +02002996 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
2997 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002998 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 return busiest;
3000 }
3001
3002 /*
3003 * OK, we don't have enough imbalance to justify moving tasks,
3004 * however we may be able to increase total CPU power used by
3005 * moving them.
3006 */
3007
Eric Dumazet5517d862007-05-08 00:32:57 -07003008 pwr_now += busiest->__cpu_power *
3009 min(busiest_load_per_task, max_load);
3010 pwr_now += this->__cpu_power *
3011 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 pwr_now /= SCHED_LOAD_SCALE;
3013
3014 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003015 tmp = sg_div_cpu_power(busiest,
3016 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003018 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003019 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
3021 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003022 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003023 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003024 tmp = sg_div_cpu_power(this,
3025 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003027 tmp = sg_div_cpu_power(this,
3028 busiest_load_per_task * SCHED_LOAD_SCALE);
3029 pwr_move += this->__cpu_power *
3030 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 pwr_move /= SCHED_LOAD_SCALE;
3032
3033 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003034 if (pwr_move > pwr_now)
3035 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 }
3037
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 return busiest;
3039
3040out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003041#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003042 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003043 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003045 if (this == group_leader && group_leader != group_min) {
3046 *imbalance = min_load_per_task;
3047 return group_min;
3048 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003049#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003050ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 *imbalance = 0;
3052 return NULL;
3053}
3054
3055/*
3056 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3057 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003058static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003059find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003060 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003062 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003063 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 int i;
3065
3066 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003067 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003068
3069 if (!cpu_isset(i, *cpus))
3070 continue;
3071
Ingo Molnar48f24c42006-07-03 00:25:40 -07003072 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003073 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Ingo Molnardd41f592007-07-09 18:51:59 +02003075 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003076 continue;
3077
Ingo Molnardd41f592007-07-09 18:51:59 +02003078 if (wl > max_load) {
3079 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003080 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 }
3082 }
3083
3084 return busiest;
3085}
3086
3087/*
Nick Piggin77391d72005-06-25 14:57:30 -07003088 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3089 * so long as it is large enough.
3090 */
3091#define MAX_PINNED_INTERVAL 512
3092
3093/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3095 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003097static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003098 struct sched_domain *sd, enum cpu_idle_type idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003099 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100{
Peter Williams43010652007-08-09 11:16:46 +02003101 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003104 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003105 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003106 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07003107
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003108 /*
3109 * When power savings policy is enabled for the parent domain, idle
3110 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003111 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003112 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003113 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003114 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003115 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003116 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Ingo Molnar2d723762007-10-15 17:00:12 +02003118 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003120redo:
3121 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003122 &cpus, balance);
3123
Chen, Kenneth W06066712006-12-10 02:20:35 -08003124 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003125 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003126
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 if (!group) {
3128 schedstat_inc(sd, lb_nobusyg[idle]);
3129 goto out_balanced;
3130 }
3131
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003132 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 if (!busiest) {
3134 schedstat_inc(sd, lb_nobusyq[idle]);
3135 goto out_balanced;
3136 }
3137
Nick Piggindb935db2005-06-25 14:57:11 -07003138 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139
3140 schedstat_add(sd, lb_imbalance[idle], imbalance);
3141
Peter Williams43010652007-08-09 11:16:46 +02003142 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 if (busiest->nr_running > 1) {
3144 /*
3145 * Attempt to move tasks. If find_busiest_group has found
3146 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003147 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 * correctly treated as an imbalance.
3149 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003150 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003151 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003152 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003153 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003154 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003155 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003156
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003157 /*
3158 * some other cpu did the load balance for us.
3159 */
Peter Williams43010652007-08-09 11:16:46 +02003160 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003161 resched_cpu(this_cpu);
3162
Nick Piggin81026792005-06-25 14:57:07 -07003163 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003164 if (unlikely(all_pinned)) {
3165 cpu_clear(cpu_of(busiest), cpus);
3166 if (!cpus_empty(cpus))
3167 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003168 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 }
Nick Piggin81026792005-06-25 14:57:07 -07003171
Peter Williams43010652007-08-09 11:16:46 +02003172 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 schedstat_inc(sd, lb_failed[idle]);
3174 sd->nr_balance_failed++;
3175
3176 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003178 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003179
3180 /* don't kick the migration_thread, if the curr
3181 * task on busiest cpu can't be moved to this_cpu
3182 */
3183 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003184 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003185 all_pinned = 1;
3186 goto out_one_pinned;
3187 }
3188
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 if (!busiest->active_balance) {
3190 busiest->active_balance = 1;
3191 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003192 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003194 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003195 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 wake_up_process(busiest->migration_thread);
3197
3198 /*
3199 * We've kicked active balancing, reset the failure
3200 * counter.
3201 */
Nick Piggin39507452005-06-25 14:57:09 -07003202 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 }
Nick Piggin81026792005-06-25 14:57:07 -07003204 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 sd->nr_balance_failed = 0;
3206
Nick Piggin81026792005-06-25 14:57:07 -07003207 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 /* We were unbalanced, so reset the balancing interval */
3209 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003210 } else {
3211 /*
3212 * If we've begun active balancing, start to back off. This
3213 * case may not be covered by the all_pinned logic if there
3214 * is only 1 task on the busy runqueue (because we don't call
3215 * move_tasks).
3216 */
3217 if (sd->balance_interval < sd->max_interval)
3218 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 }
3220
Peter Williams43010652007-08-09 11:16:46 +02003221 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003222 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003223 return -1;
Peter Williams43010652007-08-09 11:16:46 +02003224 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
3226out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 schedstat_inc(sd, lb_balanced[idle]);
3228
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003229 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003230
3231out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003233 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3234 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 sd->balance_interval *= 2;
3236
Ingo Molnar48f24c42006-07-03 00:25:40 -07003237 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003238 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003239 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 return 0;
3241}
3242
3243/*
3244 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3245 * tasks if there is an imbalance.
3246 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003247 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 * this_rq is locked.
3249 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003250static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003251load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252{
3253 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003254 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003256 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003257 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003258 int all_pinned = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003259 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07003260
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003261 /*
3262 * When power savings policy is enabled for the parent domain, idle
3263 * sibling can pick up load irrespective of busy siblings. In this case,
3264 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003265 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003266 */
3267 if (sd->flags & SD_SHARE_CPUPOWER &&
3268 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003269 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
Ingo Molnar2d723762007-10-15 17:00:12 +02003271 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003272redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003273 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003274 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003276 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003277 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 }
3279
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003280 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003281 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003282 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003283 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003284 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 }
3286
Nick Piggindb935db2005-06-25 14:57:11 -07003287 BUG_ON(busiest == this_rq);
3288
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003289 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003290
Peter Williams43010652007-08-09 11:16:46 +02003291 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003292 if (busiest->nr_running > 1) {
3293 /* Attempt to move tasks */
3294 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003295 /* this_rq->clock is already updated */
3296 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003297 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003298 imbalance, sd, CPU_NEWLY_IDLE,
3299 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003300 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003301
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003302 if (unlikely(all_pinned)) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003303 cpu_clear(cpu_of(busiest), cpus);
3304 if (!cpus_empty(cpus))
3305 goto redo;
3306 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003307 }
3308
Peter Williams43010652007-08-09 11:16:46 +02003309 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003310 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003311 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3312 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003313 return -1;
3314 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003315 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316
Peter Williams43010652007-08-09 11:16:46 +02003317 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003318
3319out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003320 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003321 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003322 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003323 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003324 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003325
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003326 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327}
3328
3329/*
3330 * idle_balance is called by schedule() if this_cpu is about to become
3331 * idle. Attempts to pull tasks from other CPUs.
3332 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003333static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334{
3335 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003336 int pulled_task = -1;
3337 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
3339 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003340 unsigned long interval;
3341
3342 if (!(sd->flags & SD_LOAD_BALANCE))
3343 continue;
3344
3345 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003346 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003347 pulled_task = load_balance_newidle(this_cpu,
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003348 this_rq, sd);
3349
3350 interval = msecs_to_jiffies(sd->balance_interval);
3351 if (time_after(next_balance, sd->last_balance + interval))
3352 next_balance = sd->last_balance + interval;
3353 if (pulled_task)
3354 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003356 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003357 /*
3358 * We are going idle. next_balance may be set based on
3359 * a busy processor. So reset next_balance.
3360 */
3361 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363}
3364
3365/*
3366 * active_load_balance is run by migration threads. It pushes running tasks
3367 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3368 * running on each physical CPU where possible, and avoids physical /
3369 * logical imbalances.
3370 *
3371 * Called with busiest_rq locked.
3372 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003373static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374{
Nick Piggin39507452005-06-25 14:57:09 -07003375 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003376 struct sched_domain *sd;
3377 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003378
Ingo Molnar48f24c42006-07-03 00:25:40 -07003379 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003380 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003381 return;
3382
3383 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
3385 /*
Nick Piggin39507452005-06-25 14:57:09 -07003386 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003387 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003388 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 */
Nick Piggin39507452005-06-25 14:57:09 -07003390 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Nick Piggin39507452005-06-25 14:57:09 -07003392 /* move a task from busiest_rq to target_rq */
3393 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003394 update_rq_clock(busiest_rq);
3395 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
Nick Piggin39507452005-06-25 14:57:09 -07003397 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003398 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003399 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003400 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003401 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
Ingo Molnar48f24c42006-07-03 00:25:40 -07003404 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003405 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Peter Williams43010652007-08-09 11:16:46 +02003407 if (move_one_task(target_rq, target_cpu, busiest_rq,
3408 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003409 schedstat_inc(sd, alb_pushed);
3410 else
3411 schedstat_inc(sd, alb_failed);
3412 }
Nick Piggin39507452005-06-25 14:57:09 -07003413 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414}
3415
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003416#ifdef CONFIG_NO_HZ
3417static struct {
3418 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003419 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003420} nohz ____cacheline_aligned = {
3421 .load_balancer = ATOMIC_INIT(-1),
3422 .cpu_mask = CPU_MASK_NONE,
3423};
3424
Christoph Lameter7835b982006-12-10 02:20:22 -08003425/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003426 * This routine will try to nominate the ilb (idle load balancing)
3427 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3428 * load balancing on behalf of all those cpus. If all the cpus in the system
3429 * go into this tickless mode, then there will be no ilb owner (as there is
3430 * no need for one) and all the cpus will sleep till the next wakeup event
3431 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003432 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003433 * For the ilb owner, tick is not stopped. And this tick will be used
3434 * for idle load balancing. ilb owner will still be part of
3435 * nohz.cpu_mask..
3436 *
3437 * While stopping the tick, this cpu will become the ilb owner if there
3438 * is no other owner. And will be the owner till that cpu becomes busy
3439 * or if all cpus in the system stop their ticks at which point
3440 * there is no need for ilb owner.
3441 *
3442 * When the ilb owner becomes busy, it nominates another owner, during the
3443 * next busy scheduler_tick()
3444 */
3445int select_nohz_load_balancer(int stop_tick)
3446{
3447 int cpu = smp_processor_id();
3448
3449 if (stop_tick) {
3450 cpu_set(cpu, nohz.cpu_mask);
3451 cpu_rq(cpu)->in_nohz_recently = 1;
3452
3453 /*
3454 * If we are going offline and still the leader, give up!
3455 */
3456 if (cpu_is_offline(cpu) &&
3457 atomic_read(&nohz.load_balancer) == cpu) {
3458 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3459 BUG();
3460 return 0;
3461 }
3462
3463 /* time for ilb owner also to sleep */
3464 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3465 if (atomic_read(&nohz.load_balancer) == cpu)
3466 atomic_set(&nohz.load_balancer, -1);
3467 return 0;
3468 }
3469
3470 if (atomic_read(&nohz.load_balancer) == -1) {
3471 /* make me the ilb owner */
3472 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3473 return 1;
3474 } else if (atomic_read(&nohz.load_balancer) == cpu)
3475 return 1;
3476 } else {
3477 if (!cpu_isset(cpu, nohz.cpu_mask))
3478 return 0;
3479
3480 cpu_clear(cpu, nohz.cpu_mask);
3481
3482 if (atomic_read(&nohz.load_balancer) == cpu)
3483 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3484 BUG();
3485 }
3486 return 0;
3487}
3488#endif
3489
3490static DEFINE_SPINLOCK(balancing);
3491
3492/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003493 * It checks each scheduling domain to see if it is due to be balanced,
3494 * and initiates a balancing operation if so.
3495 *
3496 * Balancing parameters are set up in arch_init_sched_domains.
3497 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003498static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003499{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003500 int balance = 1;
3501 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003502 unsigned long interval;
3503 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003504 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003505 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003506 int update_next_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003508 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 if (!(sd->flags & SD_LOAD_BALANCE))
3510 continue;
3511
3512 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003513 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 interval *= sd->busy_factor;
3515
3516 /* scale ms to jiffies */
3517 interval = msecs_to_jiffies(interval);
3518 if (unlikely(!interval))
3519 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003520 if (interval > HZ*NR_CPUS/10)
3521 interval = HZ*NR_CPUS/10;
3522
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
Christoph Lameter08c183f2006-12-10 02:20:29 -08003524 if (sd->flags & SD_SERIALIZE) {
3525 if (!spin_trylock(&balancing))
3526 goto out;
3527 }
3528
Christoph Lameterc9819f42006-12-10 02:20:25 -08003529 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003530 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003531 /*
3532 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003533 * longer idle, or one of our SMT siblings is
3534 * not idle.
3535 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003536 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003538 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003540 if (sd->flags & SD_SERIALIZE)
3541 spin_unlock(&balancing);
3542out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003543 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003544 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003545 update_next_balance = 1;
3546 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003547
3548 /*
3549 * Stop the load balance at this level. There is another
3550 * CPU in our sched group which is doing load balancing more
3551 * actively.
3552 */
3553 if (!balance)
3554 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003556
3557 /*
3558 * next_balance will be updated only when there is a need.
3559 * When the cpu is attached to null domain for ex, it will not be
3560 * updated.
3561 */
3562 if (likely(update_next_balance))
3563 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003564}
3565
3566/*
3567 * run_rebalance_domains is triggered when needed from the scheduler tick.
3568 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3569 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3570 */
3571static void run_rebalance_domains(struct softirq_action *h)
3572{
Ingo Molnardd41f592007-07-09 18:51:59 +02003573 int this_cpu = smp_processor_id();
3574 struct rq *this_rq = cpu_rq(this_cpu);
3575 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3576 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003577
Ingo Molnardd41f592007-07-09 18:51:59 +02003578 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003579
3580#ifdef CONFIG_NO_HZ
3581 /*
3582 * If this cpu is the owner for idle load balancing, then do the
3583 * balancing on behalf of the other idle cpus whose ticks are
3584 * stopped.
3585 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003586 if (this_rq->idle_at_tick &&
3587 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003588 cpumask_t cpus = nohz.cpu_mask;
3589 struct rq *rq;
3590 int balance_cpu;
3591
Ingo Molnardd41f592007-07-09 18:51:59 +02003592 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003593 for_each_cpu_mask(balance_cpu, cpus) {
3594 /*
3595 * If this cpu gets work to do, stop the load balancing
3596 * work being done for other cpus. Next load
3597 * balancing owner will pick it up.
3598 */
3599 if (need_resched())
3600 break;
3601
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003602 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003603
3604 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003605 if (time_after(this_rq->next_balance, rq->next_balance))
3606 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003607 }
3608 }
3609#endif
3610}
3611
3612/*
3613 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3614 *
3615 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3616 * idle load balancing owner or decide to stop the periodic load balancing,
3617 * if the whole system is idle.
3618 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003619static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003620{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003621#ifdef CONFIG_NO_HZ
3622 /*
3623 * If we were in the nohz mode recently and busy at the current
3624 * scheduler tick, then check if we need to nominate new idle
3625 * load balancer.
3626 */
3627 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3628 rq->in_nohz_recently = 0;
3629
3630 if (atomic_read(&nohz.load_balancer) == cpu) {
3631 cpu_clear(cpu, nohz.cpu_mask);
3632 atomic_set(&nohz.load_balancer, -1);
3633 }
3634
3635 if (atomic_read(&nohz.load_balancer) == -1) {
3636 /*
3637 * simple selection for now: Nominate the
3638 * first cpu in the nohz list to be the next
3639 * ilb owner.
3640 *
3641 * TBD: Traverse the sched domains and nominate
3642 * the nearest cpu in the nohz.cpu_mask.
3643 */
3644 int ilb = first_cpu(nohz.cpu_mask);
3645
3646 if (ilb != NR_CPUS)
3647 resched_cpu(ilb);
3648 }
3649 }
3650
3651 /*
3652 * If this cpu is idle and doing idle load balancing for all the
3653 * cpus with ticks stopped, is it time for that to stop?
3654 */
3655 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3656 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3657 resched_cpu(cpu);
3658 return;
3659 }
3660
3661 /*
3662 * If this cpu is idle and the idle load balancing is done by
3663 * someone else, then no need raise the SCHED_SOFTIRQ
3664 */
3665 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3666 cpu_isset(cpu, nohz.cpu_mask))
3667 return;
3668#endif
3669 if (time_after_eq(jiffies, rq->next_balance))
3670 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671}
Ingo Molnardd41f592007-07-09 18:51:59 +02003672
3673#else /* CONFIG_SMP */
3674
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675/*
3676 * on UP we do not need to balance between CPUs:
3677 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003678static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679{
3680}
Ingo Molnardd41f592007-07-09 18:51:59 +02003681
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682#endif
3683
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684DEFINE_PER_CPU(struct kernel_stat, kstat);
3685
3686EXPORT_PER_CPU_SYMBOL(kstat);
3687
3688/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003689 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3690 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003692unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003695 u64 ns, delta_exec;
3696 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003697
Ingo Molnar41b86e92007-07-09 18:51:58 +02003698 rq = task_rq_lock(p, &flags);
3699 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003700 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003701 update_rq_clock(rq);
3702 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003703 if ((s64)delta_exec > 0)
3704 ns += delta_exec;
3705 }
3706 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003707
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 return ns;
3709}
3710
3711/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 * Account user cpu time to a process.
3713 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 * @cputime: the cpu time spent in user space since the last update
3715 */
3716void account_user_time(struct task_struct *p, cputime_t cputime)
3717{
3718 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3719 cputime64_t tmp;
3720
3721 p->utime = cputime_add(p->utime, cputime);
3722
3723 /* Add user time to cpustat. */
3724 tmp = cputime_to_cputime64(cputime);
3725 if (TASK_NICE(p) > 0)
3726 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3727 else
3728 cpustat->user = cputime64_add(cpustat->user, tmp);
3729}
3730
3731/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003732 * Account guest cpu time to a process.
3733 * @p: the process that the cpu time gets accounted to
3734 * @cputime: the cpu time spent in virtual machine since the last update
3735 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003736static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003737{
3738 cputime64_t tmp;
3739 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3740
3741 tmp = cputime_to_cputime64(cputime);
3742
3743 p->utime = cputime_add(p->utime, cputime);
3744 p->gtime = cputime_add(p->gtime, cputime);
3745
3746 cpustat->user = cputime64_add(cpustat->user, tmp);
3747 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3748}
3749
3750/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003751 * Account scaled user cpu time to a process.
3752 * @p: the process that the cpu time gets accounted to
3753 * @cputime: the cpu time spent in user space since the last update
3754 */
3755void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3756{
3757 p->utimescaled = cputime_add(p->utimescaled, cputime);
3758}
3759
3760/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 * Account system cpu time to a process.
3762 * @p: the process that the cpu time gets accounted to
3763 * @hardirq_offset: the offset to subtract from hardirq_count()
3764 * @cputime: the cpu time spent in kernel space since the last update
3765 */
3766void account_system_time(struct task_struct *p, int hardirq_offset,
3767 cputime_t cputime)
3768{
3769 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003770 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 cputime64_t tmp;
3772
Christian Borntraeger97783852007-11-15 20:57:39 +01003773 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
3774 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003775
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 p->stime = cputime_add(p->stime, cputime);
3777
3778 /* Add system time to cpustat. */
3779 tmp = cputime_to_cputime64(cputime);
3780 if (hardirq_count() - hardirq_offset)
3781 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3782 else if (softirq_count())
3783 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003784 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003786 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3788 else
3789 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3790 /* Account for system time used */
3791 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792}
3793
3794/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003795 * Account scaled system cpu time to a process.
3796 * @p: the process that the cpu time gets accounted to
3797 * @hardirq_offset: the offset to subtract from hardirq_count()
3798 * @cputime: the cpu time spent in kernel space since the last update
3799 */
3800void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
3801{
3802 p->stimescaled = cputime_add(p->stimescaled, cputime);
3803}
3804
3805/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 * Account for involuntary wait time.
3807 * @p: the process from which the cpu time has been stolen
3808 * @steal: the cpu time spent in involuntary wait
3809 */
3810void account_steal_time(struct task_struct *p, cputime_t steal)
3811{
3812 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3813 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003814 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
3816 if (p == rq->idle) {
3817 p->stime = cputime_add(p->stime, steal);
3818 if (atomic_read(&rq->nr_iowait) > 0)
3819 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3820 else
3821 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003822 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3824}
3825
Christoph Lameter7835b982006-12-10 02:20:22 -08003826/*
3827 * This function gets called by the timer code, with HZ frequency.
3828 * We call it with interrupts disabled.
3829 *
3830 * It also gets called by the fork code, when changing the parent's
3831 * timeslices.
3832 */
3833void scheduler_tick(void)
3834{
Christoph Lameter7835b982006-12-10 02:20:22 -08003835 int cpu = smp_processor_id();
3836 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003837 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003838 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003839
Ingo Molnardd41f592007-07-09 18:51:59 +02003840 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003841 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003842 /*
3843 * Let rq->clock advance by at least TICK_NSEC:
3844 */
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003845 if (unlikely(rq->clock < next_tick)) {
Ingo Molnar529c7722007-08-10 23:05:11 +02003846 rq->clock = next_tick;
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003847 rq->clock_underflows++;
3848 }
Ingo Molnar529c7722007-08-10 23:05:11 +02003849 rq->tick_timestamp = rq->clock;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02003850 update_last_tick_seen(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003851 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003852 curr->sched_class->task_tick(rq, curr, 0);
3853 update_sched_rt_period(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003854 spin_unlock(&rq->lock);
3855
Christoph Lametere418e1c2006-12-10 02:20:23 -08003856#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003857 rq->idle_at_tick = idle_cpu(cpu);
3858 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003859#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860}
3861
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3863
Srinivasa Ds43627582008-02-23 15:24:04 -08003864void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865{
3866 /*
3867 * Underflow?
3868 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003869 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3870 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 preempt_count() += val;
3872 /*
3873 * Spinlock count overflowing soon?
3874 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003875 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3876 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877}
3878EXPORT_SYMBOL(add_preempt_count);
3879
Srinivasa Ds43627582008-02-23 15:24:04 -08003880void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881{
3882 /*
3883 * Underflow?
3884 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003885 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3886 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 /*
3888 * Is the spinlock portion underflowing?
3889 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003890 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3891 !(preempt_count() & PREEMPT_MASK)))
3892 return;
3893
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 preempt_count() -= val;
3895}
3896EXPORT_SYMBOL(sub_preempt_count);
3897
3898#endif
3899
3900/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003901 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003903static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904{
Satyam Sharma838225b2007-10-24 18:23:50 +02003905 struct pt_regs *regs = get_irq_regs();
3906
3907 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
3908 prev->comm, prev->pid, preempt_count());
3909
Ingo Molnardd41f592007-07-09 18:51:59 +02003910 debug_show_held_locks(prev);
3911 if (irqs_disabled())
3912 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003913
3914 if (regs)
3915 show_regs(regs);
3916 else
3917 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003918}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919
Ingo Molnardd41f592007-07-09 18:51:59 +02003920/*
3921 * Various schedule()-time debugging checks and statistics:
3922 */
3923static inline void schedule_debug(struct task_struct *prev)
3924{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003926 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 * schedule() atomically, we ignore that path for now.
3928 * Otherwise, whine if we are scheduling when we should not be.
3929 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003930 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3931 __schedule_bug(prev);
3932
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3934
Ingo Molnar2d723762007-10-15 17:00:12 +02003935 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003936#ifdef CONFIG_SCHEDSTATS
3937 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003938 schedstat_inc(this_rq(), bkl_count);
3939 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003940 }
3941#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02003942}
3943
3944/*
3945 * Pick up the highest-prio task:
3946 */
3947static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003948pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02003949{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003950 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02003951 struct task_struct *p;
3952
3953 /*
3954 * Optimization: we know that if all tasks are in
3955 * the fair class we can call that function directly:
3956 */
3957 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003958 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003959 if (likely(p))
3960 return p;
3961 }
3962
3963 class = sched_class_highest;
3964 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003965 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003966 if (p)
3967 return p;
3968 /*
3969 * Will never be NULL as the idle class always
3970 * returns a non-NULL p:
3971 */
3972 class = class->next;
3973 }
3974}
3975
3976/*
3977 * schedule() is the main scheduler function.
3978 */
3979asmlinkage void __sched schedule(void)
3980{
3981 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08003982 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02003983 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003984 int cpu;
3985
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986need_resched:
3987 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02003988 cpu = smp_processor_id();
3989 rq = cpu_rq(cpu);
3990 rcu_qsctr_inc(cpu);
3991 prev = rq->curr;
3992 switch_count = &prev->nivcsw;
3993
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 release_kernel_lock(prev);
3995need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Ingo Molnardd41f592007-07-09 18:51:59 +02003997 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003999 hrtick_clear(rq);
4000
Ingo Molnar1e819952007-10-15 17:00:13 +02004001 /*
4002 * Do the rq-clock update outside the rq lock:
4003 */
4004 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02004005 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004006 spin_lock(&rq->lock);
4007 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
Ingo Molnardd41f592007-07-09 18:51:59 +02004009 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
4010 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
Roel Kluin23e3c3c2008-03-13 17:41:59 +01004011 signal_pending(prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004012 prev->state = TASK_RUNNING;
4013 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004014 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004015 }
4016 switch_count = &prev->nvcsw;
4017 }
4018
Steven Rostedt9a897c52008-01-25 21:08:22 +01004019#ifdef CONFIG_SMP
4020 if (prev->sched_class->pre_schedule)
4021 prev->sched_class->pre_schedule(rq, prev);
4022#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004023
Ingo Molnardd41f592007-07-09 18:51:59 +02004024 if (unlikely(!rq->nr_running))
4025 idle_balance(cpu, rq);
4026
Ingo Molnar31ee5292007-08-09 11:16:49 +02004027 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004028 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
4030 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02004031
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 rq->nr_switches++;
4034 rq->curr = next;
4035 ++*switch_count;
4036
Ingo Molnardd41f592007-07-09 18:51:59 +02004037 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004038 /*
4039 * the context switch might have flipped the stack from under
4040 * us, hence refresh the local variables.
4041 */
4042 cpu = smp_processor_id();
4043 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 } else
4045 spin_unlock_irq(&rq->lock);
4046
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004047 hrtick_set(rq);
4048
4049 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004051
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 preempt_enable_no_resched();
4053 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4054 goto need_resched;
4055}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056EXPORT_SYMBOL(schedule);
4057
4058#ifdef CONFIG_PREEMPT
4059/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004060 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004061 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 * occur there and call schedule directly.
4063 */
4064asmlinkage void __sched preempt_schedule(void)
4065{
4066 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 struct task_struct *task = current;
4068 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004069
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 /*
4071 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004072 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004074 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 return;
4076
Andi Kleen3a5c3592007-10-15 17:00:14 +02004077 do {
4078 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Andi Kleen3a5c3592007-10-15 17:00:14 +02004080 /*
4081 * We keep the big kernel semaphore locked, but we
4082 * clear ->lock_depth so that schedule() doesnt
4083 * auto-release the semaphore:
4084 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004085 saved_lock_depth = task->lock_depth;
4086 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004087 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004088 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004089 sub_preempt_count(PREEMPT_ACTIVE);
4090
4091 /*
4092 * Check again in case we missed a preemption opportunity
4093 * between schedule and now.
4094 */
4095 barrier();
4096 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098EXPORT_SYMBOL(preempt_schedule);
4099
4100/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004101 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 * off of irq context.
4103 * Note, that this is called and return with irqs disabled. This will
4104 * protect us against recursive calling from irq.
4105 */
4106asmlinkage void __sched preempt_schedule_irq(void)
4107{
4108 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 struct task_struct *task = current;
4110 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004111
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004112 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 BUG_ON(ti->preempt_count || !irqs_disabled());
4114
Andi Kleen3a5c3592007-10-15 17:00:14 +02004115 do {
4116 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
Andi Kleen3a5c3592007-10-15 17:00:14 +02004118 /*
4119 * We keep the big kernel semaphore locked, but we
4120 * clear ->lock_depth so that schedule() doesnt
4121 * auto-release the semaphore:
4122 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004123 saved_lock_depth = task->lock_depth;
4124 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004125 local_irq_enable();
4126 schedule();
4127 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004128 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004129 sub_preempt_count(PREEMPT_ACTIVE);
4130
4131 /*
4132 * Check again in case we missed a preemption opportunity
4133 * between schedule and now.
4134 */
4135 barrier();
4136 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137}
4138
4139#endif /* CONFIG_PREEMPT */
4140
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004141int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4142 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004144 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146EXPORT_SYMBOL(default_wake_function);
4147
4148/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004149 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4150 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 * number) then we wake all the non-exclusive tasks and one exclusive task.
4152 *
4153 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004154 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4156 */
4157static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4158 int nr_exclusive, int sync, void *key)
4159{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004160 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004162 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004163 unsigned flags = curr->flags;
4164
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004166 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 break;
4168 }
4169}
4170
4171/**
4172 * __wake_up - wake up threads blocked on a waitqueue.
4173 * @q: the waitqueue
4174 * @mode: which threads
4175 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004176 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004178void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004179 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180{
4181 unsigned long flags;
4182
4183 spin_lock_irqsave(&q->lock, flags);
4184 __wake_up_common(q, mode, nr_exclusive, 0, key);
4185 spin_unlock_irqrestore(&q->lock, flags);
4186}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187EXPORT_SYMBOL(__wake_up);
4188
4189/*
4190 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4191 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004192void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193{
4194 __wake_up_common(q, mode, 1, 0, NULL);
4195}
4196
4197/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004198 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 * @q: the waitqueue
4200 * @mode: which threads
4201 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4202 *
4203 * The sync wakeup differs that the waker knows that it will schedule
4204 * away soon, so while the target thread will be woken up, it will not
4205 * be migrated to another CPU - ie. the two threads are 'synchronized'
4206 * with each other. This can prevent needless bouncing between CPUs.
4207 *
4208 * On UP it can prevent extra preemption.
4209 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004210void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004211__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212{
4213 unsigned long flags;
4214 int sync = 1;
4215
4216 if (unlikely(!q))
4217 return;
4218
4219 if (unlikely(!nr_exclusive))
4220 sync = 0;
4221
4222 spin_lock_irqsave(&q->lock, flags);
4223 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4224 spin_unlock_irqrestore(&q->lock, flags);
4225}
4226EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4227
Ingo Molnarb15136e2007-10-24 18:23:48 +02004228void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229{
4230 unsigned long flags;
4231
4232 spin_lock_irqsave(&x->wait.lock, flags);
4233 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004234 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 spin_unlock_irqrestore(&x->wait.lock, flags);
4236}
4237EXPORT_SYMBOL(complete);
4238
Ingo Molnarb15136e2007-10-24 18:23:48 +02004239void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240{
4241 unsigned long flags;
4242
4243 spin_lock_irqsave(&x->wait.lock, flags);
4244 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004245 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 spin_unlock_irqrestore(&x->wait.lock, flags);
4247}
4248EXPORT_SYMBOL(complete_all);
4249
Andi Kleen8cbbe862007-10-15 17:00:14 +02004250static inline long __sched
4251do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 if (!x->done) {
4254 DECLARE_WAITQUEUE(wait, current);
4255
4256 wait.flags |= WQ_FLAG_EXCLUSIVE;
4257 __add_wait_queue_tail(&x->wait, &wait);
4258 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004259 if ((state == TASK_INTERRUPTIBLE &&
4260 signal_pending(current)) ||
4261 (state == TASK_KILLABLE &&
4262 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004263 __remove_wait_queue(&x->wait, &wait);
4264 return -ERESTARTSYS;
4265 }
4266 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004268 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004270 if (!timeout) {
4271 __remove_wait_queue(&x->wait, &wait);
4272 return timeout;
4273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 } while (!x->done);
4275 __remove_wait_queue(&x->wait, &wait);
4276 }
4277 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004278 return timeout;
4279}
4280
4281static long __sched
4282wait_for_common(struct completion *x, long timeout, int state)
4283{
4284 might_sleep();
4285
4286 spin_lock_irq(&x->wait.lock);
4287 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004289 return timeout;
4290}
4291
Ingo Molnarb15136e2007-10-24 18:23:48 +02004292void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004293{
4294 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295}
4296EXPORT_SYMBOL(wait_for_completion);
4297
Ingo Molnarb15136e2007-10-24 18:23:48 +02004298unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4300{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004301 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302}
4303EXPORT_SYMBOL(wait_for_completion_timeout);
4304
Andi Kleen8cbbe862007-10-15 17:00:14 +02004305int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306{
Andi Kleen51e97992007-10-18 21:32:55 +02004307 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4308 if (t == -ERESTARTSYS)
4309 return t;
4310 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311}
4312EXPORT_SYMBOL(wait_for_completion_interruptible);
4313
Ingo Molnarb15136e2007-10-24 18:23:48 +02004314unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315wait_for_completion_interruptible_timeout(struct completion *x,
4316 unsigned long timeout)
4317{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004318 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319}
4320EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4321
Matthew Wilcox009e5772007-12-06 12:29:54 -05004322int __sched wait_for_completion_killable(struct completion *x)
4323{
4324 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4325 if (t == -ERESTARTSYS)
4326 return t;
4327 return 0;
4328}
4329EXPORT_SYMBOL(wait_for_completion_killable);
4330
Andi Kleen8cbbe862007-10-15 17:00:14 +02004331static long __sched
4332sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004333{
4334 unsigned long flags;
4335 wait_queue_t wait;
4336
4337 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338
Andi Kleen8cbbe862007-10-15 17:00:14 +02004339 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340
Andi Kleen8cbbe862007-10-15 17:00:14 +02004341 spin_lock_irqsave(&q->lock, flags);
4342 __add_wait_queue(q, &wait);
4343 spin_unlock(&q->lock);
4344 timeout = schedule_timeout(timeout);
4345 spin_lock_irq(&q->lock);
4346 __remove_wait_queue(q, &wait);
4347 spin_unlock_irqrestore(&q->lock, flags);
4348
4349 return timeout;
4350}
4351
4352void __sched interruptible_sleep_on(wait_queue_head_t *q)
4353{
4354 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356EXPORT_SYMBOL(interruptible_sleep_on);
4357
Ingo Molnar0fec1712007-07-09 18:52:01 +02004358long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004359interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004361 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4364
Ingo Molnar0fec1712007-07-09 18:52:01 +02004365void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004367 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369EXPORT_SYMBOL(sleep_on);
4370
Ingo Molnar0fec1712007-07-09 18:52:01 +02004371long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004373 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375EXPORT_SYMBOL(sleep_on_timeout);
4376
Ingo Molnarb29739f2006-06-27 02:54:51 -07004377#ifdef CONFIG_RT_MUTEXES
4378
4379/*
4380 * rt_mutex_setprio - set the current priority of a task
4381 * @p: task
4382 * @prio: prio value (kernel-internal form)
4383 *
4384 * This function changes the 'effective' priority of a task. It does
4385 * not touch ->normal_prio like __setscheduler().
4386 *
4387 * Used by the rt_mutex code to implement priority inheritance logic.
4388 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004389void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004390{
4391 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004392 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004393 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004394 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004395
4396 BUG_ON(prio < 0 || prio > MAX_PRIO);
4397
4398 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004399 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004400
Andrew Mortond5f9f942007-05-08 20:27:06 -07004401 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004402 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004403 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004404 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004405 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004406 if (running)
4407 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004408
4409 if (rt_prio(prio))
4410 p->sched_class = &rt_sched_class;
4411 else
4412 p->sched_class = &fair_sched_class;
4413
Ingo Molnarb29739f2006-06-27 02:54:51 -07004414 p->prio = prio;
4415
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004416 if (running)
4417 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004418 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004419 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004420
4421 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004422 }
4423 task_rq_unlock(rq, &flags);
4424}
4425
4426#endif
4427
Ingo Molnar36c8b582006-07-03 00:25:41 -07004428void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429{
Ingo Molnardd41f592007-07-09 18:51:59 +02004430 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004432 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
4434 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4435 return;
4436 /*
4437 * We have to be careful, if called from sys_setpriority(),
4438 * the task might be in the middle of scheduling on another CPU.
4439 */
4440 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004441 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 /*
4443 * The RT priorities are set via sched_setscheduler(), but we still
4444 * allow the 'normal' nice value to be set - but as expected
4445 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004446 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004448 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 p->static_prio = NICE_TO_PRIO(nice);
4450 goto out_unlock;
4451 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004452 on_rq = p->se.on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004453 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004454 dequeue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004455 dec_load(rq, p);
4456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004459 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004460 old_prio = p->prio;
4461 p->prio = effective_prio(p);
4462 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Ingo Molnardd41f592007-07-09 18:51:59 +02004464 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004465 enqueue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004466 inc_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004468 * If the task increased its priority or is running and
4469 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004471 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472 resched_task(rq->curr);
4473 }
4474out_unlock:
4475 task_rq_unlock(rq, &flags);
4476}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477EXPORT_SYMBOL(set_user_nice);
4478
Matt Mackalle43379f2005-05-01 08:59:00 -07004479/*
4480 * can_nice - check if a task can reduce its nice value
4481 * @p: task
4482 * @nice: nice value
4483 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004484int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004485{
Matt Mackall024f4742005-08-18 11:24:19 -07004486 /* convert nice value [19,-20] to rlimit style value [1,40] */
4487 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004488
Matt Mackalle43379f2005-05-01 08:59:00 -07004489 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4490 capable(CAP_SYS_NICE));
4491}
4492
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493#ifdef __ARCH_WANT_SYS_NICE
4494
4495/*
4496 * sys_nice - change the priority of the current process.
4497 * @increment: priority increment
4498 *
4499 * sys_setpriority is a more generic, but much slower function that
4500 * does similar things.
4501 */
4502asmlinkage long sys_nice(int increment)
4503{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004504 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505
4506 /*
4507 * Setpriority might change our priority at the same moment.
4508 * We don't have to worry. Conceptually one call occurs first
4509 * and we have a single winner.
4510 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004511 if (increment < -40)
4512 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 if (increment > 40)
4514 increment = 40;
4515
4516 nice = PRIO_TO_NICE(current->static_prio) + increment;
4517 if (nice < -20)
4518 nice = -20;
4519 if (nice > 19)
4520 nice = 19;
4521
Matt Mackalle43379f2005-05-01 08:59:00 -07004522 if (increment < 0 && !can_nice(current, nice))
4523 return -EPERM;
4524
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 retval = security_task_setnice(current, nice);
4526 if (retval)
4527 return retval;
4528
4529 set_user_nice(current, nice);
4530 return 0;
4531}
4532
4533#endif
4534
4535/**
4536 * task_prio - return the priority value of a given task.
4537 * @p: the task in question.
4538 *
4539 * This is the priority value as seen by users in /proc.
4540 * RT tasks are offset by -200. Normal tasks are centered
4541 * around 0, value goes from -16 to +15.
4542 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004543int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544{
4545 return p->prio - MAX_RT_PRIO;
4546}
4547
4548/**
4549 * task_nice - return the nice value of a given task.
4550 * @p: the task in question.
4551 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004552int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553{
4554 return TASK_NICE(p);
4555}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004556EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557
4558/**
4559 * idle_cpu - is a given cpu idle currently?
4560 * @cpu: the processor in question.
4561 */
4562int idle_cpu(int cpu)
4563{
4564 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4565}
4566
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567/**
4568 * idle_task - return the idle task for a given cpu.
4569 * @cpu: the processor in question.
4570 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004571struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572{
4573 return cpu_rq(cpu)->idle;
4574}
4575
4576/**
4577 * find_process_by_pid - find a process with a matching PID value.
4578 * @pid: the pid in question.
4579 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004580static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004582 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583}
4584
4585/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004586static void
4587__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588{
Ingo Molnardd41f592007-07-09 18:51:59 +02004589 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004590
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004592 switch (p->policy) {
4593 case SCHED_NORMAL:
4594 case SCHED_BATCH:
4595 case SCHED_IDLE:
4596 p->sched_class = &fair_sched_class;
4597 break;
4598 case SCHED_FIFO:
4599 case SCHED_RR:
4600 p->sched_class = &rt_sched_class;
4601 break;
4602 }
4603
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004605 p->normal_prio = normal_prio(p);
4606 /* we are holding p->pi_lock already */
4607 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004608 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609}
4610
4611/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004612 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613 * @p: the task in question.
4614 * @policy: new policy.
4615 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004616 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004617 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004619int sched_setscheduler(struct task_struct *p, int policy,
4620 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004622 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004624 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004625 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
Steven Rostedt66e53932006-06-27 02:54:44 -07004627 /* may grab non-irq protected spin_locks */
4628 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629recheck:
4630 /* double check policy once rq lock held */
4631 if (policy < 0)
4632 policy = oldpolicy = p->policy;
4633 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004634 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4635 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004636 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 /*
4638 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004639 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4640 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 */
4642 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004643 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004644 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004646 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 return -EINVAL;
4648
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004649 /*
4650 * Allow unprivileged RT tasks to decrease priority:
4651 */
4652 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004653 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004654 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004655
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004656 if (!lock_task_sighand(p, &flags))
4657 return -ESRCH;
4658 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4659 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004660
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004661 /* can't set/change the rt policy */
4662 if (policy != p->policy && !rlim_rtprio)
4663 return -EPERM;
4664
4665 /* can't increase priority */
4666 if (param->sched_priority > p->rt_priority &&
4667 param->sched_priority > rlim_rtprio)
4668 return -EPERM;
4669 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004670 /*
4671 * Like positive nice levels, dont allow tasks to
4672 * move out of SCHED_IDLE either:
4673 */
4674 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4675 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004676
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004677 /* can't change other user's priorities */
4678 if ((current->euid != p->euid) &&
4679 (current->euid != p->uid))
4680 return -EPERM;
4681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004683#ifdef CONFIG_RT_GROUP_SCHED
4684 /*
4685 * Do not allow realtime tasks into groups that have no runtime
4686 * assigned.
4687 */
4688 if (rt_policy(policy) && task_group(p)->rt_runtime == 0)
4689 return -EPERM;
4690#endif
4691
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 retval = security_task_setscheduler(p, policy, param);
4693 if (retval)
4694 return retval;
4695 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004696 * make sure no PI-waiters arrive (or leave) while we are
4697 * changing the priority of the task:
4698 */
4699 spin_lock_irqsave(&p->pi_lock, flags);
4700 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 * To be able to change p->policy safely, the apropriate
4702 * runqueue lock must be held.
4703 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004704 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 /* recheck policy now with rq lock held */
4706 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4707 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004708 __task_rq_unlock(rq);
4709 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 goto recheck;
4711 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004712 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004713 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004714 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004715 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004716 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004717 if (running)
4718 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004719
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004721 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004722
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004723 if (running)
4724 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004725 if (on_rq) {
4726 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004727
4728 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004730 __task_rq_unlock(rq);
4731 spin_unlock_irqrestore(&p->pi_lock, flags);
4732
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004733 rt_mutex_adjust_pi(p);
4734
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 return 0;
4736}
4737EXPORT_SYMBOL_GPL(sched_setscheduler);
4738
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004739static int
4740do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 struct sched_param lparam;
4743 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004744 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745
4746 if (!param || pid < 0)
4747 return -EINVAL;
4748 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4749 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004750
4751 rcu_read_lock();
4752 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004754 if (p != NULL)
4755 retval = sched_setscheduler(p, policy, &lparam);
4756 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004757
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 return retval;
4759}
4760
4761/**
4762 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4763 * @pid: the pid in question.
4764 * @policy: new policy.
4765 * @param: structure containing the new RT priority.
4766 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004767asmlinkage long
4768sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769{
Jason Baronc21761f2006-01-18 17:43:03 -08004770 /* negative values for policy are not valid */
4771 if (policy < 0)
4772 return -EINVAL;
4773
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 return do_sched_setscheduler(pid, policy, param);
4775}
4776
4777/**
4778 * sys_sched_setparam - set/change the RT priority of a thread
4779 * @pid: the pid in question.
4780 * @param: structure containing the new RT priority.
4781 */
4782asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4783{
4784 return do_sched_setscheduler(pid, -1, param);
4785}
4786
4787/**
4788 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4789 * @pid: the pid in question.
4790 */
4791asmlinkage long sys_sched_getscheduler(pid_t pid)
4792{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004793 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004794 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795
4796 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004797 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
4799 retval = -ESRCH;
4800 read_lock(&tasklist_lock);
4801 p = find_process_by_pid(pid);
4802 if (p) {
4803 retval = security_task_getscheduler(p);
4804 if (!retval)
4805 retval = p->policy;
4806 }
4807 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 return retval;
4809}
4810
4811/**
4812 * sys_sched_getscheduler - get the RT priority of a thread
4813 * @pid: the pid in question.
4814 * @param: structure containing the RT priority.
4815 */
4816asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4817{
4818 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004819 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004820 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821
4822 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004823 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824
4825 read_lock(&tasklist_lock);
4826 p = find_process_by_pid(pid);
4827 retval = -ESRCH;
4828 if (!p)
4829 goto out_unlock;
4830
4831 retval = security_task_getscheduler(p);
4832 if (retval)
4833 goto out_unlock;
4834
4835 lp.sched_priority = p->rt_priority;
4836 read_unlock(&tasklist_lock);
4837
4838 /*
4839 * This one might sleep, we cannot do it with a spinlock held ...
4840 */
4841 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4842
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 return retval;
4844
4845out_unlock:
4846 read_unlock(&tasklist_lock);
4847 return retval;
4848}
4849
4850long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4851{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004853 struct task_struct *p;
4854 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004856 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857 read_lock(&tasklist_lock);
4858
4859 p = find_process_by_pid(pid);
4860 if (!p) {
4861 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004862 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863 return -ESRCH;
4864 }
4865
4866 /*
4867 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004868 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869 * usage count and then drop tasklist_lock.
4870 */
4871 get_task_struct(p);
4872 read_unlock(&tasklist_lock);
4873
4874 retval = -EPERM;
4875 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4876 !capable(CAP_SYS_NICE))
4877 goto out_unlock;
4878
David Quigleye7834f82006-06-23 02:03:59 -07004879 retval = security_task_setscheduler(p, 0, NULL);
4880 if (retval)
4881 goto out_unlock;
4882
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 cpus_allowed = cpuset_cpus_allowed(p);
4884 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004885 again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 retval = set_cpus_allowed(p, new_mask);
4887
Paul Menage8707d8b2007-10-18 23:40:22 -07004888 if (!retval) {
4889 cpus_allowed = cpuset_cpus_allowed(p);
4890 if (!cpus_subset(new_mask, cpus_allowed)) {
4891 /*
4892 * We must have raced with a concurrent cpuset
4893 * update. Just reset the cpus_allowed to the
4894 * cpuset's cpus_allowed
4895 */
4896 new_mask = cpus_allowed;
4897 goto again;
4898 }
4899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900out_unlock:
4901 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004902 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 return retval;
4904}
4905
4906static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4907 cpumask_t *new_mask)
4908{
4909 if (len < sizeof(cpumask_t)) {
4910 memset(new_mask, 0, sizeof(cpumask_t));
4911 } else if (len > sizeof(cpumask_t)) {
4912 len = sizeof(cpumask_t);
4913 }
4914 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4915}
4916
4917/**
4918 * sys_sched_setaffinity - set the cpu affinity of a process
4919 * @pid: pid of the process
4920 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4921 * @user_mask_ptr: user-space pointer to the new cpu mask
4922 */
4923asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4924 unsigned long __user *user_mask_ptr)
4925{
4926 cpumask_t new_mask;
4927 int retval;
4928
4929 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4930 if (retval)
4931 return retval;
4932
4933 return sched_setaffinity(pid, new_mask);
4934}
4935
4936/*
4937 * Represents all cpu's present in the system
4938 * In systems capable of hotplug, this map could dynamically grow
4939 * as new cpu's are detected in the system via any platform specific
4940 * method, such as ACPI for e.g.
4941 */
4942
Andi Kleen4cef0c62006-01-11 22:44:57 +01004943cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944EXPORT_SYMBOL(cpu_present_map);
4945
4946#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004947cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004948EXPORT_SYMBOL(cpu_online_map);
4949
Andi Kleen4cef0c62006-01-11 22:44:57 +01004950cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004951EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952#endif
4953
4954long sched_getaffinity(pid_t pid, cpumask_t *mask)
4955{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004956 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004959 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 read_lock(&tasklist_lock);
4961
4962 retval = -ESRCH;
4963 p = find_process_by_pid(pid);
4964 if (!p)
4965 goto out_unlock;
4966
David Quigleye7834f82006-06-23 02:03:59 -07004967 retval = security_task_getscheduler(p);
4968 if (retval)
4969 goto out_unlock;
4970
Jack Steiner2f7016d2006-02-01 03:05:18 -08004971 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972
4973out_unlock:
4974 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004975 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976
Ulrich Drepper9531b622007-08-09 11:16:46 +02004977 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978}
4979
4980/**
4981 * sys_sched_getaffinity - get the cpu affinity of a process
4982 * @pid: pid of the process
4983 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4984 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4985 */
4986asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4987 unsigned long __user *user_mask_ptr)
4988{
4989 int ret;
4990 cpumask_t mask;
4991
4992 if (len < sizeof(cpumask_t))
4993 return -EINVAL;
4994
4995 ret = sched_getaffinity(pid, &mask);
4996 if (ret < 0)
4997 return ret;
4998
4999 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5000 return -EFAULT;
5001
5002 return sizeof(cpumask_t);
5003}
5004
5005/**
5006 * sys_sched_yield - yield the current processor to other threads.
5007 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005008 * This function yields the current CPU to other tasks. If there are no
5009 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 */
5011asmlinkage long sys_sched_yield(void)
5012{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005013 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014
Ingo Molnar2d723762007-10-15 17:00:12 +02005015 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005016 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017
5018 /*
5019 * Since we are going to call schedule() anyway, there's
5020 * no need to preempt or enable interrupts:
5021 */
5022 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005023 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024 _raw_spin_unlock(&rq->lock);
5025 preempt_enable_no_resched();
5026
5027 schedule();
5028
5029 return 0;
5030}
5031
Andrew Mortone7b38402006-06-30 01:56:00 -07005032static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005034#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5035 __might_sleep(__FILE__, __LINE__);
5036#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005037 /*
5038 * The BKS might be reacquired before we have dropped
5039 * PREEMPT_ACTIVE, which could trigger a second
5040 * cond_resched() call.
5041 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 do {
5043 add_preempt_count(PREEMPT_ACTIVE);
5044 schedule();
5045 sub_preempt_count(PREEMPT_ACTIVE);
5046 } while (need_resched());
5047}
5048
Herbert Xu02b67cc2008-01-25 21:08:28 +01005049#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
5050int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051{
Ingo Molnar94142322006-12-29 16:48:13 -08005052 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5053 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054 __cond_resched();
5055 return 1;
5056 }
5057 return 0;
5058}
Herbert Xu02b67cc2008-01-25 21:08:28 +01005059EXPORT_SYMBOL(_cond_resched);
5060#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061
5062/*
5063 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5064 * call schedule, and on return reacquire the lock.
5065 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005066 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067 * operations here to prevent schedule() from being called twice (once via
5068 * spin_unlock(), once by hand).
5069 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005070int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071{
Nick Piggin95c354f2008-01-30 13:31:20 +01005072 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005073 int ret = 0;
5074
Nick Piggin95c354f2008-01-30 13:31:20 +01005075 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005077 if (resched && need_resched())
5078 __cond_resched();
5079 else
5080 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005081 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005084 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086EXPORT_SYMBOL(cond_resched_lock);
5087
5088int __sched cond_resched_softirq(void)
5089{
5090 BUG_ON(!in_softirq());
5091
Ingo Molnar94142322006-12-29 16:48:13 -08005092 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d82562007-05-23 13:58:18 -07005093 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094 __cond_resched();
5095 local_bh_disable();
5096 return 1;
5097 }
5098 return 0;
5099}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100EXPORT_SYMBOL(cond_resched_softirq);
5101
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102/**
5103 * yield - yield the current processor to other threads.
5104 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005105 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 * thread runnable and calls sys_sched_yield().
5107 */
5108void __sched yield(void)
5109{
5110 set_current_state(TASK_RUNNING);
5111 sys_sched_yield();
5112}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113EXPORT_SYMBOL(yield);
5114
5115/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005116 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 * that process accounting knows that this is a task in IO wait state.
5118 *
5119 * But don't do that if it is a deliberate, throttling IO wait (this task
5120 * has set its backing_dev_info: the queue against which it should throttle)
5121 */
5122void __sched io_schedule(void)
5123{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005124 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005126 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127 atomic_inc(&rq->nr_iowait);
5128 schedule();
5129 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005130 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132EXPORT_SYMBOL(io_schedule);
5133
5134long __sched io_schedule_timeout(long timeout)
5135{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005136 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 long ret;
5138
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005139 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140 atomic_inc(&rq->nr_iowait);
5141 ret = schedule_timeout(timeout);
5142 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005143 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 return ret;
5145}
5146
5147/**
5148 * sys_sched_get_priority_max - return maximum RT priority.
5149 * @policy: scheduling class.
5150 *
5151 * this syscall returns the maximum rt_priority that can be used
5152 * by a given scheduling class.
5153 */
5154asmlinkage long sys_sched_get_priority_max(int policy)
5155{
5156 int ret = -EINVAL;
5157
5158 switch (policy) {
5159 case SCHED_FIFO:
5160 case SCHED_RR:
5161 ret = MAX_USER_RT_PRIO-1;
5162 break;
5163 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005164 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005165 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166 ret = 0;
5167 break;
5168 }
5169 return ret;
5170}
5171
5172/**
5173 * sys_sched_get_priority_min - return minimum RT priority.
5174 * @policy: scheduling class.
5175 *
5176 * this syscall returns the minimum rt_priority that can be used
5177 * by a given scheduling class.
5178 */
5179asmlinkage long sys_sched_get_priority_min(int policy)
5180{
5181 int ret = -EINVAL;
5182
5183 switch (policy) {
5184 case SCHED_FIFO:
5185 case SCHED_RR:
5186 ret = 1;
5187 break;
5188 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005189 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005190 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191 ret = 0;
5192 }
5193 return ret;
5194}
5195
5196/**
5197 * sys_sched_rr_get_interval - return the default timeslice of a process.
5198 * @pid: pid of the process.
5199 * @interval: userspace pointer to the timeslice value.
5200 *
5201 * this syscall writes the default timeslice value of a given process
5202 * into the user-space timespec buffer. A value of '0' means infinity.
5203 */
5204asmlinkage
5205long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5206{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005207 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005208 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005209 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211
5212 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005213 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214
5215 retval = -ESRCH;
5216 read_lock(&tasklist_lock);
5217 p = find_process_by_pid(pid);
5218 if (!p)
5219 goto out_unlock;
5220
5221 retval = security_task_getscheduler(p);
5222 if (retval)
5223 goto out_unlock;
5224
Ingo Molnar77034932007-12-04 17:04:39 +01005225 /*
5226 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5227 * tasks that are on an otherwise idle runqueue:
5228 */
5229 time_slice = 0;
5230 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005231 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005232 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005233 struct sched_entity *se = &p->se;
5234 unsigned long flags;
5235 struct rq *rq;
5236
5237 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005238 if (rq->cfs.load.weight)
5239 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005240 task_rq_unlock(rq, &flags);
5241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005243 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005246
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247out_unlock:
5248 read_unlock(&tasklist_lock);
5249 return retval;
5250}
5251
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005252static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005253
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005254void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005257 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005260 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005261 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005262#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005264 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005266 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267#else
5268 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005269 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005271 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272#endif
5273#ifdef CONFIG_DEBUG_STACK_USAGE
5274 {
Al Viro10ebffd2005-11-13 16:06:56 -08005275 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276 while (!*n)
5277 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005278 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279 }
5280#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005281 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005282 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005284 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285}
5286
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005287void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005289 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290
Ingo Molnar4bd77322007-07-11 21:21:47 +02005291#if BITS_PER_LONG == 32
5292 printk(KERN_INFO
5293 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005295 printk(KERN_INFO
5296 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297#endif
5298 read_lock(&tasklist_lock);
5299 do_each_thread(g, p) {
5300 /*
5301 * reset the NMI-timeout, listing all files on a slow
5302 * console might take alot of time:
5303 */
5304 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005305 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005306 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307 } while_each_thread(g, p);
5308
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005309 touch_all_softlockup_watchdogs();
5310
Ingo Molnardd41f592007-07-09 18:51:59 +02005311#ifdef CONFIG_SCHED_DEBUG
5312 sysrq_sched_debug_show();
5313#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005315 /*
5316 * Only show locks if all tasks are dumped:
5317 */
5318 if (state_filter == -1)
5319 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320}
5321
Ingo Molnar1df21052007-07-09 18:51:58 +02005322void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5323{
Ingo Molnardd41f592007-07-09 18:51:59 +02005324 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005325}
5326
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005327/**
5328 * init_idle - set up an idle thread for a given CPU
5329 * @idle: task in question
5330 * @cpu: cpu the idle task belongs to
5331 *
5332 * NOTE: this function does not set the idle thread's NEED_RESCHED
5333 * flag, to make booting more robust.
5334 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005335void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005337 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 unsigned long flags;
5339
Ingo Molnardd41f592007-07-09 18:51:59 +02005340 __sched_fork(idle);
5341 idle->se.exec_start = sched_clock();
5342
Ingo Molnarb29739f2006-06-27 02:54:51 -07005343 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005345 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346
5347 spin_lock_irqsave(&rq->lock, flags);
5348 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005349#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5350 idle->oncpu = 1;
5351#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352 spin_unlock_irqrestore(&rq->lock, flags);
5353
5354 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f52005-11-13 16:06:55 -08005355 task_thread_info(idle)->preempt_count = 0;
Ingo Molnar6478d882008-01-25 21:08:33 +01005356
Ingo Molnardd41f592007-07-09 18:51:59 +02005357 /*
5358 * The idle tasks have their own, simple scheduling class:
5359 */
5360 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361}
5362
5363/*
5364 * In a system that switches off the HZ timer nohz_cpu_mask
5365 * indicates which cpus entered this state. This is used
5366 * in the rcu update to wait only for active cpus. For system
5367 * which do not switch off the HZ timer nohz_cpu_mask should
5368 * always be CPU_MASK_NONE.
5369 */
5370cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5371
Ingo Molnar19978ca2007-11-09 22:39:38 +01005372/*
5373 * Increase the granularity value when there are more CPUs,
5374 * because with more CPUs the 'effective latency' as visible
5375 * to users decreases. But the relationship is not linear,
5376 * so pick a second-best guess by going with the log2 of the
5377 * number of CPUs.
5378 *
5379 * This idea comes from the SD scheduler of Con Kolivas:
5380 */
5381static inline void sched_init_granularity(void)
5382{
5383 unsigned int factor = 1 + ilog2(num_online_cpus());
5384 const unsigned long limit = 200000000;
5385
5386 sysctl_sched_min_granularity *= factor;
5387 if (sysctl_sched_min_granularity > limit)
5388 sysctl_sched_min_granularity = limit;
5389
5390 sysctl_sched_latency *= factor;
5391 if (sysctl_sched_latency > limit)
5392 sysctl_sched_latency = limit;
5393
5394 sysctl_sched_wakeup_granularity *= factor;
5395 sysctl_sched_batch_wakeup_granularity *= factor;
5396}
5397
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398#ifdef CONFIG_SMP
5399/*
5400 * This is how migration works:
5401 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005402 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403 * runqueue and wake up that CPU's migration thread.
5404 * 2) we down() the locked semaphore => thread blocks.
5405 * 3) migration thread wakes up (implicitly it forces the migrated
5406 * thread off the CPU)
5407 * 4) it gets the migration request and checks whether the migrated
5408 * task is still in the wrong runqueue.
5409 * 5) if it's in the wrong runqueue then the migration thread removes
5410 * it and puts it into the right queue.
5411 * 6) migration thread up()s the semaphore.
5412 * 7) we wake up and the migration is done.
5413 */
5414
5415/*
5416 * Change a given task's CPU affinity. Migrate the thread to a
5417 * proper CPU and schedule it away if the CPU it's executing on
5418 * is removed from the allowed bitmask.
5419 *
5420 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005421 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422 * call is not atomic; no spinlocks may be held.
5423 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005424int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005426 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005428 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005429 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430
5431 rq = task_rq_lock(p, &flags);
5432 if (!cpus_intersects(new_mask, cpu_online_map)) {
5433 ret = -EINVAL;
5434 goto out;
5435 }
5436
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005437 if (p->sched_class->set_cpus_allowed)
5438 p->sched_class->set_cpus_allowed(p, &new_mask);
5439 else {
Ingo Molnar0eab9142008-01-25 21:08:19 +01005440 p->cpus_allowed = new_mask;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01005441 p->rt.nr_cpus_allowed = cpus_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005442 }
5443
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444 /* Can the task run on the task's current CPU? If so, we're done */
5445 if (cpu_isset(task_cpu(p), new_mask))
5446 goto out;
5447
5448 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
5449 /* Need help from migration thread: drop lock and wait. */
5450 task_rq_unlock(rq, &flags);
5451 wake_up_process(rq->migration_thread);
5452 wait_for_completion(&req.done);
5453 tlb_migrate_finish(p->mm);
5454 return 0;
5455 }
5456out:
5457 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005458
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459 return ret;
5460}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461EXPORT_SYMBOL_GPL(set_cpus_allowed);
5462
5463/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005464 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465 * this because either it can't run here any more (set_cpus_allowed()
5466 * away from this CPU, or CPU going down), or because we're
5467 * attempting to rebalance this task on exec (sched_exec).
5468 *
5469 * So we race with normal scheduler movements, but that's OK, as long
5470 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005471 *
5472 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005474static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005476 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005477 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478
5479 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005480 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481
5482 rq_src = cpu_rq(src_cpu);
5483 rq_dest = cpu_rq(dest_cpu);
5484
5485 double_rq_lock(rq_src, rq_dest);
5486 /* Already moved. */
5487 if (task_cpu(p) != src_cpu)
5488 goto out;
5489 /* Affinity changed (again). */
5490 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5491 goto out;
5492
Ingo Molnardd41f592007-07-09 18:51:59 +02005493 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005494 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005495 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005496
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005498 if (on_rq) {
5499 activate_task(rq_dest, p, 0);
5500 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005502 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503out:
5504 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005505 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506}
5507
5508/*
5509 * migration_thread - this is a highprio system thread that performs
5510 * thread migration by bumping thread off CPU then 'pushing' onto
5511 * another runqueue.
5512 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005513static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005516 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517
5518 rq = cpu_rq(cpu);
5519 BUG_ON(rq->migration_thread != current);
5520
5521 set_current_state(TASK_INTERRUPTIBLE);
5522 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005523 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526 spin_lock_irq(&rq->lock);
5527
5528 if (cpu_is_offline(cpu)) {
5529 spin_unlock_irq(&rq->lock);
5530 goto wait_to_die;
5531 }
5532
5533 if (rq->active_balance) {
5534 active_load_balance(rq, cpu);
5535 rq->active_balance = 0;
5536 }
5537
5538 head = &rq->migration_queue;
5539
5540 if (list_empty(head)) {
5541 spin_unlock_irq(&rq->lock);
5542 schedule();
5543 set_current_state(TASK_INTERRUPTIBLE);
5544 continue;
5545 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005546 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547 list_del_init(head->next);
5548
Nick Piggin674311d2005-06-25 14:57:27 -07005549 spin_unlock(&rq->lock);
5550 __migrate_task(req->task, cpu, req->dest_cpu);
5551 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552
5553 complete(&req->done);
5554 }
5555 __set_current_state(TASK_RUNNING);
5556 return 0;
5557
5558wait_to_die:
5559 /* Wait for kthread_stop */
5560 set_current_state(TASK_INTERRUPTIBLE);
5561 while (!kthread_should_stop()) {
5562 schedule();
5563 set_current_state(TASK_INTERRUPTIBLE);
5564 }
5565 __set_current_state(TASK_RUNNING);
5566 return 0;
5567}
5568
5569#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005570
5571static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5572{
5573 int ret;
5574
5575 local_irq_disable();
5576 ret = __migrate_task(p, src_cpu, dest_cpu);
5577 local_irq_enable();
5578 return ret;
5579}
5580
Kirill Korotaev054b9102006-12-10 02:20:11 -08005581/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005582 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005583 * NOTE: interrupts should be disabled by the caller
5584 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005585static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005587 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005589 struct rq *rq;
5590 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591
Andi Kleen3a5c3592007-10-15 17:00:14 +02005592 do {
5593 /* On same node? */
5594 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5595 cpus_and(mask, mask, p->cpus_allowed);
5596 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597
Andi Kleen3a5c3592007-10-15 17:00:14 +02005598 /* On any allowed CPU? */
5599 if (dest_cpu == NR_CPUS)
5600 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601
Andi Kleen3a5c3592007-10-15 17:00:14 +02005602 /* No more Mr. Nice Guy. */
5603 if (dest_cpu == NR_CPUS) {
Cliff Wickman470fd642007-10-18 23:40:46 -07005604 cpumask_t cpus_allowed = cpuset_cpus_allowed_locked(p);
5605 /*
5606 * Try to stay on the same cpuset, where the
5607 * current cpuset may be a subset of all cpus.
5608 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005609 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005610 * called within calls to cpuset_lock/cpuset_unlock.
5611 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005612 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005613 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005614 dest_cpu = any_online_cpu(p->cpus_allowed);
5615 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616
Andi Kleen3a5c3592007-10-15 17:00:14 +02005617 /*
5618 * Don't tell them about moving exiting tasks or
5619 * kernel threads (both mm NULL), since they never
5620 * leave kernel.
5621 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005622 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005623 printk(KERN_INFO "process %d (%s) no "
5624 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005625 task_pid_nr(p), p->comm, dead_cpu);
5626 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005627 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005628 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629}
5630
5631/*
5632 * While a dead CPU has no uninterruptible tasks queued at this point,
5633 * it might still have a nonzero ->nr_uninterruptible counter, because
5634 * for performance reasons the counter is not stricly tracking tasks to
5635 * their home CPUs. So we just add the counter to another CPU's counter,
5636 * to keep the global sum constant after CPU-down:
5637 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005638static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005640 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641 unsigned long flags;
5642
5643 local_irq_save(flags);
5644 double_rq_lock(rq_src, rq_dest);
5645 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5646 rq_src->nr_uninterruptible = 0;
5647 double_rq_unlock(rq_src, rq_dest);
5648 local_irq_restore(flags);
5649}
5650
5651/* Run through task list and migrate tasks from the dead cpu. */
5652static void migrate_live_tasks(int src_cpu)
5653{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005654 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005656 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657
Ingo Molnar48f24c42006-07-03 00:25:40 -07005658 do_each_thread(t, p) {
5659 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660 continue;
5661
Ingo Molnar48f24c42006-07-03 00:25:40 -07005662 if (task_cpu(p) == src_cpu)
5663 move_task_off_dead_cpu(src_cpu, p);
5664 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005666 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667}
5668
Ingo Molnardd41f592007-07-09 18:51:59 +02005669/*
5670 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005671 * It does so by boosting its priority to highest possible.
5672 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673 */
5674void sched_idle_next(void)
5675{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005676 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005677 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678 struct task_struct *p = rq->idle;
5679 unsigned long flags;
5680
5681 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005682 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683
Ingo Molnar48f24c42006-07-03 00:25:40 -07005684 /*
5685 * Strictly not necessary since rest of the CPUs are stopped by now
5686 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 */
5688 spin_lock_irqsave(&rq->lock, flags);
5689
Ingo Molnardd41f592007-07-09 18:51:59 +02005690 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005691
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005692 update_rq_clock(rq);
5693 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694
5695 spin_unlock_irqrestore(&rq->lock, flags);
5696}
5697
Ingo Molnar48f24c42006-07-03 00:25:40 -07005698/*
5699 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700 * offline.
5701 */
5702void idle_task_exit(void)
5703{
5704 struct mm_struct *mm = current->active_mm;
5705
5706 BUG_ON(cpu_online(smp_processor_id()));
5707
5708 if (mm != &init_mm)
5709 switch_mm(mm, &init_mm, current);
5710 mmdrop(mm);
5711}
5712
Kirill Korotaev054b9102006-12-10 02:20:11 -08005713/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005714static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005716 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717
5718 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005719 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720
5721 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005722 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723
Ingo Molnar48f24c42006-07-03 00:25:40 -07005724 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725
5726 /*
5727 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005728 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729 * fine.
5730 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005731 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005732 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005733 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734
Ingo Molnar48f24c42006-07-03 00:25:40 -07005735 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736}
5737
5738/* release_task() removes task from tasklist, so we won't find dead tasks. */
5739static void migrate_dead_tasks(unsigned int dead_cpu)
5740{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005741 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005742 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743
Ingo Molnardd41f592007-07-09 18:51:59 +02005744 for ( ; ; ) {
5745 if (!rq->nr_running)
5746 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005747 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005748 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005749 if (!next)
5750 break;
5751 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005752
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753 }
5754}
5755#endif /* CONFIG_HOTPLUG_CPU */
5756
Nick Piggine692ab52007-07-26 13:40:43 +02005757#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5758
5759static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005760 {
5761 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005762 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005763 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005764 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005765};
5766
5767static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005768 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005769 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005770 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005771 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005772 .child = sd_ctl_dir,
5773 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005774 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005775};
5776
5777static struct ctl_table *sd_alloc_ctl_entry(int n)
5778{
5779 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005780 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005781
Nick Piggine692ab52007-07-26 13:40:43 +02005782 return entry;
5783}
5784
Milton Miller6382bc92007-10-15 17:00:19 +02005785static void sd_free_ctl_entry(struct ctl_table **tablep)
5786{
Milton Millercd790072007-10-17 16:55:11 +02005787 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005788
Milton Millercd790072007-10-17 16:55:11 +02005789 /*
5790 * In the intermediate directories, both the child directory and
5791 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005792 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02005793 * static strings and all have proc handlers.
5794 */
5795 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005796 if (entry->child)
5797 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02005798 if (entry->proc_handler == NULL)
5799 kfree(entry->procname);
5800 }
Milton Miller6382bc92007-10-15 17:00:19 +02005801
5802 kfree(*tablep);
5803 *tablep = NULL;
5804}
5805
Nick Piggine692ab52007-07-26 13:40:43 +02005806static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005807set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005808 const char *procname, void *data, int maxlen,
5809 mode_t mode, proc_handler *proc_handler)
5810{
Nick Piggine692ab52007-07-26 13:40:43 +02005811 entry->procname = procname;
5812 entry->data = data;
5813 entry->maxlen = maxlen;
5814 entry->mode = mode;
5815 entry->proc_handler = proc_handler;
5816}
5817
5818static struct ctl_table *
5819sd_alloc_ctl_domain_table(struct sched_domain *sd)
5820{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005821 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005822
Milton Millerad1cdc12007-10-15 17:00:19 +02005823 if (table == NULL)
5824 return NULL;
5825
Alexey Dobriyane0361852007-08-09 11:16:46 +02005826 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005827 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005828 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005829 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005830 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005831 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005832 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005833 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005834 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005835 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005836 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005837 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005838 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005839 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005840 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005841 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005842 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005843 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005844 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005845 &sd->cache_nice_tries,
5846 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005847 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005848 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005849 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005850
5851 return table;
5852}
5853
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005854static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005855{
5856 struct ctl_table *entry, *table;
5857 struct sched_domain *sd;
5858 int domain_num = 0, i;
5859 char buf[32];
5860
5861 for_each_domain(cpu, sd)
5862 domain_num++;
5863 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005864 if (table == NULL)
5865 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005866
5867 i = 0;
5868 for_each_domain(cpu, sd) {
5869 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005870 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005871 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005872 entry->child = sd_alloc_ctl_domain_table(sd);
5873 entry++;
5874 i++;
5875 }
5876 return table;
5877}
5878
5879static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005880static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005881{
5882 int i, cpu_num = num_online_cpus();
5883 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5884 char buf[32];
5885
Milton Miller73785472007-10-24 18:23:48 +02005886 WARN_ON(sd_ctl_dir[0].child);
5887 sd_ctl_dir[0].child = entry;
5888
Milton Millerad1cdc12007-10-15 17:00:19 +02005889 if (entry == NULL)
5890 return;
5891
Milton Miller97b6ea72007-10-15 17:00:19 +02005892 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005893 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005894 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005895 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005896 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005897 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005898 }
Milton Miller73785472007-10-24 18:23:48 +02005899
5900 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005901 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5902}
Milton Miller6382bc92007-10-15 17:00:19 +02005903
Milton Miller73785472007-10-24 18:23:48 +02005904/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005905static void unregister_sched_domain_sysctl(void)
5906{
Milton Miller73785472007-10-24 18:23:48 +02005907 if (sd_sysctl_header)
5908 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005909 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005910 if (sd_ctl_dir[0].child)
5911 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005912}
Nick Piggine692ab52007-07-26 13:40:43 +02005913#else
Milton Miller6382bc92007-10-15 17:00:19 +02005914static void register_sched_domain_sysctl(void)
5915{
5916}
5917static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005918{
5919}
5920#endif
5921
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922/*
5923 * migration_call - callback that gets triggered when a CPU is added.
5924 * Here we can start up the necessary migration thread for the new CPU.
5925 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005926static int __cpuinit
5927migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005930 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005932 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933
5934 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005935
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005937 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02005938 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939 if (IS_ERR(p))
5940 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941 kthread_bind(p, cpu);
5942 /* Must be high prio: stop_machine expects to yield to it. */
5943 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02005944 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945 task_rq_unlock(rq, &flags);
5946 cpu_rq(cpu)->migration_thread = p;
5947 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005948
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005950 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005951 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005953
5954 /* Update our root-domain */
5955 rq = cpu_rq(cpu);
5956 spin_lock_irqsave(&rq->lock, flags);
5957 if (rq->rd) {
5958 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5959 cpu_set(cpu, rq->rd->online);
5960 }
5961 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005963
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964#ifdef CONFIG_HOTPLUG_CPU
5965 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005966 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005967 if (!cpu_rq(cpu)->migration_thread)
5968 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005969 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005970 kthread_bind(cpu_rq(cpu)->migration_thread,
5971 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972 kthread_stop(cpu_rq(cpu)->migration_thread);
5973 cpu_rq(cpu)->migration_thread = NULL;
5974 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005975
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005977 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07005978 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979 migrate_live_tasks(cpu);
5980 rq = cpu_rq(cpu);
5981 kthread_stop(rq->migration_thread);
5982 rq->migration_thread = NULL;
5983 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005984 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005985 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005986 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02005988 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
5989 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005991 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07005992 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993 migrate_nr_uninterruptible(rq);
5994 BUG_ON(rq->nr_running != 0);
5995
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005996 /*
5997 * No need to migrate the tasks: it was best-effort if
5998 * they didn't take sched_hotcpu_mutex. Just wake up
5999 * the requestors.
6000 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001 spin_lock_irq(&rq->lock);
6002 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006003 struct migration_req *req;
6004
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006006 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007 list_del_init(&req->list);
6008 complete(&req->done);
6009 }
6010 spin_unlock_irq(&rq->lock);
6011 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006012
Gregory Haskins08f503b2008-03-10 17:59:11 -04006013 case CPU_DYING:
6014 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006015 /* Update our root-domain */
6016 rq = cpu_rq(cpu);
6017 spin_lock_irqsave(&rq->lock, flags);
6018 if (rq->rd) {
6019 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6020 cpu_clear(cpu, rq->rd->online);
6021 }
6022 spin_unlock_irqrestore(&rq->lock, flags);
6023 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024#endif
6025 }
6026 return NOTIFY_OK;
6027}
6028
6029/* Register at highest priority so that task migration (migrate_all_tasks)
6030 * happens before everything else.
6031 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006032static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033 .notifier_call = migration_call,
6034 .priority = 10
6035};
6036
Adrian Bunke6fe6642007-11-09 22:39:39 +01006037void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038{
6039 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006040 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006041
6042 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006043 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6044 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6046 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047}
6048#endif
6049
6050#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006051
6052/* Number of possible processor ids */
6053int nr_cpu_ids __read_mostly = NR_CPUS;
6054EXPORT_SYMBOL(nr_cpu_ids);
6055
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006056#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006057
6058static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level)
6059{
6060 struct sched_group *group = sd->groups;
6061 cpumask_t groupmask;
6062 char str[NR_CPUS];
6063
6064 cpumask_scnprintf(str, NR_CPUS, sd->span);
6065 cpus_clear(groupmask);
6066
6067 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6068
6069 if (!(sd->flags & SD_LOAD_BALANCE)) {
6070 printk("does not load-balance\n");
6071 if (sd->parent)
6072 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6073 " has parent");
6074 return -1;
6075 }
6076
6077 printk(KERN_CONT "span %s\n", str);
6078
6079 if (!cpu_isset(cpu, sd->span)) {
6080 printk(KERN_ERR "ERROR: domain->span does not contain "
6081 "CPU%d\n", cpu);
6082 }
6083 if (!cpu_isset(cpu, group->cpumask)) {
6084 printk(KERN_ERR "ERROR: domain->groups does not contain"
6085 " CPU%d\n", cpu);
6086 }
6087
6088 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6089 do {
6090 if (!group) {
6091 printk("\n");
6092 printk(KERN_ERR "ERROR: group is NULL\n");
6093 break;
6094 }
6095
6096 if (!group->__cpu_power) {
6097 printk(KERN_CONT "\n");
6098 printk(KERN_ERR "ERROR: domain->cpu_power not "
6099 "set\n");
6100 break;
6101 }
6102
6103 if (!cpus_weight(group->cpumask)) {
6104 printk(KERN_CONT "\n");
6105 printk(KERN_ERR "ERROR: empty group\n");
6106 break;
6107 }
6108
6109 if (cpus_intersects(groupmask, group->cpumask)) {
6110 printk(KERN_CONT "\n");
6111 printk(KERN_ERR "ERROR: repeated CPUs\n");
6112 break;
6113 }
6114
6115 cpus_or(groupmask, groupmask, group->cpumask);
6116
6117 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
6118 printk(KERN_CONT " %s", str);
6119
6120 group = group->next;
6121 } while (group != sd->groups);
6122 printk(KERN_CONT "\n");
6123
6124 if (!cpus_equal(sd->span, groupmask))
6125 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6126
6127 if (sd->parent && !cpus_subset(groupmask, sd->parent->span))
6128 printk(KERN_ERR "ERROR: parent span is not a superset "
6129 "of domain->span\n");
6130 return 0;
6131}
6132
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133static void sched_domain_debug(struct sched_domain *sd, int cpu)
6134{
6135 int level = 0;
6136
Nick Piggin41c7ce92005-06-25 14:57:24 -07006137 if (!sd) {
6138 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6139 return;
6140 }
6141
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6143
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006144 for (;;) {
6145 if (sched_domain_debug_one(sd, cpu, level))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147 level++;
6148 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006149 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006150 break;
6151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006152}
6153#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006154# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155#endif
6156
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006157static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006158{
6159 if (cpus_weight(sd->span) == 1)
6160 return 1;
6161
6162 /* Following flags need at least 2 groups */
6163 if (sd->flags & (SD_LOAD_BALANCE |
6164 SD_BALANCE_NEWIDLE |
6165 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006166 SD_BALANCE_EXEC |
6167 SD_SHARE_CPUPOWER |
6168 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006169 if (sd->groups != sd->groups->next)
6170 return 0;
6171 }
6172
6173 /* Following flags don't use groups */
6174 if (sd->flags & (SD_WAKE_IDLE |
6175 SD_WAKE_AFFINE |
6176 SD_WAKE_BALANCE))
6177 return 0;
6178
6179 return 1;
6180}
6181
Ingo Molnar48f24c42006-07-03 00:25:40 -07006182static int
6183sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006184{
6185 unsigned long cflags = sd->flags, pflags = parent->flags;
6186
6187 if (sd_degenerate(parent))
6188 return 1;
6189
6190 if (!cpus_equal(sd->span, parent->span))
6191 return 0;
6192
6193 /* Does parent contain flags not in child? */
6194 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6195 if (cflags & SD_WAKE_AFFINE)
6196 pflags &= ~SD_WAKE_BALANCE;
6197 /* Flags needing groups don't count if only 1 group in parent */
6198 if (parent->groups == parent->groups->next) {
6199 pflags &= ~(SD_LOAD_BALANCE |
6200 SD_BALANCE_NEWIDLE |
6201 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006202 SD_BALANCE_EXEC |
6203 SD_SHARE_CPUPOWER |
6204 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006205 }
6206 if (~cflags & pflags)
6207 return 0;
6208
6209 return 1;
6210}
6211
Gregory Haskins57d885f2008-01-25 21:08:18 +01006212static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6213{
6214 unsigned long flags;
6215 const struct sched_class *class;
6216
6217 spin_lock_irqsave(&rq->lock, flags);
6218
6219 if (rq->rd) {
6220 struct root_domain *old_rd = rq->rd;
6221
Ingo Molnar0eab9142008-01-25 21:08:19 +01006222 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006223 if (class->leave_domain)
6224 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006225 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006226
Gregory Haskinsdc938522008-01-25 21:08:26 +01006227 cpu_clear(rq->cpu, old_rd->span);
6228 cpu_clear(rq->cpu, old_rd->online);
6229
Gregory Haskins57d885f2008-01-25 21:08:18 +01006230 if (atomic_dec_and_test(&old_rd->refcount))
6231 kfree(old_rd);
6232 }
6233
6234 atomic_inc(&rd->refcount);
6235 rq->rd = rd;
6236
Gregory Haskinsdc938522008-01-25 21:08:26 +01006237 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006238 if (cpu_isset(rq->cpu, cpu_online_map))
6239 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006240
Ingo Molnar0eab9142008-01-25 21:08:19 +01006241 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006242 if (class->join_domain)
6243 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006244 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006245
6246 spin_unlock_irqrestore(&rq->lock, flags);
6247}
6248
Gregory Haskinsdc938522008-01-25 21:08:26 +01006249static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006250{
6251 memset(rd, 0, sizeof(*rd));
6252
Gregory Haskinsdc938522008-01-25 21:08:26 +01006253 cpus_clear(rd->span);
6254 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006255}
6256
6257static void init_defrootdomain(void)
6258{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006259 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006260 atomic_set(&def_root_domain.refcount, 1);
6261}
6262
Gregory Haskinsdc938522008-01-25 21:08:26 +01006263static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006264{
6265 struct root_domain *rd;
6266
6267 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6268 if (!rd)
6269 return NULL;
6270
Gregory Haskinsdc938522008-01-25 21:08:26 +01006271 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006272
6273 return rd;
6274}
6275
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006277 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278 * hold the hotplug lock.
6279 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006280static void
6281cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006283 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006284 struct sched_domain *tmp;
6285
6286 /* Remove the sched domains which do not contribute to scheduling. */
6287 for (tmp = sd; tmp; tmp = tmp->parent) {
6288 struct sched_domain *parent = tmp->parent;
6289 if (!parent)
6290 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006291 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006292 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006293 if (parent->parent)
6294 parent->parent->child = tmp;
6295 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006296 }
6297
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006298 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006299 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006300 if (sd)
6301 sd->child = NULL;
6302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303
6304 sched_domain_debug(sd, cpu);
6305
Gregory Haskins57d885f2008-01-25 21:08:18 +01006306 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006307 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308}
6309
6310/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006311static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312
6313/* Setup the mask of cpus configured for isolated domains */
6314static int __init isolated_cpu_setup(char *str)
6315{
6316 int ints[NR_CPUS], i;
6317
6318 str = get_options(str, ARRAY_SIZE(ints), ints);
6319 cpus_clear(cpu_isolated_map);
6320 for (i = 1; i <= ints[0]; i++)
6321 if (ints[i] < NR_CPUS)
6322 cpu_set(ints[i], cpu_isolated_map);
6323 return 1;
6324}
6325
Ingo Molnar8927f492007-10-15 17:00:13 +02006326__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327
6328/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006329 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6330 * to a function which identifies what group(along with sched group) a CPU
6331 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6332 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333 *
6334 * init_sched_build_groups will build a circular linked list of the groups
6335 * covered by the given span, and will set each group's ->cpumask correctly,
6336 * and ->cpu_power to 0.
6337 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006338static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006339init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
6340 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
6341 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342{
6343 struct sched_group *first = NULL, *last = NULL;
6344 cpumask_t covered = CPU_MASK_NONE;
6345 int i;
6346
6347 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006348 struct sched_group *sg;
6349 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350 int j;
6351
6352 if (cpu_isset(i, covered))
6353 continue;
6354
6355 sg->cpumask = CPU_MASK_NONE;
Eric Dumazet5517d862007-05-08 00:32:57 -07006356 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357
6358 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006359 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360 continue;
6361
6362 cpu_set(j, covered);
6363 cpu_set(j, sg->cpumask);
6364 }
6365 if (!first)
6366 first = sg;
6367 if (last)
6368 last->next = sg;
6369 last = sg;
6370 }
6371 last->next = first;
6372}
6373
John Hawkes9c1cfda2005-09-06 15:18:14 -07006374#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375
John Hawkes9c1cfda2005-09-06 15:18:14 -07006376#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006377
John Hawkes9c1cfda2005-09-06 15:18:14 -07006378/**
6379 * find_next_best_node - find the next node to include in a sched_domain
6380 * @node: node whose sched_domain we're building
6381 * @used_nodes: nodes already in the sched_domain
6382 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006383 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006384 * finds the closest node not already in the @used_nodes map.
6385 *
6386 * Should use nodemask_t.
6387 */
6388static int find_next_best_node(int node, unsigned long *used_nodes)
6389{
6390 int i, n, val, min_val, best_node = 0;
6391
6392 min_val = INT_MAX;
6393
6394 for (i = 0; i < MAX_NUMNODES; i++) {
6395 /* Start at @node */
6396 n = (node + i) % MAX_NUMNODES;
6397
6398 if (!nr_cpus_node(n))
6399 continue;
6400
6401 /* Skip already used nodes */
6402 if (test_bit(n, used_nodes))
6403 continue;
6404
6405 /* Simple min distance search */
6406 val = node_distance(node, n);
6407
6408 if (val < min_val) {
6409 min_val = val;
6410 best_node = n;
6411 }
6412 }
6413
6414 set_bit(best_node, used_nodes);
6415 return best_node;
6416}
6417
6418/**
6419 * sched_domain_node_span - get a cpumask for a node's sched_domain
6420 * @node: node whose cpumask we're constructing
6421 * @size: number of nodes to include in this span
6422 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006423 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006424 * should be one that prevents unnecessary balancing, but also spreads tasks
6425 * out optimally.
6426 */
6427static cpumask_t sched_domain_node_span(int node)
6428{
John Hawkes9c1cfda2005-09-06 15:18:14 -07006429 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006430 cpumask_t span, nodemask;
6431 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006432
6433 cpus_clear(span);
6434 bitmap_zero(used_nodes, MAX_NUMNODES);
6435
6436 nodemask = node_to_cpumask(node);
6437 cpus_or(span, span, nodemask);
6438 set_bit(node, used_nodes);
6439
6440 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6441 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006442
John Hawkes9c1cfda2005-09-06 15:18:14 -07006443 nodemask = node_to_cpumask(next_node);
6444 cpus_or(span, span, nodemask);
6445 }
6446
6447 return span;
6448}
6449#endif
6450
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006451int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006452
John Hawkes9c1cfda2005-09-06 15:18:14 -07006453/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006454 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006455 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456#ifdef CONFIG_SCHED_SMT
6457static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006458static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006459
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006460static int
6461cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006463 if (sg)
6464 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465 return cpu;
6466}
6467#endif
6468
Ingo Molnar48f24c42006-07-03 00:25:40 -07006469/*
6470 * multi-core sched-domains:
6471 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006472#ifdef CONFIG_SCHED_MC
6473static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006474static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006475#endif
6476
6477#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006478static int
6479cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006480{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006481 int group;
Mike Travisd5a74302007-10-16 01:24:05 -07006482 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006483 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006484 group = first_cpu(mask);
6485 if (sg)
6486 *sg = &per_cpu(sched_group_core, group);
6487 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006488}
6489#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006490static int
6491cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006492{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006493 if (sg)
6494 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006495 return cpu;
6496}
6497#endif
6498
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006500static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006501
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006502static int
6503cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006505 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006506#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006507 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006508 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006509 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006510#elif defined(CONFIG_SCHED_SMT)
Mike Travisd5a74302007-10-16 01:24:05 -07006511 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006512 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006513 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006515 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006517 if (sg)
6518 *sg = &per_cpu(sched_group_phys, group);
6519 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520}
6521
6522#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006523/*
6524 * The init_sched_build_groups can't handle what we want to do with node
6525 * groups, so roll our own. Now each node has its own list of groups which
6526 * gets dynamically allocated.
6527 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07006529static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07006530
6531static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006532static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006533
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006534static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
6535 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006537 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
6538 int group;
6539
6540 cpus_and(nodemask, nodemask, *cpu_map);
6541 group = first_cpu(nodemask);
6542
6543 if (sg)
6544 *sg = &per_cpu(sched_group_allnodes, group);
6545 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006547
Siddha, Suresh B08069032006-03-27 01:15:23 -08006548static void init_numa_sched_groups_power(struct sched_group *group_head)
6549{
6550 struct sched_group *sg = group_head;
6551 int j;
6552
6553 if (!sg)
6554 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006555 do {
6556 for_each_cpu_mask(j, sg->cpumask) {
6557 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006558
Andi Kleen3a5c3592007-10-15 17:00:14 +02006559 sd = &per_cpu(phys_domains, j);
6560 if (j != first_cpu(sd->groups->cpumask)) {
6561 /*
6562 * Only add "power" once for each
6563 * physical package.
6564 */
6565 continue;
6566 }
6567
6568 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006569 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006570 sg = sg->next;
6571 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006572}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006573#endif
6574
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006575#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006576/* Free memory allocated for various sched_group structures */
6577static void free_sched_groups(const cpumask_t *cpu_map)
6578{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006579 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006580
6581 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006582 struct sched_group **sched_group_nodes
6583 = sched_group_nodes_bycpu[cpu];
6584
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006585 if (!sched_group_nodes)
6586 continue;
6587
6588 for (i = 0; i < MAX_NUMNODES; i++) {
6589 cpumask_t nodemask = node_to_cpumask(i);
6590 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6591
6592 cpus_and(nodemask, nodemask, *cpu_map);
6593 if (cpus_empty(nodemask))
6594 continue;
6595
6596 if (sg == NULL)
6597 continue;
6598 sg = sg->next;
6599next_sg:
6600 oldsg = sg;
6601 sg = sg->next;
6602 kfree(oldsg);
6603 if (oldsg != sched_group_nodes[i])
6604 goto next_sg;
6605 }
6606 kfree(sched_group_nodes);
6607 sched_group_nodes_bycpu[cpu] = NULL;
6608 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006609}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006610#else
6611static void free_sched_groups(const cpumask_t *cpu_map)
6612{
6613}
6614#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006615
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006617 * Initialize sched groups cpu_power.
6618 *
6619 * cpu_power indicates the capacity of sched group, which is used while
6620 * distributing the load between different sched groups in a sched domain.
6621 * Typically cpu_power for all the groups in a sched domain will be same unless
6622 * there are asymmetries in the topology. If there are asymmetries, group
6623 * having more cpu_power will pickup more load compared to the group having
6624 * less cpu_power.
6625 *
6626 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6627 * the maximum number of tasks a group can handle in the presence of other idle
6628 * or lightly loaded groups in the same sched domain.
6629 */
6630static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6631{
6632 struct sched_domain *child;
6633 struct sched_group *group;
6634
6635 WARN_ON(!sd || !sd->groups);
6636
6637 if (cpu != first_cpu(sd->groups->cpumask))
6638 return;
6639
6640 child = sd->child;
6641
Eric Dumazet5517d862007-05-08 00:32:57 -07006642 sd->groups->__cpu_power = 0;
6643
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006644 /*
6645 * For perf policy, if the groups in child domain share resources
6646 * (for example cores sharing some portions of the cache hierarchy
6647 * or SMT), then set this domain groups cpu_power such that each group
6648 * can handle only one task, when there are other idle groups in the
6649 * same sched domain.
6650 */
6651 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6652 (child->flags &
6653 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006654 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006655 return;
6656 }
6657
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006658 /*
6659 * add cpu_power of each child group to this groups cpu_power
6660 */
6661 group = child->groups;
6662 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006663 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006664 group = group->next;
6665 } while (group != child->groups);
6666}
6667
6668/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006669 * Build sched domains for a given set of cpus and attach the sched domains
6670 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006671 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006672static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006673{
6674 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006675 struct root_domain *rd;
John Hawkesd1b55132005-09-06 15:18:14 -07006676#ifdef CONFIG_NUMA
6677 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006678 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006679
6680 /*
6681 * Allocate the per-node list of sched groups
6682 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006683 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006684 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006685 if (!sched_group_nodes) {
6686 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006687 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006688 }
6689 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6690#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691
Gregory Haskinsdc938522008-01-25 21:08:26 +01006692 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006693 if (!rd) {
6694 printk(KERN_WARNING "Cannot alloc root domain\n");
6695 return -ENOMEM;
6696 }
6697
Linus Torvalds1da177e2005-04-16 15:20:36 -07006698 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006699 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006700 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006701 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006702 struct sched_domain *sd = NULL, *p;
6703 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6704
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006705 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706
6707#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006708 if (cpus_weight(*cpu_map) >
6709 SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006710 sd = &per_cpu(allnodes_domains, i);
6711 *sd = SD_ALLNODES_INIT;
6712 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006713 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006714 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006715 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006716 } else
6717 p = NULL;
6718
Linus Torvalds1da177e2005-04-16 15:20:36 -07006719 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006721 sd->span = sched_domain_node_span(cpu_to_node(i));
6722 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006723 if (p)
6724 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006725 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726#endif
6727
6728 p = sd;
6729 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006730 *sd = SD_CPU_INIT;
6731 sd->span = nodemask;
6732 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006733 if (p)
6734 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006735 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006736
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006737#ifdef CONFIG_SCHED_MC
6738 p = sd;
6739 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006740 *sd = SD_MC_INIT;
6741 sd->span = cpu_coregroup_map(i);
6742 cpus_and(sd->span, sd->span, *cpu_map);
6743 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006744 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006745 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006746#endif
6747
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748#ifdef CONFIG_SCHED_SMT
6749 p = sd;
6750 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751 *sd = SD_SIBLING_INIT;
Mike Travisd5a74302007-10-16 01:24:05 -07006752 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006753 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006755 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006756 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757#endif
6758 }
6759
6760#ifdef CONFIG_SCHED_SMT
6761 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006762 for_each_cpu_mask(i, *cpu_map) {
Mike Travisd5a74302007-10-16 01:24:05 -07006763 cpumask_t this_sibling_map = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006764 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765 if (i != first_cpu(this_sibling_map))
6766 continue;
6767
Ingo Molnardd41f592007-07-09 18:51:59 +02006768 init_sched_build_groups(this_sibling_map, cpu_map,
6769 &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770 }
6771#endif
6772
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006773#ifdef CONFIG_SCHED_MC
6774 /* Set up multi-core groups */
6775 for_each_cpu_mask(i, *cpu_map) {
6776 cpumask_t this_core_map = cpu_coregroup_map(i);
6777 cpus_and(this_core_map, this_core_map, *cpu_map);
6778 if (i != first_cpu(this_core_map))
6779 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006780 init_sched_build_groups(this_core_map, cpu_map,
6781 &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006782 }
6783#endif
6784
Linus Torvalds1da177e2005-04-16 15:20:36 -07006785 /* Set up physical groups */
6786 for (i = 0; i < MAX_NUMNODES; i++) {
6787 cpumask_t nodemask = node_to_cpumask(i);
6788
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006789 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790 if (cpus_empty(nodemask))
6791 continue;
6792
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006793 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794 }
6795
6796#ifdef CONFIG_NUMA
6797 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006798 if (sd_allnodes)
Ingo Molnardd41f592007-07-09 18:51:59 +02006799 init_sched_build_groups(*cpu_map, cpu_map,
6800 &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006801
6802 for (i = 0; i < MAX_NUMNODES; i++) {
6803 /* Set up node groups */
6804 struct sched_group *sg, *prev;
6805 cpumask_t nodemask = node_to_cpumask(i);
6806 cpumask_t domainspan;
6807 cpumask_t covered = CPU_MASK_NONE;
6808 int j;
6809
6810 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006811 if (cpus_empty(nodemask)) {
6812 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006813 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006814 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006815
6816 domainspan = sched_domain_node_span(i);
6817 cpus_and(domainspan, domainspan, *cpu_map);
6818
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006819 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006820 if (!sg) {
6821 printk(KERN_WARNING "Can not alloc domain group for "
6822 "node %d\n", i);
6823 goto error;
6824 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006825 sched_group_nodes[i] = sg;
6826 for_each_cpu_mask(j, nodemask) {
6827 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02006828
John Hawkes9c1cfda2005-09-06 15:18:14 -07006829 sd = &per_cpu(node_domains, j);
6830 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006831 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006832 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006833 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006834 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006835 cpus_or(covered, covered, nodemask);
6836 prev = sg;
6837
6838 for (j = 0; j < MAX_NUMNODES; j++) {
6839 cpumask_t tmp, notcovered;
6840 int n = (i + j) % MAX_NUMNODES;
6841
6842 cpus_complement(notcovered, covered);
6843 cpus_and(tmp, notcovered, *cpu_map);
6844 cpus_and(tmp, tmp, domainspan);
6845 if (cpus_empty(tmp))
6846 break;
6847
6848 nodemask = node_to_cpumask(n);
6849 cpus_and(tmp, tmp, nodemask);
6850 if (cpus_empty(tmp))
6851 continue;
6852
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006853 sg = kmalloc_node(sizeof(struct sched_group),
6854 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006855 if (!sg) {
6856 printk(KERN_WARNING
6857 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006858 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006859 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006860 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006861 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006862 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006863 cpus_or(covered, covered, tmp);
6864 prev->next = sg;
6865 prev = sg;
6866 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006868#endif
6869
6870 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006871#ifdef CONFIG_SCHED_SMT
6872 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006873 struct sched_domain *sd = &per_cpu(cpu_domains, i);
6874
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006875 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006876 }
6877#endif
6878#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006879 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006880 struct sched_domain *sd = &per_cpu(core_domains, i);
6881
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006882 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006883 }
6884#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006885
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006886 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006887 struct sched_domain *sd = &per_cpu(phys_domains, i);
6888
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006889 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890 }
6891
John Hawkes9c1cfda2005-09-06 15:18:14 -07006892#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006893 for (i = 0; i < MAX_NUMNODES; i++)
6894 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006895
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006896 if (sd_allnodes) {
6897 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006898
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006899 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006900 init_numa_sched_groups_power(sg);
6901 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006902#endif
6903
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006905 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906 struct sched_domain *sd;
6907#ifdef CONFIG_SCHED_SMT
6908 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006909#elif defined(CONFIG_SCHED_MC)
6910 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006911#else
6912 sd = &per_cpu(phys_domains, i);
6913#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006914 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006916
6917 return 0;
6918
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006919#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006920error:
6921 free_sched_groups(cpu_map);
6922 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006923#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924}
Paul Jackson029190c2007-10-18 23:40:20 -07006925
6926static cpumask_t *doms_cur; /* current sched domains */
6927static int ndoms_cur; /* number of sched domains in 'doms_cur' */
6928
6929/*
6930 * Special case: If a kmalloc of a doms_cur partition (array of
6931 * cpumask_t) fails, then fallback to a single sched domain,
6932 * as determined by the single cpumask_t fallback_doms.
6933 */
6934static cpumask_t fallback_doms;
6935
Heiko Carstens22e52b02008-03-12 18:31:59 +01006936void __attribute__((weak)) arch_update_cpu_topology(void)
6937{
6938}
6939
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006940/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006941 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006942 * For now this just excludes isolated cpus, but could be used to
6943 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006944 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006945static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006946{
Milton Miller73785472007-10-24 18:23:48 +02006947 int err;
6948
Heiko Carstens22e52b02008-03-12 18:31:59 +01006949 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07006950 ndoms_cur = 1;
6951 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6952 if (!doms_cur)
6953 doms_cur = &fallback_doms;
6954 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Milton Miller73785472007-10-24 18:23:48 +02006955 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02006956 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006957
6958 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006959}
6960
6961static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006963 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006964}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006965
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006966/*
6967 * Detach sched domains from a group of cpus specified in cpu_map
6968 * These cpus will now be attached to the NULL domain
6969 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006970static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006971{
6972 int i;
6973
Milton Miller6382bc92007-10-15 17:00:19 +02006974 unregister_sched_domain_sysctl();
6975
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006976 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006977 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006978 synchronize_sched();
6979 arch_destroy_sched_domains(cpu_map);
6980}
6981
Paul Jackson029190c2007-10-18 23:40:20 -07006982/*
6983 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006984 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006985 * doms_new[] to the current sched domain partitioning, doms_cur[].
6986 * It destroys each deleted domain and builds each new domain.
6987 *
6988 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006989 * The masks don't intersect (don't overlap.) We should setup one
6990 * sched domain for each mask. CPUs not in any of the cpumasks will
6991 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006992 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6993 * it as it is.
6994 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006995 * The passed in 'doms_new' should be kmalloc'd. This routine takes
6996 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07006997 * failed the kmalloc call, then it can pass in doms_new == NULL,
6998 * and partition_sched_domains() will fallback to the single partition
6999 * 'fallback_doms'.
7000 *
7001 * Call with hotplug lock held
7002 */
7003void partition_sched_domains(int ndoms_new, cpumask_t *doms_new)
7004{
7005 int i, j;
7006
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007007 lock_doms_cur();
7008
Milton Miller73785472007-10-24 18:23:48 +02007009 /* always unregister in case we don't destroy any domains */
7010 unregister_sched_domain_sysctl();
7011
Paul Jackson029190c2007-10-18 23:40:20 -07007012 if (doms_new == NULL) {
7013 ndoms_new = 1;
7014 doms_new = &fallback_doms;
7015 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
7016 }
7017
7018 /* Destroy deleted domains */
7019 for (i = 0; i < ndoms_cur; i++) {
7020 for (j = 0; j < ndoms_new; j++) {
7021 if (cpus_equal(doms_cur[i], doms_new[j]))
7022 goto match1;
7023 }
7024 /* no match - a current sched domain not in new doms_new[] */
7025 detach_destroy_domains(doms_cur + i);
7026match1:
7027 ;
7028 }
7029
7030 /* Build new domains */
7031 for (i = 0; i < ndoms_new; i++) {
7032 for (j = 0; j < ndoms_cur; j++) {
7033 if (cpus_equal(doms_new[i], doms_cur[j]))
7034 goto match2;
7035 }
7036 /* no match - add a new doms_new */
7037 build_sched_domains(doms_new + i);
7038match2:
7039 ;
7040 }
7041
7042 /* Remember the new sched domains */
7043 if (doms_cur != &fallback_doms)
7044 kfree(doms_cur);
7045 doms_cur = doms_new;
7046 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007047
7048 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007049
7050 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07007051}
7052
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007053#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007054int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007055{
7056 int err;
7057
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007058 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007059 detach_destroy_domains(&cpu_online_map);
7060 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007061 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007062
7063 return err;
7064}
7065
7066static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7067{
7068 int ret;
7069
7070 if (buf[0] != '0' && buf[0] != '1')
7071 return -EINVAL;
7072
7073 if (smt)
7074 sched_smt_power_savings = (buf[0] == '1');
7075 else
7076 sched_mc_power_savings = (buf[0] == '1');
7077
7078 ret = arch_reinit_sched_domains();
7079
7080 return ret ? ret : count;
7081}
7082
Adrian Bunk6707de002007-08-12 18:08:19 +02007083#ifdef CONFIG_SCHED_MC
7084static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7085{
7086 return sprintf(page, "%u\n", sched_mc_power_savings);
7087}
7088static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7089 const char *buf, size_t count)
7090{
7091 return sched_power_savings_store(buf, count, 0);
7092}
7093static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7094 sched_mc_power_savings_store);
7095#endif
7096
7097#ifdef CONFIG_SCHED_SMT
7098static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7099{
7100 return sprintf(page, "%u\n", sched_smt_power_savings);
7101}
7102static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7103 const char *buf, size_t count)
7104{
7105 return sched_power_savings_store(buf, count, 1);
7106}
7107static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7108 sched_smt_power_savings_store);
7109#endif
7110
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007111int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7112{
7113 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007114
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007115#ifdef CONFIG_SCHED_SMT
7116 if (smt_capable())
7117 err = sysfs_create_file(&cls->kset.kobj,
7118 &attr_sched_smt_power_savings.attr);
7119#endif
7120#ifdef CONFIG_SCHED_MC
7121 if (!err && mc_capable())
7122 err = sysfs_create_file(&cls->kset.kobj,
7123 &attr_sched_mc_power_savings.attr);
7124#endif
7125 return err;
7126}
7127#endif
7128
Linus Torvalds1da177e2005-04-16 15:20:36 -07007129/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007130 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007131 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007132 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007133 * which will prevent rebalancing while the sched domains are recalculated.
7134 */
7135static int update_sched_domains(struct notifier_block *nfb,
7136 unsigned long action, void *hcpu)
7137{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138 switch (action) {
7139 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007140 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007141 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007142 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007143 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007144 return NOTIFY_OK;
7145
7146 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007147 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007149 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007151 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007152 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007153 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007154 /*
7155 * Fall through and re-initialise the domains.
7156 */
7157 break;
7158 default:
7159 return NOTIFY_DONE;
7160 }
7161
7162 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007163 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007164
7165 return NOTIFY_OK;
7166}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167
7168void __init sched_init_smp(void)
7169{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007170 cpumask_t non_isolated_cpus;
7171
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007172 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007173 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007174 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007175 if (cpus_empty(non_isolated_cpus))
7176 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007177 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007178 /* XXX: Theoretical race here - CPU may be hotplugged now */
7179 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007180
7181 /* Move init over to a non-isolated CPU */
7182 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
7183 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007184 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007185}
7186#else
7187void __init sched_init_smp(void)
7188{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007189 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007190}
7191#endif /* CONFIG_SMP */
7192
7193int in_sched_functions(unsigned long addr)
7194{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007195 return in_lock_functions(addr) ||
7196 (addr >= (unsigned long)__sched_text_start
7197 && addr < (unsigned long)__sched_text_end);
7198}
7199
Alexey Dobriyana9957442007-10-15 17:00:13 +02007200static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007201{
7202 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02007203#ifdef CONFIG_FAIR_GROUP_SCHED
7204 cfs_rq->rq = rq;
7205#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007206 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007207}
7208
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007209static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7210{
7211 struct rt_prio_array *array;
7212 int i;
7213
7214 array = &rt_rq->active;
7215 for (i = 0; i < MAX_RT_PRIO; i++) {
7216 INIT_LIST_HEAD(array->queue + i);
7217 __clear_bit(i, array->bitmap);
7218 }
7219 /* delimiter for bitsearch: */
7220 __set_bit(MAX_RT_PRIO, array->bitmap);
7221
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007222#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007223 rt_rq->highest_prio = MAX_RT_PRIO;
7224#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007225#ifdef CONFIG_SMP
7226 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007227 rt_rq->overloaded = 0;
7228#endif
7229
7230 rt_rq->rt_time = 0;
7231 rt_rq->rt_throttled = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007232
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007233#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007234 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007235 rt_rq->rq = rq;
7236#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007237}
7238
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007239#ifdef CONFIG_FAIR_GROUP_SCHED
7240static void init_tg_cfs_entry(struct rq *rq, struct task_group *tg,
7241 struct cfs_rq *cfs_rq, struct sched_entity *se,
7242 int cpu, int add)
7243{
7244 tg->cfs_rq[cpu] = cfs_rq;
7245 init_cfs_rq(cfs_rq, rq);
7246 cfs_rq->tg = tg;
7247 if (add)
7248 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7249
7250 tg->se[cpu] = se;
7251 se->cfs_rq = &rq->cfs;
7252 se->my_q = cfs_rq;
7253 se->load.weight = tg->shares;
7254 se->load.inv_weight = div64_64(1ULL<<32, se->load.weight);
7255 se->parent = NULL;
7256}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007257#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007258
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007259#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007260static void init_tg_rt_entry(struct rq *rq, struct task_group *tg,
7261 struct rt_rq *rt_rq, struct sched_rt_entity *rt_se,
7262 int cpu, int add)
7263{
7264 tg->rt_rq[cpu] = rt_rq;
7265 init_rt_rq(rt_rq, rq);
7266 rt_rq->tg = tg;
7267 rt_rq->rt_se = rt_se;
7268 if (add)
7269 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7270
7271 tg->rt_se[cpu] = rt_se;
7272 rt_se->rt_rq = &rq->rt;
7273 rt_se->my_q = rt_rq;
7274 rt_se->parent = NULL;
7275 INIT_LIST_HEAD(&rt_se->run_list);
7276}
7277#endif
7278
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279void __init sched_init(void)
7280{
Christoph Lameter476f3532007-05-06 14:48:58 -07007281 int highest_cpu = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007282 int i, j;
7283
Gregory Haskins57d885f2008-01-25 21:08:18 +01007284#ifdef CONFIG_SMP
7285 init_defrootdomain();
7286#endif
7287
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007288#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007289 list_add(&init_task_group.list, &task_groups);
7290#endif
7291
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007292 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007293 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294
7295 rq = cpu_rq(i);
7296 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007297 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007298 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007299 rq->clock = 1;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02007300 update_last_tick_seen(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02007301 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007302 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007303#ifdef CONFIG_FAIR_GROUP_SCHED
7304 init_task_group.shares = init_task_group_load;
7305 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
7306 init_tg_cfs_entry(rq, &init_task_group,
7307 &per_cpu(init_cfs_rq, i),
7308 &per_cpu(init_sched_entity, i), i, 1);
7309
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007310#endif
7311#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007312 init_task_group.rt_runtime =
7313 sysctl_sched_rt_runtime * NSEC_PER_USEC;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007314 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
7315 init_tg_rt_entry(rq, &init_task_group,
7316 &per_cpu(init_rt_rq, i),
7317 &per_cpu(init_sched_rt_entity, i), i, 1);
7318#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007319 rq->rt_period_expire = 0;
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007320 rq->rt_throttled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007321
Ingo Molnardd41f592007-07-09 18:51:59 +02007322 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7323 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007324#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007325 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007326 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007328 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007329 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007330 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007331 rq->migration_thread = NULL;
7332 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007333 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007335 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336 atomic_set(&rq->nr_iowait, 0);
Christoph Lameter476f3532007-05-06 14:48:58 -07007337 highest_cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338 }
7339
Peter Williams2dd73a42006-06-27 02:54:34 -07007340 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007341
Avi Kivitye107be32007-07-26 13:40:43 +02007342#ifdef CONFIG_PREEMPT_NOTIFIERS
7343 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7344#endif
7345
Christoph Lameterc9819f42006-12-10 02:20:25 -08007346#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07007347 nr_cpu_ids = highest_cpu + 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08007348 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7349#endif
7350
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007351#ifdef CONFIG_RT_MUTEXES
7352 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7353#endif
7354
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355 /*
7356 * The boot idle thread does lazy MMU switching as well:
7357 */
7358 atomic_inc(&init_mm.mm_count);
7359 enter_lazy_tlb(&init_mm, current);
7360
7361 /*
7362 * Make us the idle thread. Technically, schedule() should not be
7363 * called from this thread, however somewhere below it might be,
7364 * but because we are the idle thread, we just pick up running again
7365 * when this runqueue becomes "idle".
7366 */
7367 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02007368 /*
7369 * During early bootup we pretend to be a normal task:
7370 */
7371 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007372
7373 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374}
7375
7376#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7377void __might_sleep(char *file, int line)
7378{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007379#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380 static unsigned long prev_jiffy; /* ratelimiting */
7381
7382 if ((in_atomic() || irqs_disabled()) &&
7383 system_state == SYSTEM_RUNNING && !oops_in_progress) {
7384 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7385 return;
7386 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08007387 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007388 " context at %s:%d\n", file, line);
7389 printk("in_atomic():%d, irqs_disabled():%d\n",
7390 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007391 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007392 if (irqs_disabled())
7393 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394 dump_stack();
7395 }
7396#endif
7397}
7398EXPORT_SYMBOL(__might_sleep);
7399#endif
7400
7401#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007402static void normalize_task(struct rq *rq, struct task_struct *p)
7403{
7404 int on_rq;
7405 update_rq_clock(rq);
7406 on_rq = p->se.on_rq;
7407 if (on_rq)
7408 deactivate_task(rq, p, 0);
7409 __setscheduler(rq, p, SCHED_NORMAL, 0);
7410 if (on_rq) {
7411 activate_task(rq, p, 0);
7412 resched_task(rq->curr);
7413 }
7414}
7415
Linus Torvalds1da177e2005-04-16 15:20:36 -07007416void normalize_rt_tasks(void)
7417{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007418 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007419 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007420 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007421
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007422 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007423 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007424 /*
7425 * Only normalize user tasks:
7426 */
7427 if (!p->mm)
7428 continue;
7429
Ingo Molnardd41f592007-07-09 18:51:59 +02007430 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007431#ifdef CONFIG_SCHEDSTATS
7432 p->se.wait_start = 0;
7433 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007434 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007435#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007436 task_rq(p)->clock = 0;
7437
7438 if (!rt_task(p)) {
7439 /*
7440 * Renice negative nice level userspace
7441 * tasks back to 0:
7442 */
7443 if (TASK_NICE(p) < 0 && p->mm)
7444 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007448 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007449 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450
Ingo Molnar178be792007-10-15 17:00:18 +02007451 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007452
Ingo Molnarb29739f2006-06-27 02:54:51 -07007453 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007454 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007455 } while_each_thread(g, p);
7456
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007457 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007458}
7459
7460#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007461
7462#ifdef CONFIG_IA64
7463/*
7464 * These functions are only useful for the IA64 MCA handling.
7465 *
7466 * They can only be called when the whole system has been
7467 * stopped - every CPU needs to be quiescent, and no scheduling
7468 * activity can take place. Using them for anything else would
7469 * be a serious bug, and as a result, they aren't even visible
7470 * under any other configuration.
7471 */
7472
7473/**
7474 * curr_task - return the current task for a given cpu.
7475 * @cpu: the processor in question.
7476 *
7477 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7478 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007479struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007480{
7481 return cpu_curr(cpu);
7482}
7483
7484/**
7485 * set_curr_task - set the current task for a given cpu.
7486 * @cpu: the processor in question.
7487 * @p: the task pointer to set.
7488 *
7489 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007490 * are serviced on a separate stack. It allows the architecture to switch the
7491 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007492 * must be called with all CPU's synchronized, and interrupts disabled, the
7493 * and caller must save the original value of the current task (see
7494 * curr_task() above) and restore that value before reenabling interrupts and
7495 * re-starting the system.
7496 *
7497 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7498 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007499void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007500{
7501 cpu_curr(cpu) = p;
7502}
7503
7504#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007505
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007506#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007507
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007508#ifdef CONFIG_FAIR_GROUP_SCHED
7509static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007510{
7511 int i;
7512
7513 for_each_possible_cpu(i) {
7514 if (tg->cfs_rq)
7515 kfree(tg->cfs_rq[i]);
7516 if (tg->se)
7517 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007518 }
7519
7520 kfree(tg->cfs_rq);
7521 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007522}
7523
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007524static int alloc_fair_sched_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007525{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007526 struct cfs_rq *cfs_rq;
7527 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007528 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007529 int i;
7530
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007531 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007532 if (!tg->cfs_rq)
7533 goto err;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007534 tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007535 if (!tg->se)
7536 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007537
7538 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007539
7540 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007541 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007542
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007543 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
7544 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007545 if (!cfs_rq)
7546 goto err;
7547
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007548 se = kmalloc_node(sizeof(struct sched_entity),
7549 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007550 if (!se)
7551 goto err;
7552
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007553 init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007554 }
7555
7556 return 1;
7557
7558 err:
7559 return 0;
7560}
7561
7562static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7563{
7564 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
7565 &cpu_rq(cpu)->leaf_cfs_rq_list);
7566}
7567
7568static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7569{
7570 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
7571}
7572#else
7573static inline void free_fair_sched_group(struct task_group *tg)
7574{
7575}
7576
7577static inline int alloc_fair_sched_group(struct task_group *tg)
7578{
7579 return 1;
7580}
7581
7582static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7583{
7584}
7585
7586static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7587{
7588}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007589#endif
7590
7591#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007592static void free_rt_sched_group(struct task_group *tg)
7593{
7594 int i;
7595
7596 for_each_possible_cpu(i) {
7597 if (tg->rt_rq)
7598 kfree(tg->rt_rq[i]);
7599 if (tg->rt_se)
7600 kfree(tg->rt_se[i]);
7601 }
7602
7603 kfree(tg->rt_rq);
7604 kfree(tg->rt_se);
7605}
7606
7607static int alloc_rt_sched_group(struct task_group *tg)
7608{
7609 struct rt_rq *rt_rq;
7610 struct sched_rt_entity *rt_se;
7611 struct rq *rq;
7612 int i;
7613
7614 tg->rt_rq = kzalloc(sizeof(rt_rq) * NR_CPUS, GFP_KERNEL);
7615 if (!tg->rt_rq)
7616 goto err;
7617 tg->rt_se = kzalloc(sizeof(rt_se) * NR_CPUS, GFP_KERNEL);
7618 if (!tg->rt_se)
7619 goto err;
7620
7621 tg->rt_runtime = 0;
7622
7623 for_each_possible_cpu(i) {
7624 rq = cpu_rq(i);
7625
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007626 rt_rq = kmalloc_node(sizeof(struct rt_rq),
7627 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7628 if (!rt_rq)
7629 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007630
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007631 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
7632 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7633 if (!rt_se)
7634 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007635
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007636 init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007637 }
7638
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007639 return 1;
7640
7641 err:
7642 return 0;
7643}
7644
7645static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7646{
7647 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
7648 &cpu_rq(cpu)->leaf_rt_rq_list);
7649}
7650
7651static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7652{
7653 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
7654}
7655#else
7656static inline void free_rt_sched_group(struct task_group *tg)
7657{
7658}
7659
7660static inline int alloc_rt_sched_group(struct task_group *tg)
7661{
7662 return 1;
7663}
7664
7665static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7666{
7667}
7668
7669static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7670{
7671}
7672#endif
7673
7674static void free_sched_group(struct task_group *tg)
7675{
7676 free_fair_sched_group(tg);
7677 free_rt_sched_group(tg);
7678 kfree(tg);
7679}
7680
7681/* allocate runqueue etc for a new task group */
7682struct task_group *sched_create_group(void)
7683{
7684 struct task_group *tg;
7685 unsigned long flags;
7686 int i;
7687
7688 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7689 if (!tg)
7690 return ERR_PTR(-ENOMEM);
7691
7692 if (!alloc_fair_sched_group(tg))
7693 goto err;
7694
7695 if (!alloc_rt_sched_group(tg))
7696 goto err;
7697
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007698 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007699 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007700 register_fair_sched_group(tg, i);
7701 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007702 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007703 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007704 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007705
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007706 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007707
7708err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007709 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007710 return ERR_PTR(-ENOMEM);
7711}
7712
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007713/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007714static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007715{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007716 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007717 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007718}
7719
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007720/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007721void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007722{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007723 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007724 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007725
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007726 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007727 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007728 unregister_fair_sched_group(tg, i);
7729 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007730 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007731 list_del_rcu(&tg->list);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007732 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007733
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007734 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007735 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007736}
7737
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007738/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007739 * The caller of this function should have put the task in its new group
7740 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7741 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007742 */
7743void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007744{
7745 int on_rq, running;
7746 unsigned long flags;
7747 struct rq *rq;
7748
7749 rq = task_rq_lock(tsk, &flags);
7750
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007751 update_rq_clock(rq);
7752
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007753 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007754 on_rq = tsk->se.on_rq;
7755
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007756 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007757 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007758 if (unlikely(running))
7759 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007760
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007761 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007762
Peter Zijlstra810b3812008-02-29 15:21:01 -05007763#ifdef CONFIG_FAIR_GROUP_SCHED
7764 if (tsk->sched_class->moved_group)
7765 tsk->sched_class->moved_group(tsk);
7766#endif
7767
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007768 if (unlikely(running))
7769 tsk->sched_class->set_curr_task(rq);
7770 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02007771 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007772
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007773 task_rq_unlock(rq, &flags);
7774}
7775
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007776#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007777static void set_se_shares(struct sched_entity *se, unsigned long shares)
7778{
7779 struct cfs_rq *cfs_rq = se->cfs_rq;
7780 struct rq *rq = cfs_rq->rq;
7781 int on_rq;
7782
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007783 spin_lock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007784
7785 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007786 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007787 dequeue_entity(cfs_rq, se, 0);
7788
7789 se->load.weight = shares;
7790 se->load.inv_weight = div64_64((1ULL<<32), shares);
7791
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007792 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007793 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007794
7795 spin_unlock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007796}
7797
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007798static DEFINE_MUTEX(shares_mutex);
7799
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007800int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007801{
7802 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007803 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01007804
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007805 /*
7806 * A weight of 0 or 1 can cause arithmetics problems.
7807 * (The default weight is 1024 - so there's no practical
7808 * limitation from this.)
7809 */
7810 if (shares < 2)
7811 shares = 2;
7812
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007813 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007814 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007815 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007816
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007817 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007818 for_each_possible_cpu(i)
7819 unregister_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007820 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007821
7822 /* wait for any ongoing reference to this group to finish */
7823 synchronize_sched();
7824
7825 /*
7826 * Now we are free to modify the group's share on each cpu
7827 * w/o tripping rebalance_share or load_balance_fair.
7828 */
7829 tg->shares = shares;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007830 for_each_possible_cpu(i)
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007831 set_se_shares(tg->se[i], shares);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007832
7833 /*
7834 * Enable load balance activity on this group, by inserting it back on
7835 * each cpu's rq->leaf_cfs_rq_list.
7836 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007837 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007838 for_each_possible_cpu(i)
7839 register_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007840 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007841done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007842 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007843 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007844}
7845
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007846unsigned long sched_group_shares(struct task_group *tg)
7847{
7848 return tg->shares;
7849}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007850#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007851
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007852#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007853/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007854 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007855 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007856static DEFINE_MUTEX(rt_constraints_mutex);
7857
7858static unsigned long to_ratio(u64 period, u64 runtime)
7859{
7860 if (runtime == RUNTIME_INF)
7861 return 1ULL << 16;
7862
Peter Zijlstra2692a242008-02-27 12:00:46 +01007863 return div64_64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007864}
7865
7866static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007867{
7868 struct task_group *tgi;
7869 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007870 unsigned long global_ratio =
7871 to_ratio(sysctl_sched_rt_period,
7872 sysctl_sched_rt_runtime < 0 ?
7873 RUNTIME_INF : sysctl_sched_rt_runtime);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007874
7875 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007876 list_for_each_entry_rcu(tgi, &task_groups, list) {
7877 if (tgi == tg)
7878 continue;
7879
7880 total += to_ratio(period, tgi->rt_runtime);
7881 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007882 rcu_read_unlock();
7883
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007884 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007885}
7886
Dhaval Giani521f1a242008-02-28 15:21:56 +05307887/* Must be called with tasklist_lock held */
7888static inline int tg_has_rt_tasks(struct task_group *tg)
7889{
7890 struct task_struct *g, *p;
7891 do_each_thread(g, p) {
7892 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
7893 return 1;
7894 } while_each_thread(g, p);
7895 return 0;
7896}
7897
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007898int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007899{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007900 u64 rt_runtime, rt_period;
7901 int err = 0;
7902
Peter Zijlstra2692a242008-02-27 12:00:46 +01007903 rt_period = (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007904 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7905 if (rt_runtime_us == -1)
Peter Zijlstra2692a242008-02-27 12:00:46 +01007906 rt_runtime = RUNTIME_INF;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007907
7908 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05307909 read_lock(&tasklist_lock);
7910 if (rt_runtime_us == 0 && tg_has_rt_tasks(tg)) {
7911 err = -EBUSY;
7912 goto unlock;
7913 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007914 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
7915 err = -EINVAL;
7916 goto unlock;
7917 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007918 tg->rt_runtime = rt_runtime;
7919 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05307920 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007921 mutex_unlock(&rt_constraints_mutex);
7922
7923 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007924}
7925
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007926long sched_group_rt_runtime(struct task_group *tg)
7927{
7928 u64 rt_runtime_us;
7929
7930 if (tg->rt_runtime == RUNTIME_INF)
7931 return -1;
7932
7933 rt_runtime_us = tg->rt_runtime;
7934 do_div(rt_runtime_us, NSEC_PER_USEC);
7935 return rt_runtime_us;
7936}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007937#endif
7938#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007939
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007940#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007941
7942/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007943static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007944{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007945 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
7946 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007947}
7948
7949static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02007950cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007951{
7952 struct task_group *tg;
7953
Paul Menage2b01dfe2007-10-24 18:23:50 +02007954 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007955 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007956 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007957 return &init_task_group.css;
7958 }
7959
7960 /* we support only 1-level deep hierarchical scheduler atm */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007961 if (cgrp->parent->parent)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007962 return ERR_PTR(-EINVAL);
7963
7964 tg = sched_create_group();
7965 if (IS_ERR(tg))
7966 return ERR_PTR(-ENOMEM);
7967
7968 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007969 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007970
7971 return &tg->css;
7972}
7973
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007974static void
7975cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007976{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007977 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007978
7979 sched_destroy_group(tg);
7980}
7981
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007982static int
7983cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
7984 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007985{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007986#ifdef CONFIG_RT_GROUP_SCHED
7987 /* Don't accept realtime tasks when there is no way for them to run */
7988 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_runtime == 0)
7989 return -EINVAL;
7990#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007991 /* We don't support RT-tasks being in separate groups */
7992 if (tsk->sched_class != &fair_sched_class)
7993 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007994#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007995
7996 return 0;
7997}
7998
7999static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02008000cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008001 struct cgroup *old_cont, struct task_struct *tsk)
8002{
8003 sched_move_task(tsk);
8004}
8005
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008006#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menage2b01dfe2007-10-24 18:23:50 +02008007static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8008 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008009{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008010 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008011}
8012
Paul Menage2b01dfe2007-10-24 18:23:50 +02008013static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008014{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008015 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008016
8017 return (u64) tg->shares;
8018}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008019#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008020
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008021#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008022static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
8023 struct file *file,
8024 const char __user *userbuf,
8025 size_t nbytes, loff_t *unused_ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008026{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008027 char buffer[64];
8028 int retval = 0;
8029 s64 val;
8030 char *end;
8031
8032 if (!nbytes)
8033 return -EINVAL;
8034 if (nbytes >= sizeof(buffer))
8035 return -E2BIG;
8036 if (copy_from_user(buffer, userbuf, nbytes))
8037 return -EFAULT;
8038
8039 buffer[nbytes] = 0; /* nul-terminate */
8040
8041 /* strip newline if necessary */
8042 if (nbytes && (buffer[nbytes-1] == '\n'))
8043 buffer[nbytes-1] = 0;
8044 val = simple_strtoll(buffer, &end, 0);
8045 if (*end)
8046 return -EINVAL;
8047
8048 /* Pass to subsystem */
8049 retval = sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
8050 if (!retval)
8051 retval = nbytes;
8052 return retval;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008053}
8054
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008055static ssize_t cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft,
8056 struct file *file,
8057 char __user *buf, size_t nbytes,
8058 loff_t *ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008059{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008060 char tmp[64];
8061 long val = sched_group_rt_runtime(cgroup_tg(cgrp));
8062 int len = sprintf(tmp, "%ld\n", val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008063
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008064 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008065}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008066#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008067
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008068static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008069#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008070 {
8071 .name = "shares",
8072 .read_uint = cpu_shares_read_uint,
8073 .write_uint = cpu_shares_write_uint,
8074 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008075#endif
8076#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008077 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008078 .name = "rt_runtime_us",
8079 .read = cpu_rt_runtime_read,
8080 .write = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008081 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008082#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008083};
8084
8085static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8086{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008087 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008088}
8089
8090struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01008091 .name = "cpu",
8092 .create = cpu_cgroup_create,
8093 .destroy = cpu_cgroup_destroy,
8094 .can_attach = cpu_cgroup_can_attach,
8095 .attach = cpu_cgroup_attach,
8096 .populate = cpu_cgroup_populate,
8097 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008098 .early_init = 1,
8099};
8100
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008101#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008102
8103#ifdef CONFIG_CGROUP_CPUACCT
8104
8105/*
8106 * CPU accounting code for task groups.
8107 *
8108 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
8109 * (balbir@in.ibm.com).
8110 */
8111
8112/* track cpu usage of a group of tasks */
8113struct cpuacct {
8114 struct cgroup_subsys_state css;
8115 /* cpuusage holds pointer to a u64-type object on every cpu */
8116 u64 *cpuusage;
8117};
8118
8119struct cgroup_subsys cpuacct_subsys;
8120
8121/* return cpu accounting group corresponding to this container */
8122static inline struct cpuacct *cgroup_ca(struct cgroup *cont)
8123{
8124 return container_of(cgroup_subsys_state(cont, cpuacct_subsys_id),
8125 struct cpuacct, css);
8126}
8127
8128/* return cpu accounting group to which this task belongs */
8129static inline struct cpuacct *task_ca(struct task_struct *tsk)
8130{
8131 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
8132 struct cpuacct, css);
8133}
8134
8135/* create a new cpu accounting group */
8136static struct cgroup_subsys_state *cpuacct_create(
8137 struct cgroup_subsys *ss, struct cgroup *cont)
8138{
8139 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
8140
8141 if (!ca)
8142 return ERR_PTR(-ENOMEM);
8143
8144 ca->cpuusage = alloc_percpu(u64);
8145 if (!ca->cpuusage) {
8146 kfree(ca);
8147 return ERR_PTR(-ENOMEM);
8148 }
8149
8150 return &ca->css;
8151}
8152
8153/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008154static void
8155cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008156{
8157 struct cpuacct *ca = cgroup_ca(cont);
8158
8159 free_percpu(ca->cpuusage);
8160 kfree(ca);
8161}
8162
8163/* return total cpu usage (in nanoseconds) of a group */
8164static u64 cpuusage_read(struct cgroup *cont, struct cftype *cft)
8165{
8166 struct cpuacct *ca = cgroup_ca(cont);
8167 u64 totalcpuusage = 0;
8168 int i;
8169
8170 for_each_possible_cpu(i) {
8171 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8172
8173 /*
8174 * Take rq->lock to make 64-bit addition safe on 32-bit
8175 * platforms.
8176 */
8177 spin_lock_irq(&cpu_rq(i)->lock);
8178 totalcpuusage += *cpuusage;
8179 spin_unlock_irq(&cpu_rq(i)->lock);
8180 }
8181
8182 return totalcpuusage;
8183}
8184
8185static struct cftype files[] = {
8186 {
8187 .name = "usage",
8188 .read_uint = cpuusage_read,
8189 },
8190};
8191
8192static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8193{
8194 return cgroup_add_files(cont, ss, files, ARRAY_SIZE(files));
8195}
8196
8197/*
8198 * charge this task's execution time to its accounting group.
8199 *
8200 * called with rq->lock held.
8201 */
8202static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
8203{
8204 struct cpuacct *ca;
8205
8206 if (!cpuacct_subsys.active)
8207 return;
8208
8209 ca = task_ca(tsk);
8210 if (ca) {
8211 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
8212
8213 *cpuusage += cputime;
8214 }
8215}
8216
8217struct cgroup_subsys cpuacct_subsys = {
8218 .name = "cpuacct",
8219 .create = cpuacct_create,
8220 .destroy = cpuacct_destroy,
8221 .populate = cpuacct_populate,
8222 .subsys_id = cpuacct_subsys_id,
8223};
8224#endif /* CONFIG_CGROUP_CPUACCT */