blob: 28c73f07efb2f7506f70be5ceb7a44c134770afa [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Eric Dumazet5517d862007-05-08 00:32:57 -070070#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020071#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080074 * Scheduler clock - returns current time in nanosec units.
75 * This is default implementation.
76 * Architectures and sub-architectures can override this.
77 */
78unsigned long long __attribute__((weak)) sched_clock(void)
79{
Eric Dumazetd6322fa2007-11-09 22:39:38 +010080 return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080081}
82
83/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * Convert user-nice values [ -20 ... 0 ... 19 ]
85 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
86 * and back.
87 */
88#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
89#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
90#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
91
92/*
93 * 'User priority' is the nice value converted to something we
94 * can work with better when scaling various scheduler parameters,
95 * it's a [ 0 ... 39 ] range.
96 */
97#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
98#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
99#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
100
101/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100102 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100104#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200106#define NICE_0_LOAD SCHED_LOAD_SCALE
107#define NICE_0_SHIFT SCHED_LOAD_SHIFT
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * These are the 'tuning knobs' of the scheduler:
111 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200112 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * Timeslices get refilled after they expire.
114 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700116
Eric Dumazet5517d862007-05-08 00:32:57 -0700117#ifdef CONFIG_SMP
118/*
119 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
120 * Since cpu_power is a 'constant', we can use a reciprocal divide.
121 */
122static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
123{
124 return reciprocal_divide(load, sg->reciprocal_cpu_power);
125}
126
127/*
128 * Each time a sched group cpu_power is changed,
129 * we must compute its reciprocal value
130 */
131static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
132{
133 sg->__cpu_power += val;
134 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
135}
136#endif
137
Ingo Molnare05606d2007-07-09 18:51:59 +0200138static inline int rt_policy(int policy)
139{
140 if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR))
141 return 1;
142 return 0;
143}
144
145static inline int task_has_rt_policy(struct task_struct *p)
146{
147 return rt_policy(p->policy);
148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200151 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200153struct rt_prio_array {
154 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
155 struct list_head queue[MAX_RT_PRIO];
156};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100158#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200159
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700160#include <linux/cgroup.h>
161
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200162struct cfs_rq;
163
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100164static LIST_HEAD(task_groups);
165
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200166/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200167struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100168#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700169 struct cgroup_subsys_state css;
170#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100171
172#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200173 /* schedulable entities of this group on each cpu */
174 struct sched_entity **se;
175 /* runqueue "owned" by this group on each cpu */
176 struct cfs_rq **cfs_rq;
177 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100178#endif
179
180#ifdef CONFIG_RT_GROUP_SCHED
181 struct sched_rt_entity **rt_se;
182 struct rt_rq **rt_rq;
183
184 u64 rt_runtime;
185#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100186
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100187 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100188 struct list_head list;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200189};
190
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100191#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200192/* Default task group's sched entity on each cpu */
193static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
194/* Default task group's cfs_rq on each cpu */
195static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
196
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100197static struct sched_entity *init_sched_entity_p[NR_CPUS];
198static struct cfs_rq *init_cfs_rq_p[NR_CPUS];
199#endif
200
201#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100202static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
203static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
204
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100205static struct sched_rt_entity *init_sched_rt_entity_p[NR_CPUS];
206static struct rt_rq *init_rt_rq_p[NR_CPUS];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100207#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100208
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100209/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100210 * a task group's cpu shares.
211 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100212static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100213
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100214/* doms_cur_mutex serializes access to doms_cur[] array */
215static DEFINE_MUTEX(doms_cur_mutex);
216
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100217#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100218#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100219# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200220#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100221# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200222#endif
223
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100224static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100225#endif
226
227/* Default task group.
228 * Every task in system belong to this group at bootup.
229 */
230struct task_group init_task_group = {
231#ifdef CONFIG_FAIR_GROUP_SCHED
232 .se = init_sched_entity_p,
233 .cfs_rq = init_cfs_rq_p,
234#endif
235
236#ifdef CONFIG_RT_GROUP_SCHED
237 .rt_se = init_sched_rt_entity_p,
238 .rt_rq = init_rt_rq_p,
239#endif
240};
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200241
242/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200243static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200244{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200245 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200246
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100247#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200248 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100249#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700250 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
251 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200252#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100253 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200254#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200255 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200256}
257
258/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100259static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200260{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100261#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100262 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
263 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100264#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100265
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100266#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100267 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
268 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100269#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200270}
271
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100272static inline void lock_doms_cur(void)
273{
274 mutex_lock(&doms_cur_mutex);
275}
276
277static inline void unlock_doms_cur(void)
278{
279 mutex_unlock(&doms_cur_mutex);
280}
281
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200282#else
283
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100284static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100285static inline void lock_doms_cur(void) { }
286static inline void unlock_doms_cur(void) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200287
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100288#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200289
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200290/* CFS-related fields in a runqueue */
291struct cfs_rq {
292 struct load_weight load;
293 unsigned long nr_running;
294
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200295 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200296 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200297
298 struct rb_root tasks_timeline;
299 struct rb_node *rb_leftmost;
300 struct rb_node *rb_load_balance_curr;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200301 /* 'curr' points to currently running entity on this cfs_rq.
302 * It is set to NULL otherwise (i.e when none are currently running).
303 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100304 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200305
306 unsigned long nr_spread_over;
307
Ingo Molnar62160e32007-10-15 17:00:03 +0200308#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200309 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
310
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100311 /*
312 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200313 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
314 * (like users, containers etc.)
315 *
316 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
317 * list is used during load balance.
318 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100319 struct list_head leaf_cfs_rq_list;
320 struct task_group *tg; /* group that "owns" this runqueue */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200321#endif
322};
323
324/* Real-Time classes' related field in a runqueue: */
325struct rt_rq {
326 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100327 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100328#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100329 int highest_prio; /* highest queued rt task prio */
330#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100331#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100332 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100333 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100334#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100335 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100336 u64 rt_time;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100337
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100338#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100339 unsigned long rt_nr_boosted;
340
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100341 struct rq *rq;
342 struct list_head leaf_rt_rq_list;
343 struct task_group *tg;
344 struct sched_rt_entity *rt_se;
345#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200346};
347
Gregory Haskins57d885f2008-01-25 21:08:18 +0100348#ifdef CONFIG_SMP
349
350/*
351 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100352 * variables. Each exclusive cpuset essentially defines an island domain by
353 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100354 * exclusive cpuset is created, we also create and attach a new root-domain
355 * object.
356 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100357 */
358struct root_domain {
359 atomic_t refcount;
360 cpumask_t span;
361 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100362
Ingo Molnar0eab9142008-01-25 21:08:19 +0100363 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100364 * The "RT overload" flag: it gets set if a CPU has more than
365 * one runnable RT task.
366 */
367 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100368 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100369};
370
Gregory Haskinsdc938522008-01-25 21:08:26 +0100371/*
372 * By default the system creates a single root-domain with all cpus as
373 * members (mimicking the global state we have today).
374 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100375static struct root_domain def_root_domain;
376
377#endif
378
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200379/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * This is the main, per-CPU runqueue data structure.
381 *
382 * Locking rule: those places that want to lock multiple runqueues
383 * (such as the load balancing or the thread migration code), lock
384 * acquire operations must be ordered by ascending &runqueue.
385 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700386struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200387 /* runqueue lock: */
388 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 /*
391 * nr_running and cpu_load should be in the same cacheline because
392 * remote CPUs use both these fields when doing load calculation.
393 */
394 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200395 #define CPU_LOAD_IDX_MAX 5
396 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700397 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700398#ifdef CONFIG_NO_HZ
399 unsigned char in_nohz_recently;
400#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200401 /* capture load from *all* tasks on this cpu: */
402 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200403 unsigned long nr_load_updates;
404 u64 nr_switches;
405
406 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100407 struct rt_rq rt;
408 u64 rt_period_expire;
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100409 int rt_throttled;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100410
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200411#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200412 /* list of leaf cfs_rq on this cpu: */
413 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100414#endif
415#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100416 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 /*
420 * This is part of a global counter where only the total sum
421 * over all CPUs matters. A task can increase this counter on
422 * one CPU and if it got migrated afterwards it may decrease
423 * it on another CPU. Always updated under the runqueue lock:
424 */
425 unsigned long nr_uninterruptible;
426
Ingo Molnar36c8b582006-07-03 00:25:41 -0700427 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800428 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200430
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200431 u64 clock, prev_clock_raw;
432 s64 clock_max_delta;
433
Guillaume Chazaraincc203d22008-01-25 21:08:34 +0100434 unsigned int clock_warps, clock_overflows, clock_underflows;
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200435 u64 idle_clock;
436 unsigned int clock_deep_idle_events;
Ingo Molnar529c7722007-08-10 23:05:11 +0200437 u64 tick_timestamp;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 atomic_t nr_iowait;
440
441#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100442 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 struct sched_domain *sd;
444
445 /* For active balancing */
446 int active_balance;
447 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200448 /* cpu of this runqueue: */
449 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Ingo Molnar36c8b582006-07-03 00:25:41 -0700451 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct list_head migration_queue;
453#endif
454
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100455#ifdef CONFIG_SCHED_HRTICK
456 unsigned long hrtick_flags;
457 ktime_t hrtick_expire;
458 struct hrtimer hrtick_timer;
459#endif
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461#ifdef CONFIG_SCHEDSTATS
462 /* latency stats */
463 struct sched_info rq_sched_info;
464
465 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200466 unsigned int yld_exp_empty;
467 unsigned int yld_act_empty;
468 unsigned int yld_both_empty;
469 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200472 unsigned int sched_switch;
473 unsigned int sched_count;
474 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200477 unsigned int ttwu_count;
478 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200479
480 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200481 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700483 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484};
485
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700486static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Ingo Molnardd41f592007-07-09 18:51:59 +0200488static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
489{
490 rq->curr->sched_class->check_preempt_curr(rq, p);
491}
492
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700493static inline int cpu_of(struct rq *rq)
494{
495#ifdef CONFIG_SMP
496 return rq->cpu;
497#else
498 return 0;
499#endif
500}
501
Nick Piggin674311d2005-06-25 14:57:27 -0700502/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200503 * Update the per-runqueue clock, as finegrained as the platform can give
504 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200505 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200506static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200507{
508 u64 prev_raw = rq->prev_clock_raw;
509 u64 now = sched_clock();
510 s64 delta = now - prev_raw;
511 u64 clock = rq->clock;
512
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200513#ifdef CONFIG_SCHED_DEBUG
514 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
515#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200516 /*
517 * Protect against sched_clock() occasionally going backwards:
518 */
519 if (unlikely(delta < 0)) {
520 clock++;
521 rq->clock_warps++;
522 } else {
523 /*
524 * Catch too large forward jumps too:
525 */
Ingo Molnar529c7722007-08-10 23:05:11 +0200526 if (unlikely(clock + delta > rq->tick_timestamp + TICK_NSEC)) {
527 if (clock < rq->tick_timestamp + TICK_NSEC)
528 clock = rq->tick_timestamp + TICK_NSEC;
529 else
530 clock++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200531 rq->clock_overflows++;
532 } else {
533 if (unlikely(delta > rq->clock_max_delta))
534 rq->clock_max_delta = delta;
535 clock += delta;
536 }
537 }
538
539 rq->prev_clock_raw = now;
540 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200541}
542
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200543static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200544{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200545 if (likely(smp_processor_id() == cpu_of(rq)))
546 __update_rq_clock(rq);
547}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200548
Ingo Molnar20d315d2007-07-09 18:51:58 +0200549/*
Nick Piggin674311d2005-06-25 14:57:27 -0700550 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700551 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700552 *
553 * The domain tree of any CPU may only be accessed from within
554 * preempt-disabled sections.
555 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700556#define for_each_domain(cpu, __sd) \
557 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
560#define this_rq() (&__get_cpu_var(runqueues))
561#define task_rq(p) cpu_rq(task_cpu(p))
562#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
563
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100564unsigned long rt_needs_cpu(int cpu)
565{
566 struct rq *rq = cpu_rq(cpu);
567 u64 delta;
568
569 if (!rq->rt_throttled)
570 return 0;
571
572 if (rq->clock > rq->rt_period_expire)
573 return 1;
574
575 delta = rq->rt_period_expire - rq->clock;
576 do_div(delta, NSEC_PER_SEC / HZ);
577
578 return (unsigned long)delta;
579}
580
Ingo Molnare436d802007-07-19 21:28:35 +0200581/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200582 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
583 */
584#ifdef CONFIG_SCHED_DEBUG
585# define const_debug __read_mostly
586#else
587# define const_debug static const
588#endif
589
590/*
591 * Debugging: various feature bits
592 */
593enum {
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200594 SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
Ingo Molnar96126332007-11-15 20:57:40 +0100595 SCHED_FEAT_WAKEUP_PREEMPT = 2,
596 SCHED_FEAT_START_DEBIT = 4,
Peter Zijlstra2070ee02008-03-21 16:43:47 +0100597 SCHED_FEAT_HRTICK = 8,
598 SCHED_FEAT_DOUBLE_TICK = 16,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200599};
600
601const_debug unsigned int sysctl_sched_features =
Ingo Molnar8401f772007-10-18 21:32:55 +0200602 SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 |
Ingo Molnar96126332007-11-15 20:57:40 +0100603 SCHED_FEAT_WAKEUP_PREEMPT * 1 |
Ingo Molnar8401f772007-10-18 21:32:55 +0200604 SCHED_FEAT_START_DEBIT * 1 |
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100605 SCHED_FEAT_HRTICK * 1 |
606 SCHED_FEAT_DOUBLE_TICK * 0;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200607
608#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
609
610/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100611 * Number of tasks to iterate in a single balance run.
612 * Limited because this is done with IRQs disabled.
613 */
614const_debug unsigned int sysctl_sched_nr_migrate = 32;
615
616/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100617 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100618 * default: 1s
619 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100620unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100621
Ingo Molnar6892b752008-02-13 14:02:36 +0100622static __read_mostly int scheduler_running;
623
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100624/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100625 * part of the period that we allow rt tasks to run in us.
626 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100627 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100628int sysctl_sched_rt_runtime = 950000;
629
630/*
631 * single value that denotes runtime == period, ie unlimited time.
632 */
633#define RUNTIME_INF ((u64)~0ULL)
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100634
635/*
Ingo Molnare436d802007-07-19 21:28:35 +0200636 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
637 * clock constructed from sched_clock():
638 */
639unsigned long long cpu_clock(int cpu)
640{
Ingo Molnare436d802007-07-19 21:28:35 +0200641 unsigned long long now;
642 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200643 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200644
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100645 /*
646 * Only call sched_clock() if the scheduler has already been
647 * initialized (some code might call cpu_clock() very early):
648 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100649 if (unlikely(!scheduler_running))
650 return 0;
651
652 local_irq_save(flags);
653 rq = cpu_rq(cpu);
654 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200655 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200656 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200657
658 return now;
659}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200660EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700663# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700665#ifndef finish_arch_switch
666# define finish_arch_switch(prev) do { } while (0)
667#endif
668
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100669static inline int task_current(struct rq *rq, struct task_struct *p)
670{
671 return rq->curr == p;
672}
673
Nick Piggin4866cde2005-06-25 14:57:23 -0700674#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700675static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700676{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100677 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700678}
679
Ingo Molnar70b97a72006-07-03 00:25:42 -0700680static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700681{
682}
683
Ingo Molnar70b97a72006-07-03 00:25:42 -0700684static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700685{
Ingo Molnarda04c032005-09-13 11:17:59 +0200686#ifdef CONFIG_DEBUG_SPINLOCK
687 /* this is a valid case when another task releases the spinlock */
688 rq->lock.owner = current;
689#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700690 /*
691 * If we are tracking spinlock dependencies then we have to
692 * fix up the runqueue lock - which gets 'carried over' from
693 * prev into current:
694 */
695 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
696
Nick Piggin4866cde2005-06-25 14:57:23 -0700697 spin_unlock_irq(&rq->lock);
698}
699
700#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700701static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700702{
703#ifdef CONFIG_SMP
704 return p->oncpu;
705#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100706 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700707#endif
708}
709
Ingo Molnar70b97a72006-07-03 00:25:42 -0700710static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700711{
712#ifdef CONFIG_SMP
713 /*
714 * We can optimise this out completely for !SMP, because the
715 * SMP rebalancing from interrupt is the only thing that cares
716 * here.
717 */
718 next->oncpu = 1;
719#endif
720#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
721 spin_unlock_irq(&rq->lock);
722#else
723 spin_unlock(&rq->lock);
724#endif
725}
726
Ingo Molnar70b97a72006-07-03 00:25:42 -0700727static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700728{
729#ifdef CONFIG_SMP
730 /*
731 * After ->oncpu is cleared, the task can be moved to a different CPU.
732 * We must ensure this doesn't happen until the switch is completely
733 * finished.
734 */
735 smp_wmb();
736 prev->oncpu = 0;
737#endif
738#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
739 local_irq_enable();
740#endif
741}
742#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700745 * __task_rq_lock - lock the runqueue a given task resides on.
746 * Must be called interrupts disabled.
747 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700748static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700749 __acquires(rq->lock)
750{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200751 for (;;) {
752 struct rq *rq = task_rq(p);
753 spin_lock(&rq->lock);
754 if (likely(rq == task_rq(p)))
755 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700756 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700757 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700758}
759
760/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100762 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * explicitly disabling preemption.
764 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700765static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 __acquires(rq->lock)
767{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700768 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Andi Kleen3a5c3592007-10-15 17:00:14 +0200770 for (;;) {
771 local_irq_save(*flags);
772 rq = task_rq(p);
773 spin_lock(&rq->lock);
774 if (likely(rq == task_rq(p)))
775 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
Alexey Dobriyana9957442007-10-15 17:00:13 +0200780static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700781 __releases(rq->lock)
782{
783 spin_unlock(&rq->lock);
784}
785
Ingo Molnar70b97a72006-07-03 00:25:42 -0700786static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 __releases(rq->lock)
788{
789 spin_unlock_irqrestore(&rq->lock, *flags);
790}
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800793 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200795static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 __acquires(rq->lock)
797{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700798 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 local_irq_disable();
801 rq = this_rq();
802 spin_lock(&rq->lock);
803
804 return rq;
805}
806
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200807/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200808 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200809 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200810void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200811{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200812 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200813
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200814 spin_lock(&rq->lock);
815 __update_rq_clock(rq);
816 spin_unlock(&rq->lock);
817 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200818}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200819EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
820
821/*
822 * We just idled delta nanoseconds (called with irqs disabled):
823 */
824void sched_clock_idle_wakeup_event(u64 delta_ns)
825{
826 struct rq *rq = cpu_rq(smp_processor_id());
827 u64 now = sched_clock();
828
829 rq->idle_clock += delta_ns;
830 /*
831 * Override the previous timestamp and ignore all
832 * sched_clock() deltas that occured while we idled,
833 * and use the PM-provided delta_ns to advance the
834 * rq clock:
835 */
836 spin_lock(&rq->lock);
837 rq->prev_clock_raw = now;
838 rq->clock += delta_ns;
839 spin_unlock(&rq->lock);
Guillaume Chazarain782daee2008-01-25 21:08:33 +0100840 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200841}
842EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200843
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100844static void __resched_task(struct task_struct *p, int tif_bit);
845
846static inline void resched_task(struct task_struct *p)
847{
848 __resched_task(p, TIF_NEED_RESCHED);
849}
850
851#ifdef CONFIG_SCHED_HRTICK
852/*
853 * Use HR-timers to deliver accurate preemption points.
854 *
855 * Its all a bit involved since we cannot program an hrt while holding the
856 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
857 * reschedule event.
858 *
859 * When we get rescheduled we reprogram the hrtick_timer outside of the
860 * rq->lock.
861 */
862static inline void resched_hrt(struct task_struct *p)
863{
864 __resched_task(p, TIF_HRTICK_RESCHED);
865}
866
867static inline void resched_rq(struct rq *rq)
868{
869 unsigned long flags;
870
871 spin_lock_irqsave(&rq->lock, flags);
872 resched_task(rq->curr);
873 spin_unlock_irqrestore(&rq->lock, flags);
874}
875
876enum {
877 HRTICK_SET, /* re-programm hrtick_timer */
878 HRTICK_RESET, /* not a new slice */
879};
880
881/*
882 * Use hrtick when:
883 * - enabled by features
884 * - hrtimer is actually high res
885 */
886static inline int hrtick_enabled(struct rq *rq)
887{
888 if (!sched_feat(HRTICK))
889 return 0;
890 return hrtimer_is_hres_active(&rq->hrtick_timer);
891}
892
893/*
894 * Called to set the hrtick timer state.
895 *
896 * called with rq->lock held and irqs disabled
897 */
898static void hrtick_start(struct rq *rq, u64 delay, int reset)
899{
900 assert_spin_locked(&rq->lock);
901
902 /*
903 * preempt at: now + delay
904 */
905 rq->hrtick_expire =
906 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
907 /*
908 * indicate we need to program the timer
909 */
910 __set_bit(HRTICK_SET, &rq->hrtick_flags);
911 if (reset)
912 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
913
914 /*
915 * New slices are called from the schedule path and don't need a
916 * forced reschedule.
917 */
918 if (reset)
919 resched_hrt(rq->curr);
920}
921
922static void hrtick_clear(struct rq *rq)
923{
924 if (hrtimer_active(&rq->hrtick_timer))
925 hrtimer_cancel(&rq->hrtick_timer);
926}
927
928/*
929 * Update the timer from the possible pending state.
930 */
931static void hrtick_set(struct rq *rq)
932{
933 ktime_t time;
934 int set, reset;
935 unsigned long flags;
936
937 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
938
939 spin_lock_irqsave(&rq->lock, flags);
940 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
941 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
942 time = rq->hrtick_expire;
943 clear_thread_flag(TIF_HRTICK_RESCHED);
944 spin_unlock_irqrestore(&rq->lock, flags);
945
946 if (set) {
947 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
948 if (reset && !hrtimer_active(&rq->hrtick_timer))
949 resched_rq(rq);
950 } else
951 hrtick_clear(rq);
952}
953
954/*
955 * High-resolution timer tick.
956 * Runs from hardirq context with interrupts disabled.
957 */
958static enum hrtimer_restart hrtick(struct hrtimer *timer)
959{
960 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
961
962 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
963
964 spin_lock(&rq->lock);
965 __update_rq_clock(rq);
966 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
967 spin_unlock(&rq->lock);
968
969 return HRTIMER_NORESTART;
970}
971
972static inline void init_rq_hrtick(struct rq *rq)
973{
974 rq->hrtick_flags = 0;
975 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
976 rq->hrtick_timer.function = hrtick;
977 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
978}
979
980void hrtick_resched(void)
981{
982 struct rq *rq;
983 unsigned long flags;
984
985 if (!test_thread_flag(TIF_HRTICK_RESCHED))
986 return;
987
988 local_irq_save(flags);
989 rq = cpu_rq(smp_processor_id());
990 hrtick_set(rq);
991 local_irq_restore(flags);
992}
993#else
994static inline void hrtick_clear(struct rq *rq)
995{
996}
997
998static inline void hrtick_set(struct rq *rq)
999{
1000}
1001
1002static inline void init_rq_hrtick(struct rq *rq)
1003{
1004}
1005
1006void hrtick_resched(void)
1007{
1008}
1009#endif
1010
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001011/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001012 * resched_task - mark a task 'to be rescheduled now'.
1013 *
1014 * On UP this means the setting of the need_resched flag, on SMP it
1015 * might also involve a cross-CPU call to trigger the scheduler on
1016 * the target CPU.
1017 */
1018#ifdef CONFIG_SMP
1019
1020#ifndef tsk_is_polling
1021#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1022#endif
1023
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001024static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001025{
1026 int cpu;
1027
1028 assert_spin_locked(&task_rq(p)->lock);
1029
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001030 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001031 return;
1032
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001033 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001034
1035 cpu = task_cpu(p);
1036 if (cpu == smp_processor_id())
1037 return;
1038
1039 /* NEED_RESCHED must be visible before we test polling */
1040 smp_mb();
1041 if (!tsk_is_polling(p))
1042 smp_send_reschedule(cpu);
1043}
1044
1045static void resched_cpu(int cpu)
1046{
1047 struct rq *rq = cpu_rq(cpu);
1048 unsigned long flags;
1049
1050 if (!spin_trylock_irqsave(&rq->lock, flags))
1051 return;
1052 resched_task(cpu_curr(cpu));
1053 spin_unlock_irqrestore(&rq->lock, flags);
1054}
1055#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001056static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001057{
1058 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001059 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001060}
1061#endif
1062
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001063#if BITS_PER_LONG == 32
1064# define WMULT_CONST (~0UL)
1065#else
1066# define WMULT_CONST (1UL << 32)
1067#endif
1068
1069#define WMULT_SHIFT 32
1070
Ingo Molnar194081e2007-08-09 11:16:51 +02001071/*
1072 * Shift right and round:
1073 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001074#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001075
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001076static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001077calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1078 struct load_weight *lw)
1079{
1080 u64 tmp;
1081
1082 if (unlikely(!lw->inv_weight))
Ingo Molnar27d11722008-03-14 22:20:01 +01001083 lw->inv_weight = (WMULT_CONST-lw->weight/2) / (lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001084
1085 tmp = (u64)delta_exec * weight;
1086 /*
1087 * Check whether we'd overflow the 64-bit multiplication:
1088 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001089 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001090 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001091 WMULT_SHIFT/2);
1092 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001093 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001094
Ingo Molnarecf691d2007-08-02 17:41:40 +02001095 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001096}
1097
1098static inline unsigned long
1099calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
1100{
1101 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
1102}
1103
Ingo Molnar10919852007-10-15 17:00:04 +02001104static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001105{
1106 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001107 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001108}
1109
Ingo Molnar10919852007-10-15 17:00:04 +02001110static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001111{
1112 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001113 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001114}
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001117 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1118 * of tasks with abnormal "nice" values across CPUs the contribution that
1119 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001120 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001121 * scaled version of the new time slice allocation that they receive on time
1122 * slice expiry etc.
1123 */
1124
Ingo Molnardd41f592007-07-09 18:51:59 +02001125#define WEIGHT_IDLEPRIO 2
1126#define WMULT_IDLEPRIO (1 << 31)
1127
1128/*
1129 * Nice levels are multiplicative, with a gentle 10% change for every
1130 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1131 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1132 * that remained on nice 0.
1133 *
1134 * The "10% effect" is relative and cumulative: from _any_ nice level,
1135 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001136 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1137 * If a task goes up by ~10% and another task goes down by ~10% then
1138 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001139 */
1140static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001141 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1142 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1143 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1144 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1145 /* 0 */ 1024, 820, 655, 526, 423,
1146 /* 5 */ 335, 272, 215, 172, 137,
1147 /* 10 */ 110, 87, 70, 56, 45,
1148 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001149};
1150
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001151/*
1152 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1153 *
1154 * In cases where the weight does not change often, we can use the
1155 * precalculated inverse to speed up arithmetics by turning divisions
1156 * into multiplications:
1157 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001158static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001159 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1160 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1161 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1162 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1163 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1164 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1165 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1166 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001167};
Peter Williams2dd73a42006-06-27 02:54:34 -07001168
Ingo Molnardd41f592007-07-09 18:51:59 +02001169static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1170
1171/*
1172 * runqueue iterator, to support SMP load-balancing between different
1173 * scheduling classes, without having to expose their internal data
1174 * structures to the load-balancing proper:
1175 */
1176struct rq_iterator {
1177 void *arg;
1178 struct task_struct *(*start)(void *);
1179 struct task_struct *(*next)(void *);
1180};
1181
Peter Williamse1d14842007-10-24 18:23:51 +02001182#ifdef CONFIG_SMP
1183static unsigned long
1184balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1185 unsigned long max_load_move, struct sched_domain *sd,
1186 enum cpu_idle_type idle, int *all_pinned,
1187 int *this_best_prio, struct rq_iterator *iterator);
1188
1189static int
1190iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1191 struct sched_domain *sd, enum cpu_idle_type idle,
1192 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001193#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001194
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001195#ifdef CONFIG_CGROUP_CPUACCT
1196static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1197#else
1198static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1199#endif
1200
Gregory Haskinse7693a32008-01-25 21:08:09 +01001201#ifdef CONFIG_SMP
1202static unsigned long source_load(int cpu, int type);
1203static unsigned long target_load(int cpu, int type);
1204static unsigned long cpu_avg_load_per_task(int cpu);
1205static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
1206#endif /* CONFIG_SMP */
1207
Ingo Molnardd41f592007-07-09 18:51:59 +02001208#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001209#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001210#include "sched_fair.c"
1211#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001212#ifdef CONFIG_SCHED_DEBUG
1213# include "sched_debug.c"
1214#endif
1215
1216#define sched_class_highest (&rt_sched_class)
1217
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001218static inline void inc_load(struct rq *rq, const struct task_struct *p)
Ingo Molnar9c217242007-08-02 17:41:40 +02001219{
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001220 update_load_add(&rq->load, p->se.load.weight);
Ingo Molnar9c217242007-08-02 17:41:40 +02001221}
1222
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001223static inline void dec_load(struct rq *rq, const struct task_struct *p)
1224{
1225 update_load_sub(&rq->load, p->se.load.weight);
1226}
1227
1228static void inc_nr_running(struct task_struct *p, struct rq *rq)
1229{
1230 rq->nr_running++;
1231 inc_load(rq, p);
1232}
1233
1234static void dec_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001235{
1236 rq->nr_running--;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001237 dec_load(rq, p);
Ingo Molnar9c217242007-08-02 17:41:40 +02001238}
1239
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001240static void set_load_weight(struct task_struct *p)
1241{
1242 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001243 p->se.load.weight = prio_to_weight[0] * 2;
1244 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1245 return;
1246 }
1247
1248 /*
1249 * SCHED_IDLE tasks get minimal weight:
1250 */
1251 if (p->policy == SCHED_IDLE) {
1252 p->se.load.weight = WEIGHT_IDLEPRIO;
1253 p->se.load.inv_weight = WMULT_IDLEPRIO;
1254 return;
1255 }
1256
1257 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1258 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001259}
1260
Ingo Molnar8159f872007-08-09 11:16:49 +02001261static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001262{
1263 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001264 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001265 p->se.on_rq = 1;
1266}
1267
Ingo Molnar69be72c2007-08-09 11:16:49 +02001268static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001269{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001270 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001271 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001272}
1273
1274/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001275 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001276 */
Ingo Molnar14531182007-07-09 18:51:59 +02001277static inline int __normal_prio(struct task_struct *p)
1278{
Ingo Molnardd41f592007-07-09 18:51:59 +02001279 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001280}
1281
1282/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001283 * Calculate the expected normal priority: i.e. priority
1284 * without taking RT-inheritance into account. Might be
1285 * boosted by interactivity modifiers. Changes upon fork,
1286 * setprio syscalls, and whenever the interactivity
1287 * estimator recalculates.
1288 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001289static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001290{
1291 int prio;
1292
Ingo Molnare05606d2007-07-09 18:51:59 +02001293 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001294 prio = MAX_RT_PRIO-1 - p->rt_priority;
1295 else
1296 prio = __normal_prio(p);
1297 return prio;
1298}
1299
1300/*
1301 * Calculate the current priority, i.e. the priority
1302 * taken into account by the scheduler. This value might
1303 * be boosted by RT tasks, or might be boosted by
1304 * interactivity modifiers. Will be RT if the task got
1305 * RT-boosted. If not then it returns p->normal_prio.
1306 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001307static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001308{
1309 p->normal_prio = normal_prio(p);
1310 /*
1311 * If we are RT tasks or we were boosted to RT priority,
1312 * keep the priority unchanged. Otherwise, update priority
1313 * to the normal priority:
1314 */
1315 if (!rt_prio(p->prio))
1316 return p->normal_prio;
1317 return p->prio;
1318}
1319
1320/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001321 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001323static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001325 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001326 rq->nr_uninterruptible--;
1327
Ingo Molnar8159f872007-08-09 11:16:49 +02001328 enqueue_task(rq, p, wakeup);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001329 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
1332/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 * deactivate_task - remove a task from the runqueue.
1334 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001335static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001337 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001338 rq->nr_uninterruptible++;
1339
Ingo Molnar69be72c2007-08-09 11:16:49 +02001340 dequeue_task(rq, p, sleep);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001341 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344/**
1345 * task_curr - is this task currently executing on a CPU?
1346 * @p: the task in question.
1347 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001348inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 return cpu_curr(task_cpu(p)) == p;
1351}
1352
Peter Williams2dd73a42006-06-27 02:54:34 -07001353/* Used instead of source_load when we know the type == 0 */
1354unsigned long weighted_cpuload(const int cpu)
1355{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001356 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001357}
1358
1359static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1360{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001361 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001362#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001363 /*
1364 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1365 * successfuly executed on another CPU. We must ensure that updates of
1366 * per-task data have been completed by this moment.
1367 */
1368 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001369 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001370#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001371}
1372
Steven Rostedtcb469842008-01-25 21:08:22 +01001373static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1374 const struct sched_class *prev_class,
1375 int oldprio, int running)
1376{
1377 if (prev_class != p->sched_class) {
1378 if (prev_class->switched_from)
1379 prev_class->switched_from(rq, p, running);
1380 p->sched_class->switched_to(rq, p, running);
1381 } else
1382 p->sched_class->prio_changed(rq, p, oldprio, running);
1383}
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001386
Ingo Molnarcc367732007-10-15 17:00:18 +02001387/*
1388 * Is this task likely cache-hot:
1389 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001390static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001391task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1392{
1393 s64 delta;
1394
Ingo Molnarf540a602008-03-15 17:10:34 +01001395 /*
1396 * Buddy candidates are cache hot:
1397 */
1398 if (&p->se == cfs_rq_of(&p->se)->next)
1399 return 1;
1400
Ingo Molnarcc367732007-10-15 17:00:18 +02001401 if (p->sched_class != &fair_sched_class)
1402 return 0;
1403
Ingo Molnar6bc16652007-10-15 17:00:18 +02001404 if (sysctl_sched_migration_cost == -1)
1405 return 1;
1406 if (sysctl_sched_migration_cost == 0)
1407 return 0;
1408
Ingo Molnarcc367732007-10-15 17:00:18 +02001409 delta = now - p->se.exec_start;
1410
1411 return delta < (s64)sysctl_sched_migration_cost;
1412}
1413
1414
Ingo Molnardd41f592007-07-09 18:51:59 +02001415void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001416{
Ingo Molnardd41f592007-07-09 18:51:59 +02001417 int old_cpu = task_cpu(p);
1418 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001419 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1420 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001421 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001422
1423 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001424
1425#ifdef CONFIG_SCHEDSTATS
1426 if (p->se.wait_start)
1427 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001428 if (p->se.sleep_start)
1429 p->se.sleep_start -= clock_offset;
1430 if (p->se.block_start)
1431 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001432 if (old_cpu != new_cpu) {
1433 schedstat_inc(p, se.nr_migrations);
1434 if (task_hot(p, old_rq->clock, NULL))
1435 schedstat_inc(p, se.nr_forced2_migrations);
1436 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001437#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001438 p->se.vruntime -= old_cfsrq->min_vruntime -
1439 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001440
1441 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001442}
1443
Ingo Molnar70b97a72006-07-03 00:25:42 -07001444struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Ingo Molnar36c8b582006-07-03 00:25:41 -07001447 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 int dest_cpu;
1449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001451};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453/*
1454 * The task's runqueue lock must be held.
1455 * Returns true if you have to wait for migration thread.
1456 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001457static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001458migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001460 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 /*
1463 * If the task is not on a runqueue (and not running), then
1464 * it is sufficient to simply update the task's cpu field.
1465 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001466 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 set_task_cpu(p, dest_cpu);
1468 return 0;
1469 }
1470
1471 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 req->task = p;
1473 req->dest_cpu = dest_cpu;
1474 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 return 1;
1477}
1478
1479/*
1480 * wait_task_inactive - wait for a thread to unschedule.
1481 *
1482 * The caller must ensure that the task *will* unschedule sometime soon,
1483 * else this function might spin for a *long* time. This function can't
1484 * be called with interrupts off, or it may introduce deadlock with
1485 * smp_call_function() if an IPI is sent by the same process we are
1486 * waiting to become inactive.
1487 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001488void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
1490 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001491 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001492 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Andi Kleen3a5c3592007-10-15 17:00:14 +02001494 for (;;) {
1495 /*
1496 * We do the initial early heuristics without holding
1497 * any task-queue locks at all. We'll only try to get
1498 * the runqueue lock when things look like they will
1499 * work out!
1500 */
1501 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001502
Andi Kleen3a5c3592007-10-15 17:00:14 +02001503 /*
1504 * If the task is actively running on another CPU
1505 * still, just relax and busy-wait without holding
1506 * any locks.
1507 *
1508 * NOTE! Since we don't hold any locks, it's not
1509 * even sure that "rq" stays as the right runqueue!
1510 * But we don't care, since "task_running()" will
1511 * return false if the runqueue has changed and p
1512 * is actually now running somewhere else!
1513 */
1514 while (task_running(rq, p))
1515 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001516
Andi Kleen3a5c3592007-10-15 17:00:14 +02001517 /*
1518 * Ok, time to look more closely! We need the rq
1519 * lock now, to be *sure*. If we're wrong, we'll
1520 * just go back and repeat.
1521 */
1522 rq = task_rq_lock(p, &flags);
1523 running = task_running(rq, p);
1524 on_rq = p->se.on_rq;
1525 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001526
Andi Kleen3a5c3592007-10-15 17:00:14 +02001527 /*
1528 * Was it really running after all now that we
1529 * checked with the proper locks actually held?
1530 *
1531 * Oops. Go back and try again..
1532 */
1533 if (unlikely(running)) {
1534 cpu_relax();
1535 continue;
1536 }
1537
1538 /*
1539 * It's not enough that it's not actively running,
1540 * it must be off the runqueue _entirely_, and not
1541 * preempted!
1542 *
1543 * So if it wa still runnable (but just not actively
1544 * running right now), it's preempted, and we should
1545 * yield - it could be a while.
1546 */
1547 if (unlikely(on_rq)) {
1548 schedule_timeout_uninterruptible(1);
1549 continue;
1550 }
1551
1552 /*
1553 * Ahh, all good. It wasn't running, and it wasn't
1554 * runnable, which means that it will never become
1555 * running in the future either. We're all done!
1556 */
1557 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560
1561/***
1562 * kick_process - kick a running thread to enter/exit the kernel
1563 * @p: the to-be-kicked thread
1564 *
1565 * Cause a process which is running on another CPU to enter
1566 * kernel-mode, without any delay. (to get signals handled.)
1567 *
1568 * NOTE: this function doesnt have to take the runqueue lock,
1569 * because all it wants to ensure is that the remote task enters
1570 * the kernel. If the IPI races and the task has been migrated
1571 * to another CPU then no harm is done and the purpose has been
1572 * achieved as well.
1573 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001574void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
1576 int cpu;
1577
1578 preempt_disable();
1579 cpu = task_cpu(p);
1580 if ((cpu != smp_processor_id()) && task_curr(p))
1581 smp_send_reschedule(cpu);
1582 preempt_enable();
1583}
1584
1585/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001586 * Return a low guess at the load of a migration-source cpu weighted
1587 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 *
1589 * We want to under-estimate the load of migration sources, to
1590 * balance conservatively.
1591 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001592static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001593{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001594 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001595 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001596
Peter Williams2dd73a42006-06-27 02:54:34 -07001597 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001598 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001599
Ingo Molnardd41f592007-07-09 18:51:59 +02001600 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602
1603/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001604 * Return a high guess at the load of a migration-target cpu weighted
1605 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001607static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001608{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001609 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001610 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001611
Peter Williams2dd73a42006-06-27 02:54:34 -07001612 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001613 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001614
Ingo Molnardd41f592007-07-09 18:51:59 +02001615 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001616}
1617
1618/*
1619 * Return the average load per task on the cpu's run queue
1620 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001621static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07001622{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001623 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001624 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001625 unsigned long n = rq->nr_running;
1626
Ingo Molnardd41f592007-07-09 18:51:59 +02001627 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
Nick Piggin147cbb42005-06-25 14:57:19 -07001630/*
1631 * find_idlest_group finds and returns the least busy CPU group within the
1632 * domain.
1633 */
1634static struct sched_group *
1635find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1636{
1637 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1638 unsigned long min_load = ULONG_MAX, this_load = 0;
1639 int load_idx = sd->forkexec_idx;
1640 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1641
1642 do {
1643 unsigned long load, avg_load;
1644 int local_group;
1645 int i;
1646
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001647 /* Skip over this group if it has no CPUs allowed */
1648 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001649 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001650
Nick Piggin147cbb42005-06-25 14:57:19 -07001651 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001652
1653 /* Tally up the load of all CPUs in the group */
1654 avg_load = 0;
1655
1656 for_each_cpu_mask(i, group->cpumask) {
1657 /* Bias balancing toward cpus of our domain */
1658 if (local_group)
1659 load = source_load(i, load_idx);
1660 else
1661 load = target_load(i, load_idx);
1662
1663 avg_load += load;
1664 }
1665
1666 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001667 avg_load = sg_div_cpu_power(group,
1668 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001669
1670 if (local_group) {
1671 this_load = avg_load;
1672 this = group;
1673 } else if (avg_load < min_load) {
1674 min_load = avg_load;
1675 idlest = group;
1676 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001677 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001678
1679 if (!idlest || 100*this_load < imbalance*min_load)
1680 return NULL;
1681 return idlest;
1682}
1683
1684/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001685 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001686 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001687static int
1688find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001689{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001690 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001691 unsigned long load, min_load = ULONG_MAX;
1692 int idlest = -1;
1693 int i;
1694
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001695 /* Traverse only the allowed CPUs */
1696 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1697
1698 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001699 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001700
1701 if (load < min_load || (load == min_load && i == this_cpu)) {
1702 min_load = load;
1703 idlest = i;
1704 }
1705 }
1706
1707 return idlest;
1708}
1709
Nick Piggin476d1392005-06-25 14:57:29 -07001710/*
1711 * sched_balance_self: balance the current task (running on cpu) in domains
1712 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1713 * SD_BALANCE_EXEC.
1714 *
1715 * Balance, ie. select the least loaded group.
1716 *
1717 * Returns the target CPU number, or the same CPU if no balancing is needed.
1718 *
1719 * preempt must be disabled.
1720 */
1721static int sched_balance_self(int cpu, int flag)
1722{
1723 struct task_struct *t = current;
1724 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001725
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001726 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001727 /*
1728 * If power savings logic is enabled for a domain, stop there.
1729 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001730 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1731 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001732 if (tmp->flags & flag)
1733 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001734 }
Nick Piggin476d1392005-06-25 14:57:29 -07001735
1736 while (sd) {
1737 cpumask_t span;
1738 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001739 int new_cpu, weight;
1740
1741 if (!(sd->flags & flag)) {
1742 sd = sd->child;
1743 continue;
1744 }
Nick Piggin476d1392005-06-25 14:57:29 -07001745
1746 span = sd->span;
1747 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001748 if (!group) {
1749 sd = sd->child;
1750 continue;
1751 }
Nick Piggin476d1392005-06-25 14:57:29 -07001752
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001753 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001754 if (new_cpu == -1 || new_cpu == cpu) {
1755 /* Now try balancing at a lower domain level of cpu */
1756 sd = sd->child;
1757 continue;
1758 }
Nick Piggin476d1392005-06-25 14:57:29 -07001759
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001760 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001761 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001762 sd = NULL;
1763 weight = cpus_weight(span);
1764 for_each_domain(cpu, tmp) {
1765 if (weight <= cpus_weight(tmp->span))
1766 break;
1767 if (tmp->flags & flag)
1768 sd = tmp;
1769 }
1770 /* while loop will break here if sd == NULL */
1771 }
1772
1773 return cpu;
1774}
1775
1776#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778/***
1779 * try_to_wake_up - wake up a thread
1780 * @p: the to-be-woken-up thread
1781 * @state: the mask of task states that can be woken
1782 * @sync: do a synchronous wakeup?
1783 *
1784 * Put it on the run-queue if it's not already there. The "current"
1785 * thread is always on the run-queue (except when the actual
1786 * re-schedule is in progress), and as such you're allowed to do
1787 * the simpler "current->state = TASK_RUNNING" to mark yourself
1788 * runnable without the overhead of this.
1789 *
1790 * returns failure only if the task is already active.
1791 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001792static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
Ingo Molnarcc367732007-10-15 17:00:18 +02001794 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 unsigned long flags;
1796 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001797 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Linus Torvalds04e2f172008-02-23 18:05:03 -08001799 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 rq = task_rq_lock(p, &flags);
1801 old_state = p->state;
1802 if (!(old_state & state))
1803 goto out;
1804
Ingo Molnardd41f592007-07-09 18:51:59 +02001805 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 goto out_running;
1807
1808 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02001809 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 this_cpu = smp_processor_id();
1811
1812#ifdef CONFIG_SMP
1813 if (unlikely(task_running(rq, p)))
1814 goto out_activate;
1815
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01001816 cpu = p->sched_class->select_task_rq(p, sync);
1817 if (cpu != orig_cpu) {
1818 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 task_rq_unlock(rq, &flags);
1820 /* might preempt at this point */
1821 rq = task_rq_lock(p, &flags);
1822 old_state = p->state;
1823 if (!(old_state & state))
1824 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02001825 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 goto out_running;
1827
1828 this_cpu = smp_processor_id();
1829 cpu = task_cpu(p);
1830 }
1831
Gregory Haskinse7693a32008-01-25 21:08:09 +01001832#ifdef CONFIG_SCHEDSTATS
1833 schedstat_inc(rq, ttwu_count);
1834 if (cpu == this_cpu)
1835 schedstat_inc(rq, ttwu_local);
1836 else {
1837 struct sched_domain *sd;
1838 for_each_domain(this_cpu, sd) {
1839 if (cpu_isset(cpu, sd->span)) {
1840 schedstat_inc(sd, ttwu_wake_remote);
1841 break;
1842 }
1843 }
1844 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01001845#endif
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847out_activate:
1848#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02001849 schedstat_inc(p, se.nr_wakeups);
1850 if (sync)
1851 schedstat_inc(p, se.nr_wakeups_sync);
1852 if (orig_cpu != cpu)
1853 schedstat_inc(p, se.nr_wakeups_migrate);
1854 if (cpu == this_cpu)
1855 schedstat_inc(p, se.nr_wakeups_local);
1856 else
1857 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02001858 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02001859 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 success = 1;
1861
1862out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01001863 check_preempt_curr(rq, p);
1864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01001866#ifdef CONFIG_SMP
1867 if (p->sched_class->task_wake_up)
1868 p->sched_class->task_wake_up(rq, p);
1869#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870out:
1871 task_rq_unlock(rq, &flags);
1872
1873 return success;
1874}
1875
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001876int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001878 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880EXPORT_SYMBOL(wake_up_process);
1881
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001882int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
1884 return try_to_wake_up(p, state, 0);
1885}
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887/*
1888 * Perform scheduler related setup for a newly forked process p.
1889 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001890 *
1891 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001893static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
Ingo Molnardd41f592007-07-09 18:51:59 +02001895 p->se.exec_start = 0;
1896 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001897 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01001898 p->se.last_wakeup = 0;
1899 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001900
1901#ifdef CONFIG_SCHEDSTATS
1902 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001903 p->se.sum_sleep_runtime = 0;
1904 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001905 p->se.block_start = 0;
1906 p->se.sleep_max = 0;
1907 p->se.block_max = 0;
1908 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02001909 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001910 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001911#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001912
Peter Zijlstrafa717062008-01-25 21:08:27 +01001913 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02001914 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07001915
Avi Kivitye107be32007-07-26 13:40:43 +02001916#ifdef CONFIG_PREEMPT_NOTIFIERS
1917 INIT_HLIST_HEAD(&p->preempt_notifiers);
1918#endif
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 /*
1921 * We mark the process as running here, but have not actually
1922 * inserted it onto the runqueue yet. This guarantees that
1923 * nobody will actually run it, and a signal or other external
1924 * event cannot wake it up and insert it on the runqueue either.
1925 */
1926 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001927}
1928
1929/*
1930 * fork()/clone()-time setup:
1931 */
1932void sched_fork(struct task_struct *p, int clone_flags)
1933{
1934 int cpu = get_cpu();
1935
1936 __sched_fork(p);
1937
1938#ifdef CONFIG_SMP
1939 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1940#endif
Ingo Molnar02e4bac22007-10-15 17:00:11 +02001941 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001942
1943 /*
1944 * Make sure we do not leak PI boosting priority to the child:
1945 */
1946 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001947 if (!rt_prio(p->prio))
1948 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001949
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001950#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001951 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001952 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001954#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001955 p->oncpu = 0;
1956#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001958 /* Want to start with kernel preemption disabled. */
Al Viroa1261f542005-11-13 16:06:55 -08001959 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001961 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962}
1963
1964/*
1965 * wake_up_new_task - wake up a newly created task for the first time.
1966 *
1967 * This function will do some initial scheduler statistics housekeeping
1968 * that must be done for every newly created context, then puts the task
1969 * on the runqueue and wakes it.
1970 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001971void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
1973 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001974 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02001978 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 p->prio = effective_prio(p);
1981
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02001982 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001983 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02001986 * Let the scheduling class do new task startup
1987 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02001989 p->sched_class->task_new(rq, p);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001990 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001992 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01001993#ifdef CONFIG_SMP
1994 if (p->sched_class->task_wake_up)
1995 p->sched_class->task_wake_up(rq, p);
1996#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001997 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998}
1999
Avi Kivitye107be32007-07-26 13:40:43 +02002000#ifdef CONFIG_PREEMPT_NOTIFIERS
2001
2002/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002003 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2004 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002005 */
2006void preempt_notifier_register(struct preempt_notifier *notifier)
2007{
2008 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2009}
2010EXPORT_SYMBOL_GPL(preempt_notifier_register);
2011
2012/**
2013 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002014 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002015 *
2016 * This is safe to call from within a preemption notifier.
2017 */
2018void preempt_notifier_unregister(struct preempt_notifier *notifier)
2019{
2020 hlist_del(&notifier->link);
2021}
2022EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2023
2024static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2025{
2026 struct preempt_notifier *notifier;
2027 struct hlist_node *node;
2028
2029 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2030 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2031}
2032
2033static void
2034fire_sched_out_preempt_notifiers(struct task_struct *curr,
2035 struct task_struct *next)
2036{
2037 struct preempt_notifier *notifier;
2038 struct hlist_node *node;
2039
2040 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2041 notifier->ops->sched_out(notifier, next);
2042}
2043
2044#else
2045
2046static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2047{
2048}
2049
2050static void
2051fire_sched_out_preempt_notifiers(struct task_struct *curr,
2052 struct task_struct *next)
2053{
2054}
2055
2056#endif
2057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002059 * prepare_task_switch - prepare to switch tasks
2060 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002061 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002062 * @next: the task we are going to switch to.
2063 *
2064 * This is called with the rq lock held and interrupts off. It must
2065 * be paired with a subsequent finish_task_switch after the context
2066 * switch.
2067 *
2068 * prepare_task_switch sets up locking and calls architecture specific
2069 * hooks.
2070 */
Avi Kivitye107be32007-07-26 13:40:43 +02002071static inline void
2072prepare_task_switch(struct rq *rq, struct task_struct *prev,
2073 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002074{
Avi Kivitye107be32007-07-26 13:40:43 +02002075 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002076 prepare_lock_switch(rq, next);
2077 prepare_arch_switch(next);
2078}
2079
2080/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002082 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 * @prev: the thread we just switched away from.
2084 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002085 * finish_task_switch must be called after the context switch, paired
2086 * with a prepare_task_switch call before the context switch.
2087 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2088 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 *
2090 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002091 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 * with the lock held can cause deadlocks; see schedule() for
2093 * details.)
2094 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002095static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 __releases(rq->lock)
2097{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002099 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 rq->prev_mm = NULL;
2102
2103 /*
2104 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002105 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002106 * schedule one last time. The schedule call will never return, and
2107 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002108 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 * still held, otherwise prev could be scheduled on another cpu, die
2110 * there before we look at prev->state, and then the reference would
2111 * be dropped twice.
2112 * Manfred Spraul <manfred@colorfullife.com>
2113 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002114 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002115 finish_arch_switch(prev);
2116 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002117#ifdef CONFIG_SMP
2118 if (current->sched_class->post_schedule)
2119 current->sched_class->post_schedule(rq);
2120#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002121
Avi Kivitye107be32007-07-26 13:40:43 +02002122 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 if (mm)
2124 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002125 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002126 /*
2127 * Remove function-return probe instances associated with this
2128 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002129 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002130 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133}
2134
2135/**
2136 * schedule_tail - first thing a freshly forked thread must call.
2137 * @prev: the thread we just switched away from.
2138 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002139asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 __releases(rq->lock)
2141{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002142 struct rq *rq = this_rq();
2143
Nick Piggin4866cde2005-06-25 14:57:23 -07002144 finish_task_switch(rq, prev);
2145#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2146 /* In this case, finish_task_switch does not reenable preemption */
2147 preempt_enable();
2148#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002150 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151}
2152
2153/*
2154 * context_switch - switch to the new MM and the new
2155 * thread's register state.
2156 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002157static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002158context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002159 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
Ingo Molnardd41f592007-07-09 18:51:59 +02002161 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Avi Kivitye107be32007-07-26 13:40:43 +02002163 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002164 mm = next->mm;
2165 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002166 /*
2167 * For paravirt, this is coupled with an exit in switch_to to
2168 * combine the page table reload and the switch backend into
2169 * one hypercall.
2170 */
2171 arch_enter_lazy_cpu_mode();
2172
Ingo Molnardd41f592007-07-09 18:51:59 +02002173 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 next->active_mm = oldmm;
2175 atomic_inc(&oldmm->mm_count);
2176 enter_lazy_tlb(oldmm, next);
2177 } else
2178 switch_mm(oldmm, mm, next);
2179
Ingo Molnardd41f592007-07-09 18:51:59 +02002180 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 rq->prev_mm = oldmm;
2183 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002184 /*
2185 * Since the runqueue lock will be released by the next
2186 * task (which is an invalid locking op but in the case
2187 * of the scheduler it's an obvious special-case), so we
2188 * do an early lockdep release here:
2189 */
2190#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002191 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002192#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194 /* Here we just switch the register state and the stack. */
2195 switch_to(prev, next, prev);
2196
Ingo Molnardd41f592007-07-09 18:51:59 +02002197 barrier();
2198 /*
2199 * this_rq must be evaluated again because prev may have moved
2200 * CPUs since it called schedule(), thus the 'rq' on its stack
2201 * frame will be invalid.
2202 */
2203 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205
2206/*
2207 * nr_running, nr_uninterruptible and nr_context_switches:
2208 *
2209 * externally visible scheduler statistics: current number of runnable
2210 * threads, current number of uninterruptible-sleeping threads, total
2211 * number of context switches performed since bootup.
2212 */
2213unsigned long nr_running(void)
2214{
2215 unsigned long i, sum = 0;
2216
2217 for_each_online_cpu(i)
2218 sum += cpu_rq(i)->nr_running;
2219
2220 return sum;
2221}
2222
2223unsigned long nr_uninterruptible(void)
2224{
2225 unsigned long i, sum = 0;
2226
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002227 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 sum += cpu_rq(i)->nr_uninterruptible;
2229
2230 /*
2231 * Since we read the counters lockless, it might be slightly
2232 * inaccurate. Do not allow it to go below zero though:
2233 */
2234 if (unlikely((long)sum < 0))
2235 sum = 0;
2236
2237 return sum;
2238}
2239
2240unsigned long long nr_context_switches(void)
2241{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002242 int i;
2243 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002245 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 sum += cpu_rq(i)->nr_switches;
2247
2248 return sum;
2249}
2250
2251unsigned long nr_iowait(void)
2252{
2253 unsigned long i, sum = 0;
2254
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002255 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2257
2258 return sum;
2259}
2260
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002261unsigned long nr_active(void)
2262{
2263 unsigned long i, running = 0, uninterruptible = 0;
2264
2265 for_each_online_cpu(i) {
2266 running += cpu_rq(i)->nr_running;
2267 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2268 }
2269
2270 if (unlikely((long)uninterruptible < 0))
2271 uninterruptible = 0;
2272
2273 return running + uninterruptible;
2274}
2275
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002277 * Update rq->cpu_load[] statistics. This function is usually called every
2278 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002279 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002280static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002281{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002282 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002283 int i, scale;
2284
2285 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002286
2287 /* Update our load: */
2288 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2289 unsigned long old_load, new_load;
2290
2291 /* scale is effectively 1 << i now, and >> i divides by scale */
2292
2293 old_load = this_rq->cpu_load[i];
2294 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002295 /*
2296 * Round up the averaging division if load is increasing. This
2297 * prevents us from getting stuck on 9 if the load is 10, for
2298 * example.
2299 */
2300 if (new_load > old_load)
2301 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002302 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2303 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002304}
2305
Ingo Molnardd41f592007-07-09 18:51:59 +02002306#ifdef CONFIG_SMP
2307
Ingo Molnar48f24c42006-07-03 00:25:40 -07002308/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 * double_rq_lock - safely lock two runqueues
2310 *
2311 * Note this does not disable interrupts like task_rq_lock,
2312 * you need to do so manually before calling.
2313 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002314static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 __acquires(rq1->lock)
2316 __acquires(rq2->lock)
2317{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002318 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 if (rq1 == rq2) {
2320 spin_lock(&rq1->lock);
2321 __acquire(rq2->lock); /* Fake it out ;) */
2322 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002323 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 spin_lock(&rq1->lock);
2325 spin_lock(&rq2->lock);
2326 } else {
2327 spin_lock(&rq2->lock);
2328 spin_lock(&rq1->lock);
2329 }
2330 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002331 update_rq_clock(rq1);
2332 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333}
2334
2335/*
2336 * double_rq_unlock - safely unlock two runqueues
2337 *
2338 * Note this does not restore interrupts like task_rq_unlock,
2339 * you need to do so manually after calling.
2340 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002341static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 __releases(rq1->lock)
2343 __releases(rq2->lock)
2344{
2345 spin_unlock(&rq1->lock);
2346 if (rq1 != rq2)
2347 spin_unlock(&rq2->lock);
2348 else
2349 __release(rq2->lock);
2350}
2351
2352/*
2353 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2354 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002355static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 __releases(this_rq->lock)
2357 __acquires(busiest->lock)
2358 __acquires(this_rq->lock)
2359{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002360 int ret = 0;
2361
Kirill Korotaev054b9102006-12-10 02:20:11 -08002362 if (unlikely(!irqs_disabled())) {
2363 /* printk() doesn't work good under rq->lock */
2364 spin_unlock(&this_rq->lock);
2365 BUG_ON(1);
2366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002368 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 spin_unlock(&this_rq->lock);
2370 spin_lock(&busiest->lock);
2371 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002372 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 } else
2374 spin_lock(&busiest->lock);
2375 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002376 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377}
2378
2379/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 * If dest_cpu is allowed for this process, migrate the task to it.
2381 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002382 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 * the cpu_allowed mask is restored.
2384 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002385static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002387 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002389 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
2391 rq = task_rq_lock(p, &flags);
2392 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2393 || unlikely(cpu_is_offline(dest_cpu)))
2394 goto out;
2395
2396 /* force the process onto the specified CPU */
2397 if (migrate_task(p, dest_cpu, &req)) {
2398 /* Need to wait for migration thread (might exit: take ref). */
2399 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 get_task_struct(mt);
2402 task_rq_unlock(rq, &flags);
2403 wake_up_process(mt);
2404 put_task_struct(mt);
2405 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002406
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 return;
2408 }
2409out:
2410 task_rq_unlock(rq, &flags);
2411}
2412
2413/*
Nick Piggin476d1392005-06-25 14:57:29 -07002414 * sched_exec - execve() is a valuable balancing opportunity, because at
2415 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 */
2417void sched_exec(void)
2418{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002420 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002422 if (new_cpu != this_cpu)
2423 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424}
2425
2426/*
2427 * pull_task - move a task from a remote runqueue to the local runqueue.
2428 * Both runqueues must be locked.
2429 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002430static void pull_task(struct rq *src_rq, struct task_struct *p,
2431 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002433 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002435 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 /*
2437 * Note that idle threads have a prio of MAX_PRIO, for this test
2438 * to be always true for them.
2439 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002440 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441}
2442
2443/*
2444 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2445 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002446static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002447int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002448 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002449 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
2451 /*
2452 * We do not migrate tasks that are:
2453 * 1) running (obviously), or
2454 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2455 * 3) are cache-hot on their current CPU.
2456 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002457 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2458 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002460 }
Nick Piggin81026792005-06-25 14:57:07 -07002461 *all_pinned = 0;
2462
Ingo Molnarcc367732007-10-15 17:00:18 +02002463 if (task_running(rq, p)) {
2464 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002465 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Ingo Molnarda84d962007-10-15 17:00:18 +02002468 /*
2469 * Aggressive migration if:
2470 * 1) task is cache cold, or
2471 * 2) too many balance attempts have failed.
2472 */
2473
Ingo Molnar6bc16652007-10-15 17:00:18 +02002474 if (!task_hot(p, rq->clock, sd) ||
2475 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002476#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002477 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002478 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002479 schedstat_inc(p, se.nr_forced_migrations);
2480 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002481#endif
2482 return 1;
2483 }
2484
Ingo Molnarcc367732007-10-15 17:00:18 +02002485 if (task_hot(p, rq->clock, sd)) {
2486 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002487 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 return 1;
2490}
2491
Peter Williamse1d14842007-10-24 18:23:51 +02002492static unsigned long
2493balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2494 unsigned long max_load_move, struct sched_domain *sd,
2495 enum cpu_idle_type idle, int *all_pinned,
2496 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002497{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002498 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002499 struct task_struct *p;
2500 long rem_load_move = max_load_move;
2501
Peter Williamse1d14842007-10-24 18:23:51 +02002502 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002503 goto out;
2504
2505 pinned = 1;
2506
2507 /*
2508 * Start the load-balancing iterator:
2509 */
2510 p = iterator->start(iterator->arg);
2511next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002512 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002513 goto out;
2514 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002515 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002516 * skip a task if it will be the highest priority task (i.e. smallest
2517 * prio value) on its new queue regardless of its load weight
2518 */
2519 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2520 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002521 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002522 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002523 p = iterator->next(iterator->arg);
2524 goto next;
2525 }
2526
2527 pull_task(busiest, p, this_rq, this_cpu);
2528 pulled++;
2529 rem_load_move -= p->se.load.weight;
2530
2531 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002532 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002533 */
Peter Williamse1d14842007-10-24 18:23:51 +02002534 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002535 if (p->prio < *this_best_prio)
2536 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002537 p = iterator->next(iterator->arg);
2538 goto next;
2539 }
2540out:
2541 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002542 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002543 * so we can safely collect pull_task() stats here rather than
2544 * inside pull_task().
2545 */
2546 schedstat_add(sd, lb_gained[idle], pulled);
2547
2548 if (all_pinned)
2549 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002550
2551 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002552}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554/*
Peter Williams43010652007-08-09 11:16:46 +02002555 * move_tasks tries to move up to max_load_move weighted load from busiest to
2556 * this_rq, as part of a balancing operation within domain "sd".
2557 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 *
2559 * Called with both runqueues locked.
2560 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002561static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002562 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002563 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002564 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002566 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002567 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002568 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Ingo Molnardd41f592007-07-09 18:51:59 +02002570 do {
Peter Williams43010652007-08-09 11:16:46 +02002571 total_load_moved +=
2572 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002573 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002574 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002575 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002576 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Peter Williams43010652007-08-09 11:16:46 +02002578 return total_load_moved > 0;
2579}
2580
Peter Williamse1d14842007-10-24 18:23:51 +02002581static int
2582iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2583 struct sched_domain *sd, enum cpu_idle_type idle,
2584 struct rq_iterator *iterator)
2585{
2586 struct task_struct *p = iterator->start(iterator->arg);
2587 int pinned = 0;
2588
2589 while (p) {
2590 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2591 pull_task(busiest, p, this_rq, this_cpu);
2592 /*
2593 * Right now, this is only the second place pull_task()
2594 * is called, so we can safely collect pull_task()
2595 * stats here rather than inside pull_task().
2596 */
2597 schedstat_inc(sd, lb_gained[idle]);
2598
2599 return 1;
2600 }
2601 p = iterator->next(iterator->arg);
2602 }
2603
2604 return 0;
2605}
2606
Peter Williams43010652007-08-09 11:16:46 +02002607/*
2608 * move_one_task tries to move exactly one task from busiest to this_rq, as
2609 * part of active balancing operations within "domain".
2610 * Returns 1 if successful and 0 otherwise.
2611 *
2612 * Called with both runqueues locked.
2613 */
2614static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2615 struct sched_domain *sd, enum cpu_idle_type idle)
2616{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002617 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002618
2619 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002620 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002621 return 1;
2622
2623 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624}
2625
2626/*
2627 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002628 * domain. It calculates and returns the amount of weighted load which
2629 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 */
2631static struct sched_group *
2632find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002633 unsigned long *imbalance, enum cpu_idle_type idle,
2634 int *sd_idle, cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635{
2636 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2637 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002638 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002639 unsigned long busiest_load_per_task, busiest_nr_running;
2640 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002641 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002642#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2643 int power_savings_balance = 1;
2644 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2645 unsigned long min_nr_running = ULONG_MAX;
2646 struct sched_group *group_min = NULL, *group_leader = NULL;
2647#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002650 busiest_load_per_task = busiest_nr_running = 0;
2651 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002652 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002653 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002654 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002655 load_idx = sd->newidle_idx;
2656 else
2657 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
2659 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002660 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 int local_group;
2662 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002663 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002664 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002665 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
2667 local_group = cpu_isset(this_cpu, group->cpumask);
2668
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002669 if (local_group)
2670 balance_cpu = first_cpu(group->cpumask);
2671
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002673 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002674 max_cpu_load = 0;
2675 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002678 struct rq *rq;
2679
2680 if (!cpu_isset(i, *cpus))
2681 continue;
2682
2683 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002684
Suresh Siddha9439aab2007-07-19 21:28:35 +02002685 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002686 *sd_idle = 0;
2687
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002689 if (local_group) {
2690 if (idle_cpu(i) && !first_idle_cpu) {
2691 first_idle_cpu = 1;
2692 balance_cpu = i;
2693 }
2694
Nick Piggina2000572006-02-10 01:51:02 -08002695 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002696 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002697 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002698 if (load > max_cpu_load)
2699 max_cpu_load = load;
2700 if (min_cpu_load > load)
2701 min_cpu_load = load;
2702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
2704 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002705 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002706 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 }
2708
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002709 /*
2710 * First idle cpu or the first cpu(busiest) in this sched group
2711 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002712 * domains. In the newly idle case, we will allow all the cpu's
2713 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002714 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002715 if (idle != CPU_NEWLY_IDLE && local_group &&
2716 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002717 *balance = 0;
2718 goto ret;
2719 }
2720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002722 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
2724 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002725 avg_load = sg_div_cpu_power(group,
2726 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
Ken Chen908a7c12007-10-17 16:55:11 +02002728 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
2729 __group_imb = 1;
2730
Eric Dumazet5517d862007-05-08 00:32:57 -07002731 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 if (local_group) {
2734 this_load = avg_load;
2735 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002736 this_nr_running = sum_nr_running;
2737 this_load_per_task = sum_weighted_load;
2738 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02002739 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 max_load = avg_load;
2741 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002742 busiest_nr_running = sum_nr_running;
2743 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02002744 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002746
2747#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2748 /*
2749 * Busy processors will not participate in power savings
2750 * balance.
2751 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002752 if (idle == CPU_NOT_IDLE ||
2753 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2754 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002755
2756 /*
2757 * If the local group is idle or completely loaded
2758 * no need to do power savings balance at this domain
2759 */
2760 if (local_group && (this_nr_running >= group_capacity ||
2761 !this_nr_running))
2762 power_savings_balance = 0;
2763
Ingo Molnardd41f592007-07-09 18:51:59 +02002764 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002765 * If a group is already running at full capacity or idle,
2766 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002767 */
2768 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002769 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002770 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002771
Ingo Molnardd41f592007-07-09 18:51:59 +02002772 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002773 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002774 * This is the group from where we need to pick up the load
2775 * for saving power
2776 */
2777 if ((sum_nr_running < min_nr_running) ||
2778 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002779 first_cpu(group->cpumask) <
2780 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002781 group_min = group;
2782 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002783 min_load_per_task = sum_weighted_load /
2784 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002785 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002786
Ingo Molnardd41f592007-07-09 18:51:59 +02002787 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002788 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002789 * capacity but still has some space to pick up some load
2790 * from other group and save more power
2791 */
2792 if (sum_nr_running <= group_capacity - 1) {
2793 if (sum_nr_running > leader_nr_running ||
2794 (sum_nr_running == leader_nr_running &&
2795 first_cpu(group->cpumask) >
2796 first_cpu(group_leader->cpumask))) {
2797 group_leader = group;
2798 leader_nr_running = sum_nr_running;
2799 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002800 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002801group_next:
2802#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 group = group->next;
2804 } while (group != sd->groups);
2805
Peter Williams2dd73a42006-06-27 02:54:34 -07002806 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 goto out_balanced;
2808
2809 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2810
2811 if (this_load >= avg_load ||
2812 100*max_load <= sd->imbalance_pct*this_load)
2813 goto out_balanced;
2814
Peter Williams2dd73a42006-06-27 02:54:34 -07002815 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002816 if (group_imb)
2817 busiest_load_per_task = min(busiest_load_per_task, avg_load);
2818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 /*
2820 * We're trying to get all the cpus to the average_load, so we don't
2821 * want to push ourselves above the average load, nor do we wish to
2822 * reduce the max loaded cpu below the average load, as either of these
2823 * actions would just result in more rebalancing later, and ping-pong
2824 * tasks around. Thus we look for the minimum possible imbalance.
2825 * Negative imbalances (*we* are more loaded than anyone else) will
2826 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002827 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 * appear as very large values with unsigned longs.
2829 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002830 if (max_load <= busiest_load_per_task)
2831 goto out_balanced;
2832
2833 /*
2834 * In the presence of smp nice balancing, certain scenarios can have
2835 * max load less than avg load(as we skip the groups at or below
2836 * its cpu_power, while calculating max_load..)
2837 */
2838 if (max_load < avg_load) {
2839 *imbalance = 0;
2840 goto small_imbalance;
2841 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002842
2843 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002844 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002845
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07002847 *imbalance = min(max_pull * busiest->__cpu_power,
2848 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 / SCHED_LOAD_SCALE;
2850
Peter Williams2dd73a42006-06-27 02:54:34 -07002851 /*
2852 * if *imbalance is less than the average load per runnable task
2853 * there is no gaurantee that any tasks will be moved so we'll have
2854 * a think about bumping its value to force at least one task to be
2855 * moved
2856 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002857 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002858 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002859 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
Peter Williams2dd73a42006-06-27 02:54:34 -07002861small_imbalance:
2862 pwr_move = pwr_now = 0;
2863 imbn = 2;
2864 if (this_nr_running) {
2865 this_load_per_task /= this_nr_running;
2866 if (busiest_load_per_task > this_load_per_task)
2867 imbn = 1;
2868 } else
2869 this_load_per_task = SCHED_LOAD_SCALE;
2870
Ingo Molnardd41f592007-07-09 18:51:59 +02002871 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
2872 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002873 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 return busiest;
2875 }
2876
2877 /*
2878 * OK, we don't have enough imbalance to justify moving tasks,
2879 * however we may be able to increase total CPU power used by
2880 * moving them.
2881 */
2882
Eric Dumazet5517d862007-05-08 00:32:57 -07002883 pwr_now += busiest->__cpu_power *
2884 min(busiest_load_per_task, max_load);
2885 pwr_now += this->__cpu_power *
2886 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 pwr_now /= SCHED_LOAD_SCALE;
2888
2889 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07002890 tmp = sg_div_cpu_power(busiest,
2891 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07002893 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07002894 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
2896 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07002897 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002898 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07002899 tmp = sg_div_cpu_power(this,
2900 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 else
Eric Dumazet5517d862007-05-08 00:32:57 -07002902 tmp = sg_div_cpu_power(this,
2903 busiest_load_per_task * SCHED_LOAD_SCALE);
2904 pwr_move += this->__cpu_power *
2905 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 pwr_move /= SCHED_LOAD_SCALE;
2907
2908 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002909 if (pwr_move > pwr_now)
2910 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 }
2912
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 return busiest;
2914
2915out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002916#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002917 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002918 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002920 if (this == group_leader && group_leader != group_min) {
2921 *imbalance = min_load_per_task;
2922 return group_min;
2923 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002924#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002925ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 *imbalance = 0;
2927 return NULL;
2928}
2929
2930/*
2931 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2932 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002933static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002934find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002935 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002937 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002938 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 int i;
2940
2941 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002942 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002943
2944 if (!cpu_isset(i, *cpus))
2945 continue;
2946
Ingo Molnar48f24c42006-07-03 00:25:40 -07002947 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02002948 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
Ingo Molnardd41f592007-07-09 18:51:59 +02002950 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002951 continue;
2952
Ingo Molnardd41f592007-07-09 18:51:59 +02002953 if (wl > max_load) {
2954 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002955 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 }
2957 }
2958
2959 return busiest;
2960}
2961
2962/*
Nick Piggin77391d72005-06-25 14:57:30 -07002963 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2964 * so long as it is large enough.
2965 */
2966#define MAX_PINNED_INTERVAL 512
2967
2968/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2970 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002972static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002973 struct sched_domain *sd, enum cpu_idle_type idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002974 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975{
Peter Williams43010652007-08-09 11:16:46 +02002976 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002979 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002980 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002981 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002982
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002983 /*
2984 * When power savings policy is enabled for the parent domain, idle
2985 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02002986 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002987 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002988 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002989 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002990 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002991 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Ingo Molnar2d723762007-10-15 17:00:12 +02002993 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002995redo:
2996 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002997 &cpus, balance);
2998
Chen, Kenneth W06066712006-12-10 02:20:35 -08002999 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003000 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 if (!group) {
3003 schedstat_inc(sd, lb_nobusyg[idle]);
3004 goto out_balanced;
3005 }
3006
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003007 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 if (!busiest) {
3009 schedstat_inc(sd, lb_nobusyq[idle]);
3010 goto out_balanced;
3011 }
3012
Nick Piggindb935db2005-06-25 14:57:11 -07003013 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
3015 schedstat_add(sd, lb_imbalance[idle], imbalance);
3016
Peter Williams43010652007-08-09 11:16:46 +02003017 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 if (busiest->nr_running > 1) {
3019 /*
3020 * Attempt to move tasks. If find_busiest_group has found
3021 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003022 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 * correctly treated as an imbalance.
3024 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003025 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003026 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003027 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003028 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003029 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003030 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003031
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003032 /*
3033 * some other cpu did the load balance for us.
3034 */
Peter Williams43010652007-08-09 11:16:46 +02003035 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003036 resched_cpu(this_cpu);
3037
Nick Piggin81026792005-06-25 14:57:07 -07003038 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003039 if (unlikely(all_pinned)) {
3040 cpu_clear(cpu_of(busiest), cpus);
3041 if (!cpus_empty(cpus))
3042 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003043 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 }
Nick Piggin81026792005-06-25 14:57:07 -07003046
Peter Williams43010652007-08-09 11:16:46 +02003047 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 schedstat_inc(sd, lb_failed[idle]);
3049 sd->nr_balance_failed++;
3050
3051 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003053 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003054
3055 /* don't kick the migration_thread, if the curr
3056 * task on busiest cpu can't be moved to this_cpu
3057 */
3058 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003059 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003060 all_pinned = 1;
3061 goto out_one_pinned;
3062 }
3063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 if (!busiest->active_balance) {
3065 busiest->active_balance = 1;
3066 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003067 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003069 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003070 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 wake_up_process(busiest->migration_thread);
3072
3073 /*
3074 * We've kicked active balancing, reset the failure
3075 * counter.
3076 */
Nick Piggin39507452005-06-25 14:57:09 -07003077 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 }
Nick Piggin81026792005-06-25 14:57:07 -07003079 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 sd->nr_balance_failed = 0;
3081
Nick Piggin81026792005-06-25 14:57:07 -07003082 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 /* We were unbalanced, so reset the balancing interval */
3084 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003085 } else {
3086 /*
3087 * If we've begun active balancing, start to back off. This
3088 * case may not be covered by the all_pinned logic if there
3089 * is only 1 task on the busy runqueue (because we don't call
3090 * move_tasks).
3091 */
3092 if (sd->balance_interval < sd->max_interval)
3093 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 }
3095
Peter Williams43010652007-08-09 11:16:46 +02003096 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003097 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003098 return -1;
Peter Williams43010652007-08-09 11:16:46 +02003099 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
3101out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 schedstat_inc(sd, lb_balanced[idle]);
3103
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003104 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003105
3106out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003108 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3109 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 sd->balance_interval *= 2;
3111
Ingo Molnar48f24c42006-07-03 00:25:40 -07003112 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003113 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003114 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 return 0;
3116}
3117
3118/*
3119 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3120 * tasks if there is an imbalance.
3121 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003122 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 * this_rq is locked.
3124 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003125static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003126load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127{
3128 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003129 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003131 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003132 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003133 int all_pinned = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003134 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07003135
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003136 /*
3137 * When power savings policy is enabled for the parent domain, idle
3138 * sibling can pick up load irrespective of busy siblings. In this case,
3139 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003140 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003141 */
3142 if (sd->flags & SD_SHARE_CPUPOWER &&
3143 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003144 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
Ingo Molnar2d723762007-10-15 17:00:12 +02003146 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003147redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003148 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003149 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003151 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003152 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 }
3154
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003155 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003156 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003157 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003158 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003159 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 }
3161
Nick Piggindb935db2005-06-25 14:57:11 -07003162 BUG_ON(busiest == this_rq);
3163
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003164 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003165
Peter Williams43010652007-08-09 11:16:46 +02003166 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003167 if (busiest->nr_running > 1) {
3168 /* Attempt to move tasks */
3169 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003170 /* this_rq->clock is already updated */
3171 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003172 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003173 imbalance, sd, CPU_NEWLY_IDLE,
3174 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003175 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003176
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003177 if (unlikely(all_pinned)) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003178 cpu_clear(cpu_of(busiest), cpus);
3179 if (!cpus_empty(cpus))
3180 goto redo;
3181 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003182 }
3183
Peter Williams43010652007-08-09 11:16:46 +02003184 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003185 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003186 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3187 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003188 return -1;
3189 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003190 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Peter Williams43010652007-08-09 11:16:46 +02003192 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003193
3194out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003195 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003196 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003197 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003198 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003199 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003200
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003201 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202}
3203
3204/*
3205 * idle_balance is called by schedule() if this_cpu is about to become
3206 * idle. Attempts to pull tasks from other CPUs.
3207 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003208static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209{
3210 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003211 int pulled_task = -1;
3212 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
3214 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003215 unsigned long interval;
3216
3217 if (!(sd->flags & SD_LOAD_BALANCE))
3218 continue;
3219
3220 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003221 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003222 pulled_task = load_balance_newidle(this_cpu,
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003223 this_rq, sd);
3224
3225 interval = msecs_to_jiffies(sd->balance_interval);
3226 if (time_after(next_balance, sd->last_balance + interval))
3227 next_balance = sd->last_balance + interval;
3228 if (pulled_task)
3229 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003231 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003232 /*
3233 * We are going idle. next_balance may be set based on
3234 * a busy processor. So reset next_balance.
3235 */
3236 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238}
3239
3240/*
3241 * active_load_balance is run by migration threads. It pushes running tasks
3242 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3243 * running on each physical CPU where possible, and avoids physical /
3244 * logical imbalances.
3245 *
3246 * Called with busiest_rq locked.
3247 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003248static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249{
Nick Piggin39507452005-06-25 14:57:09 -07003250 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003251 struct sched_domain *sd;
3252 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003253
Ingo Molnar48f24c42006-07-03 00:25:40 -07003254 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003255 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003256 return;
3257
3258 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260 /*
Nick Piggin39507452005-06-25 14:57:09 -07003261 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003262 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003263 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 */
Nick Piggin39507452005-06-25 14:57:09 -07003265 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Nick Piggin39507452005-06-25 14:57:09 -07003267 /* move a task from busiest_rq to target_rq */
3268 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003269 update_rq_clock(busiest_rq);
3270 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
Nick Piggin39507452005-06-25 14:57:09 -07003272 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003273 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003274 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003275 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003276 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Ingo Molnar48f24c42006-07-03 00:25:40 -07003279 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003280 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
Peter Williams43010652007-08-09 11:16:46 +02003282 if (move_one_task(target_rq, target_cpu, busiest_rq,
3283 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003284 schedstat_inc(sd, alb_pushed);
3285 else
3286 schedstat_inc(sd, alb_failed);
3287 }
Nick Piggin39507452005-06-25 14:57:09 -07003288 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289}
3290
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003291#ifdef CONFIG_NO_HZ
3292static struct {
3293 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003294 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003295} nohz ____cacheline_aligned = {
3296 .load_balancer = ATOMIC_INIT(-1),
3297 .cpu_mask = CPU_MASK_NONE,
3298};
3299
Christoph Lameter7835b982006-12-10 02:20:22 -08003300/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003301 * This routine will try to nominate the ilb (idle load balancing)
3302 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3303 * load balancing on behalf of all those cpus. If all the cpus in the system
3304 * go into this tickless mode, then there will be no ilb owner (as there is
3305 * no need for one) and all the cpus will sleep till the next wakeup event
3306 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003307 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003308 * For the ilb owner, tick is not stopped. And this tick will be used
3309 * for idle load balancing. ilb owner will still be part of
3310 * nohz.cpu_mask..
3311 *
3312 * While stopping the tick, this cpu will become the ilb owner if there
3313 * is no other owner. And will be the owner till that cpu becomes busy
3314 * or if all cpus in the system stop their ticks at which point
3315 * there is no need for ilb owner.
3316 *
3317 * When the ilb owner becomes busy, it nominates another owner, during the
3318 * next busy scheduler_tick()
3319 */
3320int select_nohz_load_balancer(int stop_tick)
3321{
3322 int cpu = smp_processor_id();
3323
3324 if (stop_tick) {
3325 cpu_set(cpu, nohz.cpu_mask);
3326 cpu_rq(cpu)->in_nohz_recently = 1;
3327
3328 /*
3329 * If we are going offline and still the leader, give up!
3330 */
3331 if (cpu_is_offline(cpu) &&
3332 atomic_read(&nohz.load_balancer) == cpu) {
3333 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3334 BUG();
3335 return 0;
3336 }
3337
3338 /* time for ilb owner also to sleep */
3339 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3340 if (atomic_read(&nohz.load_balancer) == cpu)
3341 atomic_set(&nohz.load_balancer, -1);
3342 return 0;
3343 }
3344
3345 if (atomic_read(&nohz.load_balancer) == -1) {
3346 /* make me the ilb owner */
3347 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3348 return 1;
3349 } else if (atomic_read(&nohz.load_balancer) == cpu)
3350 return 1;
3351 } else {
3352 if (!cpu_isset(cpu, nohz.cpu_mask))
3353 return 0;
3354
3355 cpu_clear(cpu, nohz.cpu_mask);
3356
3357 if (atomic_read(&nohz.load_balancer) == cpu)
3358 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3359 BUG();
3360 }
3361 return 0;
3362}
3363#endif
3364
3365static DEFINE_SPINLOCK(balancing);
3366
3367/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003368 * It checks each scheduling domain to see if it is due to be balanced,
3369 * and initiates a balancing operation if so.
3370 *
3371 * Balancing parameters are set up in arch_init_sched_domains.
3372 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003373static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003374{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003375 int balance = 1;
3376 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003377 unsigned long interval;
3378 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003379 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003380 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003381 int update_next_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003383 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 if (!(sd->flags & SD_LOAD_BALANCE))
3385 continue;
3386
3387 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003388 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 interval *= sd->busy_factor;
3390
3391 /* scale ms to jiffies */
3392 interval = msecs_to_jiffies(interval);
3393 if (unlikely(!interval))
3394 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003395 if (interval > HZ*NR_CPUS/10)
3396 interval = HZ*NR_CPUS/10;
3397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
Christoph Lameter08c183f2006-12-10 02:20:29 -08003399 if (sd->flags & SD_SERIALIZE) {
3400 if (!spin_trylock(&balancing))
3401 goto out;
3402 }
3403
Christoph Lameterc9819f42006-12-10 02:20:25 -08003404 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003405 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003406 /*
3407 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003408 * longer idle, or one of our SMT siblings is
3409 * not idle.
3410 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003411 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003413 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003415 if (sd->flags & SD_SERIALIZE)
3416 spin_unlock(&balancing);
3417out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003418 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003419 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003420 update_next_balance = 1;
3421 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003422
3423 /*
3424 * Stop the load balance at this level. There is another
3425 * CPU in our sched group which is doing load balancing more
3426 * actively.
3427 */
3428 if (!balance)
3429 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003431
3432 /*
3433 * next_balance will be updated only when there is a need.
3434 * When the cpu is attached to null domain for ex, it will not be
3435 * updated.
3436 */
3437 if (likely(update_next_balance))
3438 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003439}
3440
3441/*
3442 * run_rebalance_domains is triggered when needed from the scheduler tick.
3443 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3444 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3445 */
3446static void run_rebalance_domains(struct softirq_action *h)
3447{
Ingo Molnardd41f592007-07-09 18:51:59 +02003448 int this_cpu = smp_processor_id();
3449 struct rq *this_rq = cpu_rq(this_cpu);
3450 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3451 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003452
Ingo Molnardd41f592007-07-09 18:51:59 +02003453 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003454
3455#ifdef CONFIG_NO_HZ
3456 /*
3457 * If this cpu is the owner for idle load balancing, then do the
3458 * balancing on behalf of the other idle cpus whose ticks are
3459 * stopped.
3460 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003461 if (this_rq->idle_at_tick &&
3462 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003463 cpumask_t cpus = nohz.cpu_mask;
3464 struct rq *rq;
3465 int balance_cpu;
3466
Ingo Molnardd41f592007-07-09 18:51:59 +02003467 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003468 for_each_cpu_mask(balance_cpu, cpus) {
3469 /*
3470 * If this cpu gets work to do, stop the load balancing
3471 * work being done for other cpus. Next load
3472 * balancing owner will pick it up.
3473 */
3474 if (need_resched())
3475 break;
3476
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003477 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003478
3479 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003480 if (time_after(this_rq->next_balance, rq->next_balance))
3481 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003482 }
3483 }
3484#endif
3485}
3486
3487/*
3488 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3489 *
3490 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3491 * idle load balancing owner or decide to stop the periodic load balancing,
3492 * if the whole system is idle.
3493 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003494static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003495{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003496#ifdef CONFIG_NO_HZ
3497 /*
3498 * If we were in the nohz mode recently and busy at the current
3499 * scheduler tick, then check if we need to nominate new idle
3500 * load balancer.
3501 */
3502 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3503 rq->in_nohz_recently = 0;
3504
3505 if (atomic_read(&nohz.load_balancer) == cpu) {
3506 cpu_clear(cpu, nohz.cpu_mask);
3507 atomic_set(&nohz.load_balancer, -1);
3508 }
3509
3510 if (atomic_read(&nohz.load_balancer) == -1) {
3511 /*
3512 * simple selection for now: Nominate the
3513 * first cpu in the nohz list to be the next
3514 * ilb owner.
3515 *
3516 * TBD: Traverse the sched domains and nominate
3517 * the nearest cpu in the nohz.cpu_mask.
3518 */
3519 int ilb = first_cpu(nohz.cpu_mask);
3520
3521 if (ilb != NR_CPUS)
3522 resched_cpu(ilb);
3523 }
3524 }
3525
3526 /*
3527 * If this cpu is idle and doing idle load balancing for all the
3528 * cpus with ticks stopped, is it time for that to stop?
3529 */
3530 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3531 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3532 resched_cpu(cpu);
3533 return;
3534 }
3535
3536 /*
3537 * If this cpu is idle and the idle load balancing is done by
3538 * someone else, then no need raise the SCHED_SOFTIRQ
3539 */
3540 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3541 cpu_isset(cpu, nohz.cpu_mask))
3542 return;
3543#endif
3544 if (time_after_eq(jiffies, rq->next_balance))
3545 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546}
Ingo Molnardd41f592007-07-09 18:51:59 +02003547
3548#else /* CONFIG_SMP */
3549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550/*
3551 * on UP we do not need to balance between CPUs:
3552 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003553static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554{
3555}
Ingo Molnardd41f592007-07-09 18:51:59 +02003556
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557#endif
3558
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559DEFINE_PER_CPU(struct kernel_stat, kstat);
3560
3561EXPORT_PER_CPU_SYMBOL(kstat);
3562
3563/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003564 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3565 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003567unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003570 u64 ns, delta_exec;
3571 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003572
Ingo Molnar41b86e92007-07-09 18:51:58 +02003573 rq = task_rq_lock(p, &flags);
3574 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003575 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003576 update_rq_clock(rq);
3577 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003578 if ((s64)delta_exec > 0)
3579 ns += delta_exec;
3580 }
3581 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 return ns;
3584}
3585
3586/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 * Account user cpu time to a process.
3588 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 * @cputime: the cpu time spent in user space since the last update
3590 */
3591void account_user_time(struct task_struct *p, cputime_t cputime)
3592{
3593 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3594 cputime64_t tmp;
3595
3596 p->utime = cputime_add(p->utime, cputime);
3597
3598 /* Add user time to cpustat. */
3599 tmp = cputime_to_cputime64(cputime);
3600 if (TASK_NICE(p) > 0)
3601 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3602 else
3603 cpustat->user = cputime64_add(cpustat->user, tmp);
3604}
3605
3606/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003607 * Account guest cpu time to a process.
3608 * @p: the process that the cpu time gets accounted to
3609 * @cputime: the cpu time spent in virtual machine since the last update
3610 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003611static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003612{
3613 cputime64_t tmp;
3614 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3615
3616 tmp = cputime_to_cputime64(cputime);
3617
3618 p->utime = cputime_add(p->utime, cputime);
3619 p->gtime = cputime_add(p->gtime, cputime);
3620
3621 cpustat->user = cputime64_add(cpustat->user, tmp);
3622 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3623}
3624
3625/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003626 * Account scaled user cpu time to a process.
3627 * @p: the process that the cpu time gets accounted to
3628 * @cputime: the cpu time spent in user space since the last update
3629 */
3630void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3631{
3632 p->utimescaled = cputime_add(p->utimescaled, cputime);
3633}
3634
3635/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 * Account system cpu time to a process.
3637 * @p: the process that the cpu time gets accounted to
3638 * @hardirq_offset: the offset to subtract from hardirq_count()
3639 * @cputime: the cpu time spent in kernel space since the last update
3640 */
3641void account_system_time(struct task_struct *p, int hardirq_offset,
3642 cputime_t cputime)
3643{
3644 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003645 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 cputime64_t tmp;
3647
Christian Borntraeger97783852007-11-15 20:57:39 +01003648 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
3649 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003650
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 p->stime = cputime_add(p->stime, cputime);
3652
3653 /* Add system time to cpustat. */
3654 tmp = cputime_to_cputime64(cputime);
3655 if (hardirq_count() - hardirq_offset)
3656 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3657 else if (softirq_count())
3658 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003659 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003661 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3663 else
3664 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3665 /* Account for system time used */
3666 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667}
3668
3669/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003670 * Account scaled system cpu time to a process.
3671 * @p: the process that the cpu time gets accounted to
3672 * @hardirq_offset: the offset to subtract from hardirq_count()
3673 * @cputime: the cpu time spent in kernel space since the last update
3674 */
3675void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
3676{
3677 p->stimescaled = cputime_add(p->stimescaled, cputime);
3678}
3679
3680/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 * Account for involuntary wait time.
3682 * @p: the process from which the cpu time has been stolen
3683 * @steal: the cpu time spent in involuntary wait
3684 */
3685void account_steal_time(struct task_struct *p, cputime_t steal)
3686{
3687 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3688 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003689 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
3691 if (p == rq->idle) {
3692 p->stime = cputime_add(p->stime, steal);
3693 if (atomic_read(&rq->nr_iowait) > 0)
3694 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3695 else
3696 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003697 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3699}
3700
Christoph Lameter7835b982006-12-10 02:20:22 -08003701/*
3702 * This function gets called by the timer code, with HZ frequency.
3703 * We call it with interrupts disabled.
3704 *
3705 * It also gets called by the fork code, when changing the parent's
3706 * timeslices.
3707 */
3708void scheduler_tick(void)
3709{
Christoph Lameter7835b982006-12-10 02:20:22 -08003710 int cpu = smp_processor_id();
3711 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003712 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003713 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003714
Ingo Molnardd41f592007-07-09 18:51:59 +02003715 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003716 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003717 /*
3718 * Let rq->clock advance by at least TICK_NSEC:
3719 */
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003720 if (unlikely(rq->clock < next_tick)) {
Ingo Molnar529c7722007-08-10 23:05:11 +02003721 rq->clock = next_tick;
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003722 rq->clock_underflows++;
3723 }
Ingo Molnar529c7722007-08-10 23:05:11 +02003724 rq->tick_timestamp = rq->clock;
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003725 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003726 curr->sched_class->task_tick(rq, curr, 0);
3727 update_sched_rt_period(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003728 spin_unlock(&rq->lock);
3729
Christoph Lametere418e1c2006-12-10 02:20:23 -08003730#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003731 rq->idle_at_tick = idle_cpu(cpu);
3732 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003733#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734}
3735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3737
Srinivasa Ds43627582008-02-23 15:24:04 -08003738void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739{
3740 /*
3741 * Underflow?
3742 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003743 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3744 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 preempt_count() += val;
3746 /*
3747 * Spinlock count overflowing soon?
3748 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003749 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3750 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751}
3752EXPORT_SYMBOL(add_preempt_count);
3753
Srinivasa Ds43627582008-02-23 15:24:04 -08003754void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755{
3756 /*
3757 * Underflow?
3758 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003759 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3760 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 /*
3762 * Is the spinlock portion underflowing?
3763 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003764 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3765 !(preempt_count() & PREEMPT_MASK)))
3766 return;
3767
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 preempt_count() -= val;
3769}
3770EXPORT_SYMBOL(sub_preempt_count);
3771
3772#endif
3773
3774/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003775 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003777static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778{
Satyam Sharma838225b2007-10-24 18:23:50 +02003779 struct pt_regs *regs = get_irq_regs();
3780
3781 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
3782 prev->comm, prev->pid, preempt_count());
3783
Ingo Molnardd41f592007-07-09 18:51:59 +02003784 debug_show_held_locks(prev);
3785 if (irqs_disabled())
3786 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003787
3788 if (regs)
3789 show_regs(regs);
3790 else
3791 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003792}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
Ingo Molnardd41f592007-07-09 18:51:59 +02003794/*
3795 * Various schedule()-time debugging checks and statistics:
3796 */
3797static inline void schedule_debug(struct task_struct *prev)
3798{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003800 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 * schedule() atomically, we ignore that path for now.
3802 * Otherwise, whine if we are scheduling when we should not be.
3803 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003804 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3805 __schedule_bug(prev);
3806
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3808
Ingo Molnar2d723762007-10-15 17:00:12 +02003809 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003810#ifdef CONFIG_SCHEDSTATS
3811 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003812 schedstat_inc(this_rq(), bkl_count);
3813 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003814 }
3815#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02003816}
3817
3818/*
3819 * Pick up the highest-prio task:
3820 */
3821static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003822pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02003823{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003824 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02003825 struct task_struct *p;
3826
3827 /*
3828 * Optimization: we know that if all tasks are in
3829 * the fair class we can call that function directly:
3830 */
3831 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003832 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003833 if (likely(p))
3834 return p;
3835 }
3836
3837 class = sched_class_highest;
3838 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003839 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003840 if (p)
3841 return p;
3842 /*
3843 * Will never be NULL as the idle class always
3844 * returns a non-NULL p:
3845 */
3846 class = class->next;
3847 }
3848}
3849
3850/*
3851 * schedule() is the main scheduler function.
3852 */
3853asmlinkage void __sched schedule(void)
3854{
3855 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08003856 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02003857 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003858 int cpu;
3859
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860need_resched:
3861 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02003862 cpu = smp_processor_id();
3863 rq = cpu_rq(cpu);
3864 rcu_qsctr_inc(cpu);
3865 prev = rq->curr;
3866 switch_count = &prev->nivcsw;
3867
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 release_kernel_lock(prev);
3869need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870
Ingo Molnardd41f592007-07-09 18:51:59 +02003871 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003873 hrtick_clear(rq);
3874
Ingo Molnar1e819952007-10-15 17:00:13 +02003875 /*
3876 * Do the rq-clock update outside the rq lock:
3877 */
3878 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02003879 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02003880 spin_lock(&rq->lock);
3881 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
Ingo Molnardd41f592007-07-09 18:51:59 +02003883 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3884 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
Roel Kluin23e3c3c2008-03-13 17:41:59 +01003885 signal_pending(prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003886 prev->state = TASK_RUNNING;
3887 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003888 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02003889 }
3890 switch_count = &prev->nvcsw;
3891 }
3892
Steven Rostedt9a897c52008-01-25 21:08:22 +01003893#ifdef CONFIG_SMP
3894 if (prev->sched_class->pre_schedule)
3895 prev->sched_class->pre_schedule(rq, prev);
3896#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01003897
Ingo Molnardd41f592007-07-09 18:51:59 +02003898 if (unlikely(!rq->nr_running))
3899 idle_balance(cpu, rq);
3900
Ingo Molnar31ee5292007-08-09 11:16:49 +02003901 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003902 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
3904 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02003905
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 rq->nr_switches++;
3908 rq->curr = next;
3909 ++*switch_count;
3910
Ingo Molnardd41f592007-07-09 18:51:59 +02003911 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003912 /*
3913 * the context switch might have flipped the stack from under
3914 * us, hence refresh the local variables.
3915 */
3916 cpu = smp_processor_id();
3917 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 } else
3919 spin_unlock_irq(&rq->lock);
3920
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003921 hrtick_set(rq);
3922
3923 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003925
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 preempt_enable_no_resched();
3927 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3928 goto need_resched;
3929}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930EXPORT_SYMBOL(schedule);
3931
3932#ifdef CONFIG_PREEMPT
3933/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003934 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003935 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 * occur there and call schedule directly.
3937 */
3938asmlinkage void __sched preempt_schedule(void)
3939{
3940 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 struct task_struct *task = current;
3942 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01003943
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 /*
3945 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003946 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003948 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 return;
3950
Andi Kleen3a5c3592007-10-15 17:00:14 +02003951 do {
3952 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Andi Kleen3a5c3592007-10-15 17:00:14 +02003954 /*
3955 * We keep the big kernel semaphore locked, but we
3956 * clear ->lock_depth so that schedule() doesnt
3957 * auto-release the semaphore:
3958 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02003959 saved_lock_depth = task->lock_depth;
3960 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003961 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02003962 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003963 sub_preempt_count(PREEMPT_ACTIVE);
3964
3965 /*
3966 * Check again in case we missed a preemption opportunity
3967 * between schedule and now.
3968 */
3969 barrier();
3970 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972EXPORT_SYMBOL(preempt_schedule);
3973
3974/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003975 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 * off of irq context.
3977 * Note, that this is called and return with irqs disabled. This will
3978 * protect us against recursive calling from irq.
3979 */
3980asmlinkage void __sched preempt_schedule_irq(void)
3981{
3982 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 struct task_struct *task = current;
3984 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01003985
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003986 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 BUG_ON(ti->preempt_count || !irqs_disabled());
3988
Andi Kleen3a5c3592007-10-15 17:00:14 +02003989 do {
3990 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
Andi Kleen3a5c3592007-10-15 17:00:14 +02003992 /*
3993 * We keep the big kernel semaphore locked, but we
3994 * clear ->lock_depth so that schedule() doesnt
3995 * auto-release the semaphore:
3996 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02003997 saved_lock_depth = task->lock_depth;
3998 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003999 local_irq_enable();
4000 schedule();
4001 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004002 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004003 sub_preempt_count(PREEMPT_ACTIVE);
4004
4005 /*
4006 * Check again in case we missed a preemption opportunity
4007 * between schedule and now.
4008 */
4009 barrier();
4010 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011}
4012
4013#endif /* CONFIG_PREEMPT */
4014
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004015int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4016 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004018 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020EXPORT_SYMBOL(default_wake_function);
4021
4022/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004023 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4024 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 * number) then we wake all the non-exclusive tasks and one exclusive task.
4026 *
4027 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004028 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4030 */
4031static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4032 int nr_exclusive, int sync, void *key)
4033{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004034 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004036 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004037 unsigned flags = curr->flags;
4038
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004040 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 break;
4042 }
4043}
4044
4045/**
4046 * __wake_up - wake up threads blocked on a waitqueue.
4047 * @q: the waitqueue
4048 * @mode: which threads
4049 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004050 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004052void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004053 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054{
4055 unsigned long flags;
4056
4057 spin_lock_irqsave(&q->lock, flags);
4058 __wake_up_common(q, mode, nr_exclusive, 0, key);
4059 spin_unlock_irqrestore(&q->lock, flags);
4060}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061EXPORT_SYMBOL(__wake_up);
4062
4063/*
4064 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4065 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004066void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067{
4068 __wake_up_common(q, mode, 1, 0, NULL);
4069}
4070
4071/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004072 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 * @q: the waitqueue
4074 * @mode: which threads
4075 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4076 *
4077 * The sync wakeup differs that the waker knows that it will schedule
4078 * away soon, so while the target thread will be woken up, it will not
4079 * be migrated to another CPU - ie. the two threads are 'synchronized'
4080 * with each other. This can prevent needless bouncing between CPUs.
4081 *
4082 * On UP it can prevent extra preemption.
4083 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004084void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004085__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086{
4087 unsigned long flags;
4088 int sync = 1;
4089
4090 if (unlikely(!q))
4091 return;
4092
4093 if (unlikely(!nr_exclusive))
4094 sync = 0;
4095
4096 spin_lock_irqsave(&q->lock, flags);
4097 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4098 spin_unlock_irqrestore(&q->lock, flags);
4099}
4100EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4101
Ingo Molnarb15136e2007-10-24 18:23:48 +02004102void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103{
4104 unsigned long flags;
4105
4106 spin_lock_irqsave(&x->wait.lock, flags);
4107 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004108 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 spin_unlock_irqrestore(&x->wait.lock, flags);
4110}
4111EXPORT_SYMBOL(complete);
4112
Ingo Molnarb15136e2007-10-24 18:23:48 +02004113void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114{
4115 unsigned long flags;
4116
4117 spin_lock_irqsave(&x->wait.lock, flags);
4118 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004119 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 spin_unlock_irqrestore(&x->wait.lock, flags);
4121}
4122EXPORT_SYMBOL(complete_all);
4123
Andi Kleen8cbbe862007-10-15 17:00:14 +02004124static inline long __sched
4125do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 if (!x->done) {
4128 DECLARE_WAITQUEUE(wait, current);
4129
4130 wait.flags |= WQ_FLAG_EXCLUSIVE;
4131 __add_wait_queue_tail(&x->wait, &wait);
4132 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004133 if ((state == TASK_INTERRUPTIBLE &&
4134 signal_pending(current)) ||
4135 (state == TASK_KILLABLE &&
4136 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004137 __remove_wait_queue(&x->wait, &wait);
4138 return -ERESTARTSYS;
4139 }
4140 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004142 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004144 if (!timeout) {
4145 __remove_wait_queue(&x->wait, &wait);
4146 return timeout;
4147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 } while (!x->done);
4149 __remove_wait_queue(&x->wait, &wait);
4150 }
4151 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004152 return timeout;
4153}
4154
4155static long __sched
4156wait_for_common(struct completion *x, long timeout, int state)
4157{
4158 might_sleep();
4159
4160 spin_lock_irq(&x->wait.lock);
4161 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004163 return timeout;
4164}
4165
Ingo Molnarb15136e2007-10-24 18:23:48 +02004166void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004167{
4168 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169}
4170EXPORT_SYMBOL(wait_for_completion);
4171
Ingo Molnarb15136e2007-10-24 18:23:48 +02004172unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4174{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004175 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176}
4177EXPORT_SYMBOL(wait_for_completion_timeout);
4178
Andi Kleen8cbbe862007-10-15 17:00:14 +02004179int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180{
Andi Kleen51e97992007-10-18 21:32:55 +02004181 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4182 if (t == -ERESTARTSYS)
4183 return t;
4184 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185}
4186EXPORT_SYMBOL(wait_for_completion_interruptible);
4187
Ingo Molnarb15136e2007-10-24 18:23:48 +02004188unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189wait_for_completion_interruptible_timeout(struct completion *x,
4190 unsigned long timeout)
4191{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004192 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193}
4194EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4195
Matthew Wilcox009e5772007-12-06 12:29:54 -05004196int __sched wait_for_completion_killable(struct completion *x)
4197{
4198 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4199 if (t == -ERESTARTSYS)
4200 return t;
4201 return 0;
4202}
4203EXPORT_SYMBOL(wait_for_completion_killable);
4204
Andi Kleen8cbbe862007-10-15 17:00:14 +02004205static long __sched
4206sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004207{
4208 unsigned long flags;
4209 wait_queue_t wait;
4210
4211 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Andi Kleen8cbbe862007-10-15 17:00:14 +02004213 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
Andi Kleen8cbbe862007-10-15 17:00:14 +02004215 spin_lock_irqsave(&q->lock, flags);
4216 __add_wait_queue(q, &wait);
4217 spin_unlock(&q->lock);
4218 timeout = schedule_timeout(timeout);
4219 spin_lock_irq(&q->lock);
4220 __remove_wait_queue(q, &wait);
4221 spin_unlock_irqrestore(&q->lock, flags);
4222
4223 return timeout;
4224}
4225
4226void __sched interruptible_sleep_on(wait_queue_head_t *q)
4227{
4228 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230EXPORT_SYMBOL(interruptible_sleep_on);
4231
Ingo Molnar0fec1712007-07-09 18:52:01 +02004232long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004233interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004235 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4238
Ingo Molnar0fec1712007-07-09 18:52:01 +02004239void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004241 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243EXPORT_SYMBOL(sleep_on);
4244
Ingo Molnar0fec1712007-07-09 18:52:01 +02004245long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004247 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249EXPORT_SYMBOL(sleep_on_timeout);
4250
Ingo Molnarb29739f2006-06-27 02:54:51 -07004251#ifdef CONFIG_RT_MUTEXES
4252
4253/*
4254 * rt_mutex_setprio - set the current priority of a task
4255 * @p: task
4256 * @prio: prio value (kernel-internal form)
4257 *
4258 * This function changes the 'effective' priority of a task. It does
4259 * not touch ->normal_prio like __setscheduler().
4260 *
4261 * Used by the rt_mutex code to implement priority inheritance logic.
4262 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004263void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004264{
4265 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004266 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004267 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004268 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004269
4270 BUG_ON(prio < 0 || prio > MAX_PRIO);
4271
4272 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004273 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004274
Andrew Mortond5f9f942007-05-08 20:27:06 -07004275 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004276 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004277 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004278 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004279 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004280 if (running)
4281 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004282
4283 if (rt_prio(prio))
4284 p->sched_class = &rt_sched_class;
4285 else
4286 p->sched_class = &fair_sched_class;
4287
Ingo Molnarb29739f2006-06-27 02:54:51 -07004288 p->prio = prio;
4289
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004290 if (running)
4291 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004292 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004293 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004294
4295 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004296 }
4297 task_rq_unlock(rq, &flags);
4298}
4299
4300#endif
4301
Ingo Molnar36c8b582006-07-03 00:25:41 -07004302void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303{
Ingo Molnardd41f592007-07-09 18:51:59 +02004304 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004306 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
4308 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4309 return;
4310 /*
4311 * We have to be careful, if called from sys_setpriority(),
4312 * the task might be in the middle of scheduling on another CPU.
4313 */
4314 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004315 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 /*
4317 * The RT priorities are set via sched_setscheduler(), but we still
4318 * allow the 'normal' nice value to be set - but as expected
4319 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004320 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004322 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 p->static_prio = NICE_TO_PRIO(nice);
4324 goto out_unlock;
4325 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004326 on_rq = p->se.on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004327 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004328 dequeue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004329 dec_load(rq, p);
4330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004333 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004334 old_prio = p->prio;
4335 p->prio = effective_prio(p);
4336 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337
Ingo Molnardd41f592007-07-09 18:51:59 +02004338 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004339 enqueue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004340 inc_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004342 * If the task increased its priority or is running and
4343 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004345 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 resched_task(rq->curr);
4347 }
4348out_unlock:
4349 task_rq_unlock(rq, &flags);
4350}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351EXPORT_SYMBOL(set_user_nice);
4352
Matt Mackalle43379f2005-05-01 08:59:00 -07004353/*
4354 * can_nice - check if a task can reduce its nice value
4355 * @p: task
4356 * @nice: nice value
4357 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004358int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004359{
Matt Mackall024f4742005-08-18 11:24:19 -07004360 /* convert nice value [19,-20] to rlimit style value [1,40] */
4361 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004362
Matt Mackalle43379f2005-05-01 08:59:00 -07004363 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4364 capable(CAP_SYS_NICE));
4365}
4366
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367#ifdef __ARCH_WANT_SYS_NICE
4368
4369/*
4370 * sys_nice - change the priority of the current process.
4371 * @increment: priority increment
4372 *
4373 * sys_setpriority is a more generic, but much slower function that
4374 * does similar things.
4375 */
4376asmlinkage long sys_nice(int increment)
4377{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004378 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
4380 /*
4381 * Setpriority might change our priority at the same moment.
4382 * We don't have to worry. Conceptually one call occurs first
4383 * and we have a single winner.
4384 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004385 if (increment < -40)
4386 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 if (increment > 40)
4388 increment = 40;
4389
4390 nice = PRIO_TO_NICE(current->static_prio) + increment;
4391 if (nice < -20)
4392 nice = -20;
4393 if (nice > 19)
4394 nice = 19;
4395
Matt Mackalle43379f2005-05-01 08:59:00 -07004396 if (increment < 0 && !can_nice(current, nice))
4397 return -EPERM;
4398
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 retval = security_task_setnice(current, nice);
4400 if (retval)
4401 return retval;
4402
4403 set_user_nice(current, nice);
4404 return 0;
4405}
4406
4407#endif
4408
4409/**
4410 * task_prio - return the priority value of a given task.
4411 * @p: the task in question.
4412 *
4413 * This is the priority value as seen by users in /proc.
4414 * RT tasks are offset by -200. Normal tasks are centered
4415 * around 0, value goes from -16 to +15.
4416 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004417int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418{
4419 return p->prio - MAX_RT_PRIO;
4420}
4421
4422/**
4423 * task_nice - return the nice value of a given task.
4424 * @p: the task in question.
4425 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004426int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427{
4428 return TASK_NICE(p);
4429}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004430EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431
4432/**
4433 * idle_cpu - is a given cpu idle currently?
4434 * @cpu: the processor in question.
4435 */
4436int idle_cpu(int cpu)
4437{
4438 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4439}
4440
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441/**
4442 * idle_task - return the idle task for a given cpu.
4443 * @cpu: the processor in question.
4444 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004445struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446{
4447 return cpu_rq(cpu)->idle;
4448}
4449
4450/**
4451 * find_process_by_pid - find a process with a matching PID value.
4452 * @pid: the pid in question.
4453 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004454static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004456 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457}
4458
4459/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004460static void
4461__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462{
Ingo Molnardd41f592007-07-09 18:51:59 +02004463 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004464
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004466 switch (p->policy) {
4467 case SCHED_NORMAL:
4468 case SCHED_BATCH:
4469 case SCHED_IDLE:
4470 p->sched_class = &fair_sched_class;
4471 break;
4472 case SCHED_FIFO:
4473 case SCHED_RR:
4474 p->sched_class = &rt_sched_class;
4475 break;
4476 }
4477
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004479 p->normal_prio = normal_prio(p);
4480 /* we are holding p->pi_lock already */
4481 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004482 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483}
4484
4485/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004486 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 * @p: the task in question.
4488 * @policy: new policy.
4489 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004490 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004491 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004493int sched_setscheduler(struct task_struct *p, int policy,
4494 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004496 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004498 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004499 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
Steven Rostedt66e53932006-06-27 02:54:44 -07004501 /* may grab non-irq protected spin_locks */
4502 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503recheck:
4504 /* double check policy once rq lock held */
4505 if (policy < 0)
4506 policy = oldpolicy = p->policy;
4507 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004508 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4509 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004510 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 /*
4512 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004513 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4514 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 */
4516 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004517 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004518 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004520 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521 return -EINVAL;
4522
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004523 /*
4524 * Allow unprivileged RT tasks to decrease priority:
4525 */
4526 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004527 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004528 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004529
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004530 if (!lock_task_sighand(p, &flags))
4531 return -ESRCH;
4532 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4533 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004534
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004535 /* can't set/change the rt policy */
4536 if (policy != p->policy && !rlim_rtprio)
4537 return -EPERM;
4538
4539 /* can't increase priority */
4540 if (param->sched_priority > p->rt_priority &&
4541 param->sched_priority > rlim_rtprio)
4542 return -EPERM;
4543 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004544 /*
4545 * Like positive nice levels, dont allow tasks to
4546 * move out of SCHED_IDLE either:
4547 */
4548 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4549 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004550
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004551 /* can't change other user's priorities */
4552 if ((current->euid != p->euid) &&
4553 (current->euid != p->uid))
4554 return -EPERM;
4555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004557#ifdef CONFIG_RT_GROUP_SCHED
4558 /*
4559 * Do not allow realtime tasks into groups that have no runtime
4560 * assigned.
4561 */
4562 if (rt_policy(policy) && task_group(p)->rt_runtime == 0)
4563 return -EPERM;
4564#endif
4565
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 retval = security_task_setscheduler(p, policy, param);
4567 if (retval)
4568 return retval;
4569 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004570 * make sure no PI-waiters arrive (or leave) while we are
4571 * changing the priority of the task:
4572 */
4573 spin_lock_irqsave(&p->pi_lock, flags);
4574 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575 * To be able to change p->policy safely, the apropriate
4576 * runqueue lock must be held.
4577 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004578 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 /* recheck policy now with rq lock held */
4580 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4581 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004582 __task_rq_unlock(rq);
4583 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 goto recheck;
4585 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004586 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004587 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004588 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004589 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004590 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004591 if (running)
4592 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02004593
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004595 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02004596
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004597 if (running)
4598 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004599 if (on_rq) {
4600 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004601
4602 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004604 __task_rq_unlock(rq);
4605 spin_unlock_irqrestore(&p->pi_lock, flags);
4606
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004607 rt_mutex_adjust_pi(p);
4608
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 return 0;
4610}
4611EXPORT_SYMBOL_GPL(sched_setscheduler);
4612
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004613static int
4614do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 struct sched_param lparam;
4617 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004618 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619
4620 if (!param || pid < 0)
4621 return -EINVAL;
4622 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4623 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004624
4625 rcu_read_lock();
4626 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004628 if (p != NULL)
4629 retval = sched_setscheduler(p, policy, &lparam);
4630 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004631
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 return retval;
4633}
4634
4635/**
4636 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4637 * @pid: the pid in question.
4638 * @policy: new policy.
4639 * @param: structure containing the new RT priority.
4640 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004641asmlinkage long
4642sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643{
Jason Baronc21761f2006-01-18 17:43:03 -08004644 /* negative values for policy are not valid */
4645 if (policy < 0)
4646 return -EINVAL;
4647
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 return do_sched_setscheduler(pid, policy, param);
4649}
4650
4651/**
4652 * sys_sched_setparam - set/change the RT priority of a thread
4653 * @pid: the pid in question.
4654 * @param: structure containing the new RT priority.
4655 */
4656asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4657{
4658 return do_sched_setscheduler(pid, -1, param);
4659}
4660
4661/**
4662 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4663 * @pid: the pid in question.
4664 */
4665asmlinkage long sys_sched_getscheduler(pid_t pid)
4666{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004667 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004668 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
4670 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004671 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672
4673 retval = -ESRCH;
4674 read_lock(&tasklist_lock);
4675 p = find_process_by_pid(pid);
4676 if (p) {
4677 retval = security_task_getscheduler(p);
4678 if (!retval)
4679 retval = p->policy;
4680 }
4681 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 return retval;
4683}
4684
4685/**
4686 * sys_sched_getscheduler - get the RT priority of a thread
4687 * @pid: the pid in question.
4688 * @param: structure containing the RT priority.
4689 */
4690asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4691{
4692 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004693 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004694 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695
4696 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004697 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
4699 read_lock(&tasklist_lock);
4700 p = find_process_by_pid(pid);
4701 retval = -ESRCH;
4702 if (!p)
4703 goto out_unlock;
4704
4705 retval = security_task_getscheduler(p);
4706 if (retval)
4707 goto out_unlock;
4708
4709 lp.sched_priority = p->rt_priority;
4710 read_unlock(&tasklist_lock);
4711
4712 /*
4713 * This one might sleep, we cannot do it with a spinlock held ...
4714 */
4715 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4716
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 return retval;
4718
4719out_unlock:
4720 read_unlock(&tasklist_lock);
4721 return retval;
4722}
4723
4724long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4725{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004727 struct task_struct *p;
4728 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004730 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 read_lock(&tasklist_lock);
4732
4733 p = find_process_by_pid(pid);
4734 if (!p) {
4735 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004736 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737 return -ESRCH;
4738 }
4739
4740 /*
4741 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004742 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 * usage count and then drop tasklist_lock.
4744 */
4745 get_task_struct(p);
4746 read_unlock(&tasklist_lock);
4747
4748 retval = -EPERM;
4749 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4750 !capable(CAP_SYS_NICE))
4751 goto out_unlock;
4752
David Quigleye7834f82006-06-23 02:03:59 -07004753 retval = security_task_setscheduler(p, 0, NULL);
4754 if (retval)
4755 goto out_unlock;
4756
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 cpus_allowed = cpuset_cpus_allowed(p);
4758 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004759 again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760 retval = set_cpus_allowed(p, new_mask);
4761
Paul Menage8707d8b2007-10-18 23:40:22 -07004762 if (!retval) {
4763 cpus_allowed = cpuset_cpus_allowed(p);
4764 if (!cpus_subset(new_mask, cpus_allowed)) {
4765 /*
4766 * We must have raced with a concurrent cpuset
4767 * update. Just reset the cpus_allowed to the
4768 * cpuset's cpus_allowed
4769 */
4770 new_mask = cpus_allowed;
4771 goto again;
4772 }
4773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774out_unlock:
4775 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004776 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 return retval;
4778}
4779
4780static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4781 cpumask_t *new_mask)
4782{
4783 if (len < sizeof(cpumask_t)) {
4784 memset(new_mask, 0, sizeof(cpumask_t));
4785 } else if (len > sizeof(cpumask_t)) {
4786 len = sizeof(cpumask_t);
4787 }
4788 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4789}
4790
4791/**
4792 * sys_sched_setaffinity - set the cpu affinity of a process
4793 * @pid: pid of the process
4794 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4795 * @user_mask_ptr: user-space pointer to the new cpu mask
4796 */
4797asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4798 unsigned long __user *user_mask_ptr)
4799{
4800 cpumask_t new_mask;
4801 int retval;
4802
4803 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4804 if (retval)
4805 return retval;
4806
4807 return sched_setaffinity(pid, new_mask);
4808}
4809
4810/*
4811 * Represents all cpu's present in the system
4812 * In systems capable of hotplug, this map could dynamically grow
4813 * as new cpu's are detected in the system via any platform specific
4814 * method, such as ACPI for e.g.
4815 */
4816
Andi Kleen4cef0c62006-01-11 22:44:57 +01004817cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818EXPORT_SYMBOL(cpu_present_map);
4819
4820#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004821cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004822EXPORT_SYMBOL(cpu_online_map);
4823
Andi Kleen4cef0c62006-01-11 22:44:57 +01004824cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004825EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826#endif
4827
4828long sched_getaffinity(pid_t pid, cpumask_t *mask)
4829{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004830 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004833 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 read_lock(&tasklist_lock);
4835
4836 retval = -ESRCH;
4837 p = find_process_by_pid(pid);
4838 if (!p)
4839 goto out_unlock;
4840
David Quigleye7834f82006-06-23 02:03:59 -07004841 retval = security_task_getscheduler(p);
4842 if (retval)
4843 goto out_unlock;
4844
Jack Steiner2f7016d2006-02-01 03:05:18 -08004845 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846
4847out_unlock:
4848 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004849 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850
Ulrich Drepper9531b622007-08-09 11:16:46 +02004851 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852}
4853
4854/**
4855 * sys_sched_getaffinity - get the cpu affinity of a process
4856 * @pid: pid of the process
4857 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4858 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4859 */
4860asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4861 unsigned long __user *user_mask_ptr)
4862{
4863 int ret;
4864 cpumask_t mask;
4865
4866 if (len < sizeof(cpumask_t))
4867 return -EINVAL;
4868
4869 ret = sched_getaffinity(pid, &mask);
4870 if (ret < 0)
4871 return ret;
4872
4873 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4874 return -EFAULT;
4875
4876 return sizeof(cpumask_t);
4877}
4878
4879/**
4880 * sys_sched_yield - yield the current processor to other threads.
4881 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004882 * This function yields the current CPU to other tasks. If there are no
4883 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 */
4885asmlinkage long sys_sched_yield(void)
4886{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004887 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888
Ingo Molnar2d723762007-10-15 17:00:12 +02004889 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004890 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891
4892 /*
4893 * Since we are going to call schedule() anyway, there's
4894 * no need to preempt or enable interrupts:
4895 */
4896 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004897 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 _raw_spin_unlock(&rq->lock);
4899 preempt_enable_no_resched();
4900
4901 schedule();
4902
4903 return 0;
4904}
4905
Andrew Mortone7b38402006-06-30 01:56:00 -07004906static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004908#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4909 __might_sleep(__FILE__, __LINE__);
4910#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004911 /*
4912 * The BKS might be reacquired before we have dropped
4913 * PREEMPT_ACTIVE, which could trigger a second
4914 * cond_resched() call.
4915 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916 do {
4917 add_preempt_count(PREEMPT_ACTIVE);
4918 schedule();
4919 sub_preempt_count(PREEMPT_ACTIVE);
4920 } while (need_resched());
4921}
4922
Herbert Xu02b67cc32008-01-25 21:08:28 +01004923#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
4924int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925{
Ingo Molnar94142322006-12-29 16:48:13 -08004926 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4927 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 __cond_resched();
4929 return 1;
4930 }
4931 return 0;
4932}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004933EXPORT_SYMBOL(_cond_resched);
4934#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
4936/*
4937 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4938 * call schedule, and on return reacquire the lock.
4939 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004940 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941 * operations here to prevent schedule() from being called twice (once via
4942 * spin_unlock(), once by hand).
4943 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004944int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945{
Nick Piggin95c354f2008-01-30 13:31:20 +01004946 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07004947 int ret = 0;
4948
Nick Piggin95c354f2008-01-30 13:31:20 +01004949 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01004951 if (resched && need_resched())
4952 __cond_resched();
4953 else
4954 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004955 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004958 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960EXPORT_SYMBOL(cond_resched_lock);
4961
4962int __sched cond_resched_softirq(void)
4963{
4964 BUG_ON(!in_softirq());
4965
Ingo Molnar94142322006-12-29 16:48:13 -08004966 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004967 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968 __cond_resched();
4969 local_bh_disable();
4970 return 1;
4971 }
4972 return 0;
4973}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974EXPORT_SYMBOL(cond_resched_softirq);
4975
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976/**
4977 * yield - yield the current processor to other threads.
4978 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004979 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 * thread runnable and calls sys_sched_yield().
4981 */
4982void __sched yield(void)
4983{
4984 set_current_state(TASK_RUNNING);
4985 sys_sched_yield();
4986}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987EXPORT_SYMBOL(yield);
4988
4989/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004990 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 * that process accounting knows that this is a task in IO wait state.
4992 *
4993 * But don't do that if it is a deliberate, throttling IO wait (this task
4994 * has set its backing_dev_info: the queue against which it should throttle)
4995 */
4996void __sched io_schedule(void)
4997{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004998 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005000 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 atomic_inc(&rq->nr_iowait);
5002 schedule();
5003 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005004 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006EXPORT_SYMBOL(io_schedule);
5007
5008long __sched io_schedule_timeout(long timeout)
5009{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005010 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 long ret;
5012
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005013 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 atomic_inc(&rq->nr_iowait);
5015 ret = schedule_timeout(timeout);
5016 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005017 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018 return ret;
5019}
5020
5021/**
5022 * sys_sched_get_priority_max - return maximum RT priority.
5023 * @policy: scheduling class.
5024 *
5025 * this syscall returns the maximum rt_priority that can be used
5026 * by a given scheduling class.
5027 */
5028asmlinkage long sys_sched_get_priority_max(int policy)
5029{
5030 int ret = -EINVAL;
5031
5032 switch (policy) {
5033 case SCHED_FIFO:
5034 case SCHED_RR:
5035 ret = MAX_USER_RT_PRIO-1;
5036 break;
5037 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005038 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005039 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040 ret = 0;
5041 break;
5042 }
5043 return ret;
5044}
5045
5046/**
5047 * sys_sched_get_priority_min - return minimum RT priority.
5048 * @policy: scheduling class.
5049 *
5050 * this syscall returns the minimum rt_priority that can be used
5051 * by a given scheduling class.
5052 */
5053asmlinkage long sys_sched_get_priority_min(int policy)
5054{
5055 int ret = -EINVAL;
5056
5057 switch (policy) {
5058 case SCHED_FIFO:
5059 case SCHED_RR:
5060 ret = 1;
5061 break;
5062 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005063 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005064 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065 ret = 0;
5066 }
5067 return ret;
5068}
5069
5070/**
5071 * sys_sched_rr_get_interval - return the default timeslice of a process.
5072 * @pid: pid of the process.
5073 * @interval: userspace pointer to the timeslice value.
5074 *
5075 * this syscall writes the default timeslice value of a given process
5076 * into the user-space timespec buffer. A value of '0' means infinity.
5077 */
5078asmlinkage
5079long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5080{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005081 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005082 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005083 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085
5086 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005087 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088
5089 retval = -ESRCH;
5090 read_lock(&tasklist_lock);
5091 p = find_process_by_pid(pid);
5092 if (!p)
5093 goto out_unlock;
5094
5095 retval = security_task_getscheduler(p);
5096 if (retval)
5097 goto out_unlock;
5098
Ingo Molnar77034932007-12-04 17:04:39 +01005099 /*
5100 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5101 * tasks that are on an otherwise idle runqueue:
5102 */
5103 time_slice = 0;
5104 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005105 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005106 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005107 struct sched_entity *se = &p->se;
5108 unsigned long flags;
5109 struct rq *rq;
5110
5111 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005112 if (rq->cfs.load.weight)
5113 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005114 task_rq_unlock(rq, &flags);
5115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005117 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005120
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121out_unlock:
5122 read_unlock(&tasklist_lock);
5123 return retval;
5124}
5125
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005126static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005127
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005128void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005131 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005134 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005135 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005136#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005138 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005140 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141#else
5142 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005143 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005145 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146#endif
5147#ifdef CONFIG_DEBUG_STACK_USAGE
5148 {
Al Viro10ebffd2005-11-13 16:06:56 -08005149 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 while (!*n)
5151 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005152 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 }
5154#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005155 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005156 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005158 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159}
5160
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005161void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005163 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164
Ingo Molnar4bd77322007-07-11 21:21:47 +02005165#if BITS_PER_LONG == 32
5166 printk(KERN_INFO
5167 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005169 printk(KERN_INFO
5170 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171#endif
5172 read_lock(&tasklist_lock);
5173 do_each_thread(g, p) {
5174 /*
5175 * reset the NMI-timeout, listing all files on a slow
5176 * console might take alot of time:
5177 */
5178 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005179 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005180 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181 } while_each_thread(g, p);
5182
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005183 touch_all_softlockup_watchdogs();
5184
Ingo Molnardd41f592007-07-09 18:51:59 +02005185#ifdef CONFIG_SCHED_DEBUG
5186 sysrq_sched_debug_show();
5187#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005189 /*
5190 * Only show locks if all tasks are dumped:
5191 */
5192 if (state_filter == -1)
5193 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194}
5195
Ingo Molnar1df21052007-07-09 18:51:58 +02005196void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5197{
Ingo Molnardd41f592007-07-09 18:51:59 +02005198 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005199}
5200
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005201/**
5202 * init_idle - set up an idle thread for a given CPU
5203 * @idle: task in question
5204 * @cpu: cpu the idle task belongs to
5205 *
5206 * NOTE: this function does not set the idle thread's NEED_RESCHED
5207 * flag, to make booting more robust.
5208 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005209void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005211 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 unsigned long flags;
5213
Ingo Molnardd41f592007-07-09 18:51:59 +02005214 __sched_fork(idle);
5215 idle->se.exec_start = sched_clock();
5216
Ingo Molnarb29739f2006-06-27 02:54:51 -07005217 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005219 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220
5221 spin_lock_irqsave(&rq->lock, flags);
5222 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005223#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5224 idle->oncpu = 1;
5225#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 spin_unlock_irqrestore(&rq->lock, flags);
5227
5228 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f542005-11-13 16:06:55 -08005229 task_thread_info(idle)->preempt_count = 0;
Ingo Molnar6478d882008-01-25 21:08:33 +01005230
Ingo Molnardd41f592007-07-09 18:51:59 +02005231 /*
5232 * The idle tasks have their own, simple scheduling class:
5233 */
5234 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235}
5236
5237/*
5238 * In a system that switches off the HZ timer nohz_cpu_mask
5239 * indicates which cpus entered this state. This is used
5240 * in the rcu update to wait only for active cpus. For system
5241 * which do not switch off the HZ timer nohz_cpu_mask should
5242 * always be CPU_MASK_NONE.
5243 */
5244cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5245
Ingo Molnar19978ca2007-11-09 22:39:38 +01005246/*
5247 * Increase the granularity value when there are more CPUs,
5248 * because with more CPUs the 'effective latency' as visible
5249 * to users decreases. But the relationship is not linear,
5250 * so pick a second-best guess by going with the log2 of the
5251 * number of CPUs.
5252 *
5253 * This idea comes from the SD scheduler of Con Kolivas:
5254 */
5255static inline void sched_init_granularity(void)
5256{
5257 unsigned int factor = 1 + ilog2(num_online_cpus());
5258 const unsigned long limit = 200000000;
5259
5260 sysctl_sched_min_granularity *= factor;
5261 if (sysctl_sched_min_granularity > limit)
5262 sysctl_sched_min_granularity = limit;
5263
5264 sysctl_sched_latency *= factor;
5265 if (sysctl_sched_latency > limit)
5266 sysctl_sched_latency = limit;
5267
5268 sysctl_sched_wakeup_granularity *= factor;
5269 sysctl_sched_batch_wakeup_granularity *= factor;
5270}
5271
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272#ifdef CONFIG_SMP
5273/*
5274 * This is how migration works:
5275 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005276 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277 * runqueue and wake up that CPU's migration thread.
5278 * 2) we down() the locked semaphore => thread blocks.
5279 * 3) migration thread wakes up (implicitly it forces the migrated
5280 * thread off the CPU)
5281 * 4) it gets the migration request and checks whether the migrated
5282 * task is still in the wrong runqueue.
5283 * 5) if it's in the wrong runqueue then the migration thread removes
5284 * it and puts it into the right queue.
5285 * 6) migration thread up()s the semaphore.
5286 * 7) we wake up and the migration is done.
5287 */
5288
5289/*
5290 * Change a given task's CPU affinity. Migrate the thread to a
5291 * proper CPU and schedule it away if the CPU it's executing on
5292 * is removed from the allowed bitmask.
5293 *
5294 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005295 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 * call is not atomic; no spinlocks may be held.
5297 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005298int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005300 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005302 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005303 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304
5305 rq = task_rq_lock(p, &flags);
5306 if (!cpus_intersects(new_mask, cpu_online_map)) {
5307 ret = -EINVAL;
5308 goto out;
5309 }
5310
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005311 if (p->sched_class->set_cpus_allowed)
5312 p->sched_class->set_cpus_allowed(p, &new_mask);
5313 else {
Ingo Molnar0eab9142008-01-25 21:08:19 +01005314 p->cpus_allowed = new_mask;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01005315 p->rt.nr_cpus_allowed = cpus_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005316 }
5317
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 /* Can the task run on the task's current CPU? If so, we're done */
5319 if (cpu_isset(task_cpu(p), new_mask))
5320 goto out;
5321
5322 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
5323 /* Need help from migration thread: drop lock and wait. */
5324 task_rq_unlock(rq, &flags);
5325 wake_up_process(rq->migration_thread);
5326 wait_for_completion(&req.done);
5327 tlb_migrate_finish(p->mm);
5328 return 0;
5329 }
5330out:
5331 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005332
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 return ret;
5334}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335EXPORT_SYMBOL_GPL(set_cpus_allowed);
5336
5337/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005338 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339 * this because either it can't run here any more (set_cpus_allowed()
5340 * away from this CPU, or CPU going down), or because we're
5341 * attempting to rebalance this task on exec (sched_exec).
5342 *
5343 * So we race with normal scheduler movements, but that's OK, as long
5344 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005345 *
5346 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005348static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005350 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005351 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352
5353 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005354 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355
5356 rq_src = cpu_rq(src_cpu);
5357 rq_dest = cpu_rq(dest_cpu);
5358
5359 double_rq_lock(rq_src, rq_dest);
5360 /* Already moved. */
5361 if (task_cpu(p) != src_cpu)
5362 goto out;
5363 /* Affinity changed (again). */
5364 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5365 goto out;
5366
Ingo Molnardd41f592007-07-09 18:51:59 +02005367 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005368 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005369 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005370
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005372 if (on_rq) {
5373 activate_task(rq_dest, p, 0);
5374 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005376 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377out:
5378 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005379 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380}
5381
5382/*
5383 * migration_thread - this is a highprio system thread that performs
5384 * thread migration by bumping thread off CPU then 'pushing' onto
5385 * another runqueue.
5386 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005387static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005390 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391
5392 rq = cpu_rq(cpu);
5393 BUG_ON(rq->migration_thread != current);
5394
5395 set_current_state(TASK_INTERRUPTIBLE);
5396 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005397 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400 spin_lock_irq(&rq->lock);
5401
5402 if (cpu_is_offline(cpu)) {
5403 spin_unlock_irq(&rq->lock);
5404 goto wait_to_die;
5405 }
5406
5407 if (rq->active_balance) {
5408 active_load_balance(rq, cpu);
5409 rq->active_balance = 0;
5410 }
5411
5412 head = &rq->migration_queue;
5413
5414 if (list_empty(head)) {
5415 spin_unlock_irq(&rq->lock);
5416 schedule();
5417 set_current_state(TASK_INTERRUPTIBLE);
5418 continue;
5419 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005420 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 list_del_init(head->next);
5422
Nick Piggin674311d2005-06-25 14:57:27 -07005423 spin_unlock(&rq->lock);
5424 __migrate_task(req->task, cpu, req->dest_cpu);
5425 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
5427 complete(&req->done);
5428 }
5429 __set_current_state(TASK_RUNNING);
5430 return 0;
5431
5432wait_to_die:
5433 /* Wait for kthread_stop */
5434 set_current_state(TASK_INTERRUPTIBLE);
5435 while (!kthread_should_stop()) {
5436 schedule();
5437 set_current_state(TASK_INTERRUPTIBLE);
5438 }
5439 __set_current_state(TASK_RUNNING);
5440 return 0;
5441}
5442
5443#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005444
5445static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5446{
5447 int ret;
5448
5449 local_irq_disable();
5450 ret = __migrate_task(p, src_cpu, dest_cpu);
5451 local_irq_enable();
5452 return ret;
5453}
5454
Kirill Korotaev054b9102006-12-10 02:20:11 -08005455/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005456 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005457 * NOTE: interrupts should be disabled by the caller
5458 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005459static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005461 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005463 struct rq *rq;
5464 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465
Andi Kleen3a5c3592007-10-15 17:00:14 +02005466 do {
5467 /* On same node? */
5468 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5469 cpus_and(mask, mask, p->cpus_allowed);
5470 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471
Andi Kleen3a5c3592007-10-15 17:00:14 +02005472 /* On any allowed CPU? */
5473 if (dest_cpu == NR_CPUS)
5474 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475
Andi Kleen3a5c3592007-10-15 17:00:14 +02005476 /* No more Mr. Nice Guy. */
5477 if (dest_cpu == NR_CPUS) {
Cliff Wickman470fd642007-10-18 23:40:46 -07005478 cpumask_t cpus_allowed = cpuset_cpus_allowed_locked(p);
5479 /*
5480 * Try to stay on the same cpuset, where the
5481 * current cpuset may be a subset of all cpus.
5482 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005483 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005484 * called within calls to cpuset_lock/cpuset_unlock.
5485 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005486 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005487 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005488 dest_cpu = any_online_cpu(p->cpus_allowed);
5489 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490
Andi Kleen3a5c3592007-10-15 17:00:14 +02005491 /*
5492 * Don't tell them about moving exiting tasks or
5493 * kernel threads (both mm NULL), since they never
5494 * leave kernel.
5495 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005496 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005497 printk(KERN_INFO "process %d (%s) no "
5498 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005499 task_pid_nr(p), p->comm, dead_cpu);
5500 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005501 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005502 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503}
5504
5505/*
5506 * While a dead CPU has no uninterruptible tasks queued at this point,
5507 * it might still have a nonzero ->nr_uninterruptible counter, because
5508 * for performance reasons the counter is not stricly tracking tasks to
5509 * their home CPUs. So we just add the counter to another CPU's counter,
5510 * to keep the global sum constant after CPU-down:
5511 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005512static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005514 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515 unsigned long flags;
5516
5517 local_irq_save(flags);
5518 double_rq_lock(rq_src, rq_dest);
5519 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5520 rq_src->nr_uninterruptible = 0;
5521 double_rq_unlock(rq_src, rq_dest);
5522 local_irq_restore(flags);
5523}
5524
5525/* Run through task list and migrate tasks from the dead cpu. */
5526static void migrate_live_tasks(int src_cpu)
5527{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005528 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005530 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531
Ingo Molnar48f24c42006-07-03 00:25:40 -07005532 do_each_thread(t, p) {
5533 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534 continue;
5535
Ingo Molnar48f24c42006-07-03 00:25:40 -07005536 if (task_cpu(p) == src_cpu)
5537 move_task_off_dead_cpu(src_cpu, p);
5538 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005540 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541}
5542
Ingo Molnardd41f592007-07-09 18:51:59 +02005543/*
5544 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005545 * It does so by boosting its priority to highest possible.
5546 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547 */
5548void sched_idle_next(void)
5549{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005550 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005551 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552 struct task_struct *p = rq->idle;
5553 unsigned long flags;
5554
5555 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005556 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557
Ingo Molnar48f24c42006-07-03 00:25:40 -07005558 /*
5559 * Strictly not necessary since rest of the CPUs are stopped by now
5560 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561 */
5562 spin_lock_irqsave(&rq->lock, flags);
5563
Ingo Molnardd41f592007-07-09 18:51:59 +02005564 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005565
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005566 update_rq_clock(rq);
5567 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568
5569 spin_unlock_irqrestore(&rq->lock, flags);
5570}
5571
Ingo Molnar48f24c42006-07-03 00:25:40 -07005572/*
5573 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574 * offline.
5575 */
5576void idle_task_exit(void)
5577{
5578 struct mm_struct *mm = current->active_mm;
5579
5580 BUG_ON(cpu_online(smp_processor_id()));
5581
5582 if (mm != &init_mm)
5583 switch_mm(mm, &init_mm, current);
5584 mmdrop(mm);
5585}
5586
Kirill Korotaev054b9102006-12-10 02:20:11 -08005587/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005588static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005590 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591
5592 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005593 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594
5595 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005596 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597
Ingo Molnar48f24c42006-07-03 00:25:40 -07005598 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599
5600 /*
5601 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005602 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603 * fine.
5604 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005605 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005606 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005607 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
Ingo Molnar48f24c42006-07-03 00:25:40 -07005609 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610}
5611
5612/* release_task() removes task from tasklist, so we won't find dead tasks. */
5613static void migrate_dead_tasks(unsigned int dead_cpu)
5614{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005615 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005616 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617
Ingo Molnardd41f592007-07-09 18:51:59 +02005618 for ( ; ; ) {
5619 if (!rq->nr_running)
5620 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005621 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005622 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005623 if (!next)
5624 break;
5625 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005626
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627 }
5628}
5629#endif /* CONFIG_HOTPLUG_CPU */
5630
Nick Piggine692ab52007-07-26 13:40:43 +02005631#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5632
5633static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005634 {
5635 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005636 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005637 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005638 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005639};
5640
5641static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005642 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005643 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005644 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005645 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005646 .child = sd_ctl_dir,
5647 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005648 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005649};
5650
5651static struct ctl_table *sd_alloc_ctl_entry(int n)
5652{
5653 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005654 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005655
Nick Piggine692ab52007-07-26 13:40:43 +02005656 return entry;
5657}
5658
Milton Miller6382bc92007-10-15 17:00:19 +02005659static void sd_free_ctl_entry(struct ctl_table **tablep)
5660{
Milton Millercd7900762007-10-17 16:55:11 +02005661 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005662
Milton Millercd7900762007-10-17 16:55:11 +02005663 /*
5664 * In the intermediate directories, both the child directory and
5665 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005666 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02005667 * static strings and all have proc handlers.
5668 */
5669 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005670 if (entry->child)
5671 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02005672 if (entry->proc_handler == NULL)
5673 kfree(entry->procname);
5674 }
Milton Miller6382bc92007-10-15 17:00:19 +02005675
5676 kfree(*tablep);
5677 *tablep = NULL;
5678}
5679
Nick Piggine692ab52007-07-26 13:40:43 +02005680static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005681set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005682 const char *procname, void *data, int maxlen,
5683 mode_t mode, proc_handler *proc_handler)
5684{
Nick Piggine692ab52007-07-26 13:40:43 +02005685 entry->procname = procname;
5686 entry->data = data;
5687 entry->maxlen = maxlen;
5688 entry->mode = mode;
5689 entry->proc_handler = proc_handler;
5690}
5691
5692static struct ctl_table *
5693sd_alloc_ctl_domain_table(struct sched_domain *sd)
5694{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005695 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005696
Milton Millerad1cdc12007-10-15 17:00:19 +02005697 if (table == NULL)
5698 return NULL;
5699
Alexey Dobriyane0361852007-08-09 11:16:46 +02005700 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005701 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005702 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005703 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005704 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005705 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005706 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005707 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005708 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005709 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005710 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005711 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005712 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005713 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005714 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005715 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005716 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005717 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005718 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005719 &sd->cache_nice_tries,
5720 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005721 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005722 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005723 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005724
5725 return table;
5726}
5727
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005728static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005729{
5730 struct ctl_table *entry, *table;
5731 struct sched_domain *sd;
5732 int domain_num = 0, i;
5733 char buf[32];
5734
5735 for_each_domain(cpu, sd)
5736 domain_num++;
5737 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005738 if (table == NULL)
5739 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005740
5741 i = 0;
5742 for_each_domain(cpu, sd) {
5743 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005744 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005745 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005746 entry->child = sd_alloc_ctl_domain_table(sd);
5747 entry++;
5748 i++;
5749 }
5750 return table;
5751}
5752
5753static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005754static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005755{
5756 int i, cpu_num = num_online_cpus();
5757 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5758 char buf[32];
5759
Milton Miller73785472007-10-24 18:23:48 +02005760 WARN_ON(sd_ctl_dir[0].child);
5761 sd_ctl_dir[0].child = entry;
5762
Milton Millerad1cdc12007-10-15 17:00:19 +02005763 if (entry == NULL)
5764 return;
5765
Milton Miller97b6ea72007-10-15 17:00:19 +02005766 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005767 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005768 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005769 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005770 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005771 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005772 }
Milton Miller73785472007-10-24 18:23:48 +02005773
5774 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005775 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5776}
Milton Miller6382bc92007-10-15 17:00:19 +02005777
Milton Miller73785472007-10-24 18:23:48 +02005778/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005779static void unregister_sched_domain_sysctl(void)
5780{
Milton Miller73785472007-10-24 18:23:48 +02005781 if (sd_sysctl_header)
5782 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005783 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005784 if (sd_ctl_dir[0].child)
5785 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005786}
Nick Piggine692ab52007-07-26 13:40:43 +02005787#else
Milton Miller6382bc92007-10-15 17:00:19 +02005788static void register_sched_domain_sysctl(void)
5789{
5790}
5791static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005792{
5793}
5794#endif
5795
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796/*
5797 * migration_call - callback that gets triggered when a CPU is added.
5798 * Here we can start up the necessary migration thread for the new CPU.
5799 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005800static int __cpuinit
5801migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005804 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005806 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807
5808 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005809
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005811 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02005812 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813 if (IS_ERR(p))
5814 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 kthread_bind(p, cpu);
5816 /* Must be high prio: stop_machine expects to yield to it. */
5817 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02005818 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 task_rq_unlock(rq, &flags);
5820 cpu_rq(cpu)->migration_thread = p;
5821 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005822
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005824 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005825 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005827
5828 /* Update our root-domain */
5829 rq = cpu_rq(cpu);
5830 spin_lock_irqsave(&rq->lock, flags);
5831 if (rq->rd) {
5832 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5833 cpu_set(cpu, rq->rd->online);
5834 }
5835 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005837
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838#ifdef CONFIG_HOTPLUG_CPU
5839 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005840 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005841 if (!cpu_rq(cpu)->migration_thread)
5842 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005843 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005844 kthread_bind(cpu_rq(cpu)->migration_thread,
5845 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846 kthread_stop(cpu_rq(cpu)->migration_thread);
5847 cpu_rq(cpu)->migration_thread = NULL;
5848 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005849
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005851 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07005852 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853 migrate_live_tasks(cpu);
5854 rq = cpu_rq(cpu);
5855 kthread_stop(rq->migration_thread);
5856 rq->migration_thread = NULL;
5857 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005858 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005859 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005860 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02005862 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
5863 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005865 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07005866 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867 migrate_nr_uninterruptible(rq);
5868 BUG_ON(rq->nr_running != 0);
5869
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005870 /*
5871 * No need to migrate the tasks: it was best-effort if
5872 * they didn't take sched_hotcpu_mutex. Just wake up
5873 * the requestors.
5874 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875 spin_lock_irq(&rq->lock);
5876 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005877 struct migration_req *req;
5878
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005880 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881 list_del_init(&req->list);
5882 complete(&req->done);
5883 }
5884 spin_unlock_irq(&rq->lock);
5885 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005886
Gregory Haskins08f503b2008-03-10 17:59:11 -04005887 case CPU_DYING:
5888 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01005889 /* Update our root-domain */
5890 rq = cpu_rq(cpu);
5891 spin_lock_irqsave(&rq->lock, flags);
5892 if (rq->rd) {
5893 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5894 cpu_clear(cpu, rq->rd->online);
5895 }
5896 spin_unlock_irqrestore(&rq->lock, flags);
5897 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898#endif
5899 }
5900 return NOTIFY_OK;
5901}
5902
5903/* Register at highest priority so that task migration (migrate_all_tasks)
5904 * happens before everything else.
5905 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005906static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907 .notifier_call = migration_call,
5908 .priority = 10
5909};
5910
Adrian Bunke6fe6642007-11-09 22:39:39 +01005911void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912{
5913 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005914 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005915
5916 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005917 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5918 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5920 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921}
5922#endif
5923
5924#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005925
5926/* Number of possible processor ids */
5927int nr_cpu_ids __read_mostly = NR_CPUS;
5928EXPORT_SYMBOL(nr_cpu_ids);
5929
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005930#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005931
5932static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level)
5933{
5934 struct sched_group *group = sd->groups;
5935 cpumask_t groupmask;
5936 char str[NR_CPUS];
5937
5938 cpumask_scnprintf(str, NR_CPUS, sd->span);
5939 cpus_clear(groupmask);
5940
5941 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5942
5943 if (!(sd->flags & SD_LOAD_BALANCE)) {
5944 printk("does not load-balance\n");
5945 if (sd->parent)
5946 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5947 " has parent");
5948 return -1;
5949 }
5950
5951 printk(KERN_CONT "span %s\n", str);
5952
5953 if (!cpu_isset(cpu, sd->span)) {
5954 printk(KERN_ERR "ERROR: domain->span does not contain "
5955 "CPU%d\n", cpu);
5956 }
5957 if (!cpu_isset(cpu, group->cpumask)) {
5958 printk(KERN_ERR "ERROR: domain->groups does not contain"
5959 " CPU%d\n", cpu);
5960 }
5961
5962 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5963 do {
5964 if (!group) {
5965 printk("\n");
5966 printk(KERN_ERR "ERROR: group is NULL\n");
5967 break;
5968 }
5969
5970 if (!group->__cpu_power) {
5971 printk(KERN_CONT "\n");
5972 printk(KERN_ERR "ERROR: domain->cpu_power not "
5973 "set\n");
5974 break;
5975 }
5976
5977 if (!cpus_weight(group->cpumask)) {
5978 printk(KERN_CONT "\n");
5979 printk(KERN_ERR "ERROR: empty group\n");
5980 break;
5981 }
5982
5983 if (cpus_intersects(groupmask, group->cpumask)) {
5984 printk(KERN_CONT "\n");
5985 printk(KERN_ERR "ERROR: repeated CPUs\n");
5986 break;
5987 }
5988
5989 cpus_or(groupmask, groupmask, group->cpumask);
5990
5991 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5992 printk(KERN_CONT " %s", str);
5993
5994 group = group->next;
5995 } while (group != sd->groups);
5996 printk(KERN_CONT "\n");
5997
5998 if (!cpus_equal(sd->span, groupmask))
5999 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6000
6001 if (sd->parent && !cpus_subset(groupmask, sd->parent->span))
6002 printk(KERN_ERR "ERROR: parent span is not a superset "
6003 "of domain->span\n");
6004 return 0;
6005}
6006
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007static void sched_domain_debug(struct sched_domain *sd, int cpu)
6008{
6009 int level = 0;
6010
Nick Piggin41c7ce92005-06-25 14:57:24 -07006011 if (!sd) {
6012 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6013 return;
6014 }
6015
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6017
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006018 for (;;) {
6019 if (sched_domain_debug_one(sd, cpu, level))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021 level++;
6022 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006023 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006024 break;
6025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026}
6027#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006028# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029#endif
6030
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006031static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006032{
6033 if (cpus_weight(sd->span) == 1)
6034 return 1;
6035
6036 /* Following flags need at least 2 groups */
6037 if (sd->flags & (SD_LOAD_BALANCE |
6038 SD_BALANCE_NEWIDLE |
6039 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006040 SD_BALANCE_EXEC |
6041 SD_SHARE_CPUPOWER |
6042 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006043 if (sd->groups != sd->groups->next)
6044 return 0;
6045 }
6046
6047 /* Following flags don't use groups */
6048 if (sd->flags & (SD_WAKE_IDLE |
6049 SD_WAKE_AFFINE |
6050 SD_WAKE_BALANCE))
6051 return 0;
6052
6053 return 1;
6054}
6055
Ingo Molnar48f24c42006-07-03 00:25:40 -07006056static int
6057sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006058{
6059 unsigned long cflags = sd->flags, pflags = parent->flags;
6060
6061 if (sd_degenerate(parent))
6062 return 1;
6063
6064 if (!cpus_equal(sd->span, parent->span))
6065 return 0;
6066
6067 /* Does parent contain flags not in child? */
6068 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6069 if (cflags & SD_WAKE_AFFINE)
6070 pflags &= ~SD_WAKE_BALANCE;
6071 /* Flags needing groups don't count if only 1 group in parent */
6072 if (parent->groups == parent->groups->next) {
6073 pflags &= ~(SD_LOAD_BALANCE |
6074 SD_BALANCE_NEWIDLE |
6075 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006076 SD_BALANCE_EXEC |
6077 SD_SHARE_CPUPOWER |
6078 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006079 }
6080 if (~cflags & pflags)
6081 return 0;
6082
6083 return 1;
6084}
6085
Gregory Haskins57d885f2008-01-25 21:08:18 +01006086static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6087{
6088 unsigned long flags;
6089 const struct sched_class *class;
6090
6091 spin_lock_irqsave(&rq->lock, flags);
6092
6093 if (rq->rd) {
6094 struct root_domain *old_rd = rq->rd;
6095
Ingo Molnar0eab9142008-01-25 21:08:19 +01006096 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006097 if (class->leave_domain)
6098 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006099 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006100
Gregory Haskinsdc938522008-01-25 21:08:26 +01006101 cpu_clear(rq->cpu, old_rd->span);
6102 cpu_clear(rq->cpu, old_rd->online);
6103
Gregory Haskins57d885f2008-01-25 21:08:18 +01006104 if (atomic_dec_and_test(&old_rd->refcount))
6105 kfree(old_rd);
6106 }
6107
6108 atomic_inc(&rd->refcount);
6109 rq->rd = rd;
6110
Gregory Haskinsdc938522008-01-25 21:08:26 +01006111 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006112 if (cpu_isset(rq->cpu, cpu_online_map))
6113 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006114
Ingo Molnar0eab9142008-01-25 21:08:19 +01006115 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006116 if (class->join_domain)
6117 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006118 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006119
6120 spin_unlock_irqrestore(&rq->lock, flags);
6121}
6122
Gregory Haskinsdc938522008-01-25 21:08:26 +01006123static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006124{
6125 memset(rd, 0, sizeof(*rd));
6126
Gregory Haskinsdc938522008-01-25 21:08:26 +01006127 cpus_clear(rd->span);
6128 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006129}
6130
6131static void init_defrootdomain(void)
6132{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006133 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006134 atomic_set(&def_root_domain.refcount, 1);
6135}
6136
Gregory Haskinsdc938522008-01-25 21:08:26 +01006137static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006138{
6139 struct root_domain *rd;
6140
6141 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6142 if (!rd)
6143 return NULL;
6144
Gregory Haskinsdc938522008-01-25 21:08:26 +01006145 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006146
6147 return rd;
6148}
6149
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006151 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006152 * hold the hotplug lock.
6153 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006154static void
6155cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006157 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006158 struct sched_domain *tmp;
6159
6160 /* Remove the sched domains which do not contribute to scheduling. */
6161 for (tmp = sd; tmp; tmp = tmp->parent) {
6162 struct sched_domain *parent = tmp->parent;
6163 if (!parent)
6164 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006165 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006166 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006167 if (parent->parent)
6168 parent->parent->child = tmp;
6169 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006170 }
6171
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006172 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006173 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006174 if (sd)
6175 sd->child = NULL;
6176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006177
6178 sched_domain_debug(sd, cpu);
6179
Gregory Haskins57d885f2008-01-25 21:08:18 +01006180 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006181 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182}
6183
6184/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006185static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186
6187/* Setup the mask of cpus configured for isolated domains */
6188static int __init isolated_cpu_setup(char *str)
6189{
6190 int ints[NR_CPUS], i;
6191
6192 str = get_options(str, ARRAY_SIZE(ints), ints);
6193 cpus_clear(cpu_isolated_map);
6194 for (i = 1; i <= ints[0]; i++)
6195 if (ints[i] < NR_CPUS)
6196 cpu_set(ints[i], cpu_isolated_map);
6197 return 1;
6198}
6199
Ingo Molnar8927f492007-10-15 17:00:13 +02006200__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201
6202/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006203 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6204 * to a function which identifies what group(along with sched group) a CPU
6205 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6206 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207 *
6208 * init_sched_build_groups will build a circular linked list of the groups
6209 * covered by the given span, and will set each group's ->cpumask correctly,
6210 * and ->cpu_power to 0.
6211 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006212static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006213init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
6214 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
6215 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216{
6217 struct sched_group *first = NULL, *last = NULL;
6218 cpumask_t covered = CPU_MASK_NONE;
6219 int i;
6220
6221 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006222 struct sched_group *sg;
6223 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224 int j;
6225
6226 if (cpu_isset(i, covered))
6227 continue;
6228
6229 sg->cpumask = CPU_MASK_NONE;
Eric Dumazet5517d862007-05-08 00:32:57 -07006230 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231
6232 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006233 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234 continue;
6235
6236 cpu_set(j, covered);
6237 cpu_set(j, sg->cpumask);
6238 }
6239 if (!first)
6240 first = sg;
6241 if (last)
6242 last->next = sg;
6243 last = sg;
6244 }
6245 last->next = first;
6246}
6247
John Hawkes9c1cfda2005-09-06 15:18:14 -07006248#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249
John Hawkes9c1cfda2005-09-06 15:18:14 -07006250#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006251
John Hawkes9c1cfda2005-09-06 15:18:14 -07006252/**
6253 * find_next_best_node - find the next node to include in a sched_domain
6254 * @node: node whose sched_domain we're building
6255 * @used_nodes: nodes already in the sched_domain
6256 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006257 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006258 * finds the closest node not already in the @used_nodes map.
6259 *
6260 * Should use nodemask_t.
6261 */
6262static int find_next_best_node(int node, unsigned long *used_nodes)
6263{
6264 int i, n, val, min_val, best_node = 0;
6265
6266 min_val = INT_MAX;
6267
6268 for (i = 0; i < MAX_NUMNODES; i++) {
6269 /* Start at @node */
6270 n = (node + i) % MAX_NUMNODES;
6271
6272 if (!nr_cpus_node(n))
6273 continue;
6274
6275 /* Skip already used nodes */
6276 if (test_bit(n, used_nodes))
6277 continue;
6278
6279 /* Simple min distance search */
6280 val = node_distance(node, n);
6281
6282 if (val < min_val) {
6283 min_val = val;
6284 best_node = n;
6285 }
6286 }
6287
6288 set_bit(best_node, used_nodes);
6289 return best_node;
6290}
6291
6292/**
6293 * sched_domain_node_span - get a cpumask for a node's sched_domain
6294 * @node: node whose cpumask we're constructing
6295 * @size: number of nodes to include in this span
6296 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006297 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006298 * should be one that prevents unnecessary balancing, but also spreads tasks
6299 * out optimally.
6300 */
6301static cpumask_t sched_domain_node_span(int node)
6302{
John Hawkes9c1cfda2005-09-06 15:18:14 -07006303 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006304 cpumask_t span, nodemask;
6305 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006306
6307 cpus_clear(span);
6308 bitmap_zero(used_nodes, MAX_NUMNODES);
6309
6310 nodemask = node_to_cpumask(node);
6311 cpus_or(span, span, nodemask);
6312 set_bit(node, used_nodes);
6313
6314 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6315 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006316
John Hawkes9c1cfda2005-09-06 15:18:14 -07006317 nodemask = node_to_cpumask(next_node);
6318 cpus_or(span, span, nodemask);
6319 }
6320
6321 return span;
6322}
6323#endif
6324
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006325int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006326
John Hawkes9c1cfda2005-09-06 15:18:14 -07006327/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006328 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006329 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330#ifdef CONFIG_SCHED_SMT
6331static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006332static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006333
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006334static int
6335cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006337 if (sg)
6338 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339 return cpu;
6340}
6341#endif
6342
Ingo Molnar48f24c42006-07-03 00:25:40 -07006343/*
6344 * multi-core sched-domains:
6345 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006346#ifdef CONFIG_SCHED_MC
6347static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006348static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006349#endif
6350
6351#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006352static int
6353cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006354{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006355 int group;
Mike Travisd5a74302007-10-16 01:24:05 -07006356 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006357 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006358 group = first_cpu(mask);
6359 if (sg)
6360 *sg = &per_cpu(sched_group_core, group);
6361 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006362}
6363#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006364static int
6365cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006366{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006367 if (sg)
6368 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006369 return cpu;
6370}
6371#endif
6372
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006374static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006375
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006376static int
6377cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006379 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006380#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006381 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006382 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006383 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006384#elif defined(CONFIG_SCHED_SMT)
Mike Travisd5a74302007-10-16 01:24:05 -07006385 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006386 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006387 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006389 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006391 if (sg)
6392 *sg = &per_cpu(sched_group_phys, group);
6393 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394}
6395
6396#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006397/*
6398 * The init_sched_build_groups can't handle what we want to do with node
6399 * groups, so roll our own. Now each node has its own list of groups which
6400 * gets dynamically allocated.
6401 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07006403static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07006404
6405static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006406static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006407
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006408static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
6409 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006411 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
6412 int group;
6413
6414 cpus_and(nodemask, nodemask, *cpu_map);
6415 group = first_cpu(nodemask);
6416
6417 if (sg)
6418 *sg = &per_cpu(sched_group_allnodes, group);
6419 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006421
Siddha, Suresh B08069032006-03-27 01:15:23 -08006422static void init_numa_sched_groups_power(struct sched_group *group_head)
6423{
6424 struct sched_group *sg = group_head;
6425 int j;
6426
6427 if (!sg)
6428 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006429 do {
6430 for_each_cpu_mask(j, sg->cpumask) {
6431 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006432
Andi Kleen3a5c3592007-10-15 17:00:14 +02006433 sd = &per_cpu(phys_domains, j);
6434 if (j != first_cpu(sd->groups->cpumask)) {
6435 /*
6436 * Only add "power" once for each
6437 * physical package.
6438 */
6439 continue;
6440 }
6441
6442 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006443 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006444 sg = sg->next;
6445 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006446}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447#endif
6448
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006449#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006450/* Free memory allocated for various sched_group structures */
6451static void free_sched_groups(const cpumask_t *cpu_map)
6452{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006453 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006454
6455 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006456 struct sched_group **sched_group_nodes
6457 = sched_group_nodes_bycpu[cpu];
6458
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006459 if (!sched_group_nodes)
6460 continue;
6461
6462 for (i = 0; i < MAX_NUMNODES; i++) {
6463 cpumask_t nodemask = node_to_cpumask(i);
6464 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6465
6466 cpus_and(nodemask, nodemask, *cpu_map);
6467 if (cpus_empty(nodemask))
6468 continue;
6469
6470 if (sg == NULL)
6471 continue;
6472 sg = sg->next;
6473next_sg:
6474 oldsg = sg;
6475 sg = sg->next;
6476 kfree(oldsg);
6477 if (oldsg != sched_group_nodes[i])
6478 goto next_sg;
6479 }
6480 kfree(sched_group_nodes);
6481 sched_group_nodes_bycpu[cpu] = NULL;
6482 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006483}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006484#else
6485static void free_sched_groups(const cpumask_t *cpu_map)
6486{
6487}
6488#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006489
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006491 * Initialize sched groups cpu_power.
6492 *
6493 * cpu_power indicates the capacity of sched group, which is used while
6494 * distributing the load between different sched groups in a sched domain.
6495 * Typically cpu_power for all the groups in a sched domain will be same unless
6496 * there are asymmetries in the topology. If there are asymmetries, group
6497 * having more cpu_power will pickup more load compared to the group having
6498 * less cpu_power.
6499 *
6500 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6501 * the maximum number of tasks a group can handle in the presence of other idle
6502 * or lightly loaded groups in the same sched domain.
6503 */
6504static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6505{
6506 struct sched_domain *child;
6507 struct sched_group *group;
6508
6509 WARN_ON(!sd || !sd->groups);
6510
6511 if (cpu != first_cpu(sd->groups->cpumask))
6512 return;
6513
6514 child = sd->child;
6515
Eric Dumazet5517d862007-05-08 00:32:57 -07006516 sd->groups->__cpu_power = 0;
6517
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006518 /*
6519 * For perf policy, if the groups in child domain share resources
6520 * (for example cores sharing some portions of the cache hierarchy
6521 * or SMT), then set this domain groups cpu_power such that each group
6522 * can handle only one task, when there are other idle groups in the
6523 * same sched domain.
6524 */
6525 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6526 (child->flags &
6527 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006528 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006529 return;
6530 }
6531
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006532 /*
6533 * add cpu_power of each child group to this groups cpu_power
6534 */
6535 group = child->groups;
6536 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006537 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006538 group = group->next;
6539 } while (group != child->groups);
6540}
6541
6542/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006543 * Build sched domains for a given set of cpus and attach the sched domains
6544 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006546static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547{
6548 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006549 struct root_domain *rd;
John Hawkesd1b55132005-09-06 15:18:14 -07006550#ifdef CONFIG_NUMA
6551 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006552 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006553
6554 /*
6555 * Allocate the per-node list of sched groups
6556 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006557 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006558 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006559 if (!sched_group_nodes) {
6560 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006561 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006562 }
6563 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6564#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565
Gregory Haskinsdc938522008-01-25 21:08:26 +01006566 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006567 if (!rd) {
6568 printk(KERN_WARNING "Cannot alloc root domain\n");
6569 return -ENOMEM;
6570 }
6571
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006573 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006575 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576 struct sched_domain *sd = NULL, *p;
6577 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6578
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006579 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006580
6581#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006582 if (cpus_weight(*cpu_map) >
6583 SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006584 sd = &per_cpu(allnodes_domains, i);
6585 *sd = SD_ALLNODES_INIT;
6586 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006587 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006588 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006589 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006590 } else
6591 p = NULL;
6592
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006595 sd->span = sched_domain_node_span(cpu_to_node(i));
6596 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006597 if (p)
6598 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006599 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600#endif
6601
6602 p = sd;
6603 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604 *sd = SD_CPU_INIT;
6605 sd->span = nodemask;
6606 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006607 if (p)
6608 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006609 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006611#ifdef CONFIG_SCHED_MC
6612 p = sd;
6613 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006614 *sd = SD_MC_INIT;
6615 sd->span = cpu_coregroup_map(i);
6616 cpus_and(sd->span, sd->span, *cpu_map);
6617 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006618 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006619 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006620#endif
6621
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622#ifdef CONFIG_SCHED_SMT
6623 p = sd;
6624 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625 *sd = SD_SIBLING_INIT;
Mike Travisd5a74302007-10-16 01:24:05 -07006626 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006627 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006629 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006630 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631#endif
6632 }
6633
6634#ifdef CONFIG_SCHED_SMT
6635 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006636 for_each_cpu_mask(i, *cpu_map) {
Mike Travisd5a74302007-10-16 01:24:05 -07006637 cpumask_t this_sibling_map = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006638 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639 if (i != first_cpu(this_sibling_map))
6640 continue;
6641
Ingo Molnardd41f592007-07-09 18:51:59 +02006642 init_sched_build_groups(this_sibling_map, cpu_map,
6643 &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644 }
6645#endif
6646
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006647#ifdef CONFIG_SCHED_MC
6648 /* Set up multi-core groups */
6649 for_each_cpu_mask(i, *cpu_map) {
6650 cpumask_t this_core_map = cpu_coregroup_map(i);
6651 cpus_and(this_core_map, this_core_map, *cpu_map);
6652 if (i != first_cpu(this_core_map))
6653 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006654 init_sched_build_groups(this_core_map, cpu_map,
6655 &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006656 }
6657#endif
6658
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659 /* Set up physical groups */
6660 for (i = 0; i < MAX_NUMNODES; i++) {
6661 cpumask_t nodemask = node_to_cpumask(i);
6662
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006663 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664 if (cpus_empty(nodemask))
6665 continue;
6666
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006667 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668 }
6669
6670#ifdef CONFIG_NUMA
6671 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006672 if (sd_allnodes)
Ingo Molnardd41f592007-07-09 18:51:59 +02006673 init_sched_build_groups(*cpu_map, cpu_map,
6674 &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006675
6676 for (i = 0; i < MAX_NUMNODES; i++) {
6677 /* Set up node groups */
6678 struct sched_group *sg, *prev;
6679 cpumask_t nodemask = node_to_cpumask(i);
6680 cpumask_t domainspan;
6681 cpumask_t covered = CPU_MASK_NONE;
6682 int j;
6683
6684 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006685 if (cpus_empty(nodemask)) {
6686 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006687 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006688 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006689
6690 domainspan = sched_domain_node_span(i);
6691 cpus_and(domainspan, domainspan, *cpu_map);
6692
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006693 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006694 if (!sg) {
6695 printk(KERN_WARNING "Can not alloc domain group for "
6696 "node %d\n", i);
6697 goto error;
6698 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006699 sched_group_nodes[i] = sg;
6700 for_each_cpu_mask(j, nodemask) {
6701 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02006702
John Hawkes9c1cfda2005-09-06 15:18:14 -07006703 sd = &per_cpu(node_domains, j);
6704 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006705 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006706 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006707 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006708 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006709 cpus_or(covered, covered, nodemask);
6710 prev = sg;
6711
6712 for (j = 0; j < MAX_NUMNODES; j++) {
6713 cpumask_t tmp, notcovered;
6714 int n = (i + j) % MAX_NUMNODES;
6715
6716 cpus_complement(notcovered, covered);
6717 cpus_and(tmp, notcovered, *cpu_map);
6718 cpus_and(tmp, tmp, domainspan);
6719 if (cpus_empty(tmp))
6720 break;
6721
6722 nodemask = node_to_cpumask(n);
6723 cpus_and(tmp, tmp, nodemask);
6724 if (cpus_empty(tmp))
6725 continue;
6726
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006727 sg = kmalloc_node(sizeof(struct sched_group),
6728 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006729 if (!sg) {
6730 printk(KERN_WARNING
6731 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006732 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006733 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006734 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006735 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006736 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006737 cpus_or(covered, covered, tmp);
6738 prev->next = sg;
6739 prev = sg;
6740 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742#endif
6743
6744 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006745#ifdef CONFIG_SCHED_SMT
6746 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006747 struct sched_domain *sd = &per_cpu(cpu_domains, i);
6748
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006749 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006750 }
6751#endif
6752#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006753 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006754 struct sched_domain *sd = &per_cpu(core_domains, i);
6755
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006756 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006757 }
6758#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006760 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006761 struct sched_domain *sd = &per_cpu(phys_domains, i);
6762
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006763 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764 }
6765
John Hawkes9c1cfda2005-09-06 15:18:14 -07006766#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006767 for (i = 0; i < MAX_NUMNODES; i++)
6768 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006769
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006770 if (sd_allnodes) {
6771 struct sched_group *sg;
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006772
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006773 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006774 init_numa_sched_groups_power(sg);
6775 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006776#endif
6777
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006779 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780 struct sched_domain *sd;
6781#ifdef CONFIG_SCHED_SMT
6782 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006783#elif defined(CONFIG_SCHED_MC)
6784 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006785#else
6786 sd = &per_cpu(phys_domains, i);
6787#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006788 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006790
6791 return 0;
6792
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006793#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006794error:
6795 free_sched_groups(cpu_map);
6796 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006797#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798}
Paul Jackson029190c2007-10-18 23:40:20 -07006799
6800static cpumask_t *doms_cur; /* current sched domains */
6801static int ndoms_cur; /* number of sched domains in 'doms_cur' */
6802
6803/*
6804 * Special case: If a kmalloc of a doms_cur partition (array of
6805 * cpumask_t) fails, then fallback to a single sched domain,
6806 * as determined by the single cpumask_t fallback_doms.
6807 */
6808static cpumask_t fallback_doms;
6809
Heiko Carstens22e52b02008-03-12 18:31:59 +01006810void __attribute__((weak)) arch_update_cpu_topology(void)
6811{
6812}
6813
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006814/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006815 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006816 * For now this just excludes isolated cpus, but could be used to
6817 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006818 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006819static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006820{
Milton Miller73785472007-10-24 18:23:48 +02006821 int err;
6822
Heiko Carstens22e52b02008-03-12 18:31:59 +01006823 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07006824 ndoms_cur = 1;
6825 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6826 if (!doms_cur)
6827 doms_cur = &fallback_doms;
6828 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Milton Miller73785472007-10-24 18:23:48 +02006829 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02006830 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006831
6832 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006833}
6834
6835static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006837 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006838}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006839
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006840/*
6841 * Detach sched domains from a group of cpus specified in cpu_map
6842 * These cpus will now be attached to the NULL domain
6843 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006844static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006845{
6846 int i;
6847
Milton Miller6382bc92007-10-15 17:00:19 +02006848 unregister_sched_domain_sysctl();
6849
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006850 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006851 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006852 synchronize_sched();
6853 arch_destroy_sched_domains(cpu_map);
6854}
6855
Paul Jackson029190c2007-10-18 23:40:20 -07006856/*
6857 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006858 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006859 * doms_new[] to the current sched domain partitioning, doms_cur[].
6860 * It destroys each deleted domain and builds each new domain.
6861 *
6862 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006863 * The masks don't intersect (don't overlap.) We should setup one
6864 * sched domain for each mask. CPUs not in any of the cpumasks will
6865 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006866 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6867 * it as it is.
6868 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006869 * The passed in 'doms_new' should be kmalloc'd. This routine takes
6870 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07006871 * failed the kmalloc call, then it can pass in doms_new == NULL,
6872 * and partition_sched_domains() will fallback to the single partition
6873 * 'fallback_doms'.
6874 *
6875 * Call with hotplug lock held
6876 */
6877void partition_sched_domains(int ndoms_new, cpumask_t *doms_new)
6878{
6879 int i, j;
6880
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006881 lock_doms_cur();
6882
Milton Miller73785472007-10-24 18:23:48 +02006883 /* always unregister in case we don't destroy any domains */
6884 unregister_sched_domain_sysctl();
6885
Paul Jackson029190c2007-10-18 23:40:20 -07006886 if (doms_new == NULL) {
6887 ndoms_new = 1;
6888 doms_new = &fallback_doms;
6889 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
6890 }
6891
6892 /* Destroy deleted domains */
6893 for (i = 0; i < ndoms_cur; i++) {
6894 for (j = 0; j < ndoms_new; j++) {
6895 if (cpus_equal(doms_cur[i], doms_new[j]))
6896 goto match1;
6897 }
6898 /* no match - a current sched domain not in new doms_new[] */
6899 detach_destroy_domains(doms_cur + i);
6900match1:
6901 ;
6902 }
6903
6904 /* Build new domains */
6905 for (i = 0; i < ndoms_new; i++) {
6906 for (j = 0; j < ndoms_cur; j++) {
6907 if (cpus_equal(doms_new[i], doms_cur[j]))
6908 goto match2;
6909 }
6910 /* no match - add a new doms_new */
6911 build_sched_domains(doms_new + i);
6912match2:
6913 ;
6914 }
6915
6916 /* Remember the new sched domains */
6917 if (doms_cur != &fallback_doms)
6918 kfree(doms_cur);
6919 doms_cur = doms_new;
6920 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006921
6922 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006923
6924 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07006925}
6926
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006927#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01006928int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006929{
6930 int err;
6931
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006932 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006933 detach_destroy_domains(&cpu_online_map);
6934 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006935 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006936
6937 return err;
6938}
6939
6940static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6941{
6942 int ret;
6943
6944 if (buf[0] != '0' && buf[0] != '1')
6945 return -EINVAL;
6946
6947 if (smt)
6948 sched_smt_power_savings = (buf[0] == '1');
6949 else
6950 sched_mc_power_savings = (buf[0] == '1');
6951
6952 ret = arch_reinit_sched_domains();
6953
6954 return ret ? ret : count;
6955}
6956
Adrian Bunk6707de002007-08-12 18:08:19 +02006957#ifdef CONFIG_SCHED_MC
6958static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6959{
6960 return sprintf(page, "%u\n", sched_mc_power_savings);
6961}
6962static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6963 const char *buf, size_t count)
6964{
6965 return sched_power_savings_store(buf, count, 0);
6966}
6967static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6968 sched_mc_power_savings_store);
6969#endif
6970
6971#ifdef CONFIG_SCHED_SMT
6972static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6973{
6974 return sprintf(page, "%u\n", sched_smt_power_savings);
6975}
6976static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6977 const char *buf, size_t count)
6978{
6979 return sched_power_savings_store(buf, count, 1);
6980}
6981static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6982 sched_smt_power_savings_store);
6983#endif
6984
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006985int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6986{
6987 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006988
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006989#ifdef CONFIG_SCHED_SMT
6990 if (smt_capable())
6991 err = sysfs_create_file(&cls->kset.kobj,
6992 &attr_sched_smt_power_savings.attr);
6993#endif
6994#ifdef CONFIG_SCHED_MC
6995 if (!err && mc_capable())
6996 err = sysfs_create_file(&cls->kset.kobj,
6997 &attr_sched_mc_power_savings.attr);
6998#endif
6999 return err;
7000}
7001#endif
7002
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007004 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007006 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007 * which will prevent rebalancing while the sched domains are recalculated.
7008 */
7009static int update_sched_domains(struct notifier_block *nfb,
7010 unsigned long action, void *hcpu)
7011{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012 switch (action) {
7013 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007014 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007016 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007017 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018 return NOTIFY_OK;
7019
7020 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007021 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007022 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007023 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007025 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007026 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007027 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007028 /*
7029 * Fall through and re-initialise the domains.
7030 */
7031 break;
7032 default:
7033 return NOTIFY_DONE;
7034 }
7035
7036 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007037 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007038
7039 return NOTIFY_OK;
7040}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007041
7042void __init sched_init_smp(void)
7043{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007044 cpumask_t non_isolated_cpus;
7045
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007046 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007047 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007048 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007049 if (cpus_empty(non_isolated_cpus))
7050 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007051 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052 /* XXX: Theoretical race here - CPU may be hotplugged now */
7053 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007054
7055 /* Move init over to a non-isolated CPU */
7056 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
7057 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007058 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059}
7060#else
7061void __init sched_init_smp(void)
7062{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007063 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064}
7065#endif /* CONFIG_SMP */
7066
7067int in_sched_functions(unsigned long addr)
7068{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069 return in_lock_functions(addr) ||
7070 (addr >= (unsigned long)__sched_text_start
7071 && addr < (unsigned long)__sched_text_end);
7072}
7073
Alexey Dobriyana9957442007-10-15 17:00:13 +02007074static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007075{
7076 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02007077#ifdef CONFIG_FAIR_GROUP_SCHED
7078 cfs_rq->rq = rq;
7079#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007080 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007081}
7082
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007083static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7084{
7085 struct rt_prio_array *array;
7086 int i;
7087
7088 array = &rt_rq->active;
7089 for (i = 0; i < MAX_RT_PRIO; i++) {
7090 INIT_LIST_HEAD(array->queue + i);
7091 __clear_bit(i, array->bitmap);
7092 }
7093 /* delimiter for bitsearch: */
7094 __set_bit(MAX_RT_PRIO, array->bitmap);
7095
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007096#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007097 rt_rq->highest_prio = MAX_RT_PRIO;
7098#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007099#ifdef CONFIG_SMP
7100 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007101 rt_rq->overloaded = 0;
7102#endif
7103
7104 rt_rq->rt_time = 0;
7105 rt_rq->rt_throttled = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007106
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007107#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007108 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007109 rt_rq->rq = rq;
7110#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007111}
7112
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007113#ifdef CONFIG_FAIR_GROUP_SCHED
7114static void init_tg_cfs_entry(struct rq *rq, struct task_group *tg,
7115 struct cfs_rq *cfs_rq, struct sched_entity *se,
7116 int cpu, int add)
7117{
7118 tg->cfs_rq[cpu] = cfs_rq;
7119 init_cfs_rq(cfs_rq, rq);
7120 cfs_rq->tg = tg;
7121 if (add)
7122 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7123
7124 tg->se[cpu] = se;
7125 se->cfs_rq = &rq->cfs;
7126 se->my_q = cfs_rq;
7127 se->load.weight = tg->shares;
7128 se->load.inv_weight = div64_64(1ULL<<32, se->load.weight);
7129 se->parent = NULL;
7130}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007131#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007132
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007133#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007134static void init_tg_rt_entry(struct rq *rq, struct task_group *tg,
7135 struct rt_rq *rt_rq, struct sched_rt_entity *rt_se,
7136 int cpu, int add)
7137{
7138 tg->rt_rq[cpu] = rt_rq;
7139 init_rt_rq(rt_rq, rq);
7140 rt_rq->tg = tg;
7141 rt_rq->rt_se = rt_se;
7142 if (add)
7143 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7144
7145 tg->rt_se[cpu] = rt_se;
7146 rt_se->rt_rq = &rq->rt;
7147 rt_se->my_q = rt_rq;
7148 rt_se->parent = NULL;
7149 INIT_LIST_HEAD(&rt_se->run_list);
7150}
7151#endif
7152
Linus Torvalds1da177e2005-04-16 15:20:36 -07007153void __init sched_init(void)
7154{
Christoph Lameter476f3532007-05-06 14:48:58 -07007155 int highest_cpu = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007156 int i, j;
7157
Gregory Haskins57d885f2008-01-25 21:08:18 +01007158#ifdef CONFIG_SMP
7159 init_defrootdomain();
7160#endif
7161
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007162#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007163 list_add(&init_task_group.list, &task_groups);
7164#endif
7165
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007166 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007167 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168
7169 rq = cpu_rq(i);
7170 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007171 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007172 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007173 rq->clock = 1;
7174 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007175 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007176#ifdef CONFIG_FAIR_GROUP_SCHED
7177 init_task_group.shares = init_task_group_load;
7178 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
7179 init_tg_cfs_entry(rq, &init_task_group,
7180 &per_cpu(init_cfs_rq, i),
7181 &per_cpu(init_sched_entity, i), i, 1);
7182
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007183#endif
7184#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007185 init_task_group.rt_runtime =
7186 sysctl_sched_rt_runtime * NSEC_PER_USEC;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007187 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
7188 init_tg_rt_entry(rq, &init_task_group,
7189 &per_cpu(init_rt_rq, i),
7190 &per_cpu(init_sched_rt_entity, i), i, 1);
7191#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007192 rq->rt_period_expire = 0;
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007193 rq->rt_throttled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194
Ingo Molnardd41f592007-07-09 18:51:59 +02007195 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7196 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007197#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007198 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007199 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007200 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007201 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007203 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007204 rq->migration_thread = NULL;
7205 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007206 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007208 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209 atomic_set(&rq->nr_iowait, 0);
Christoph Lameter476f3532007-05-06 14:48:58 -07007210 highest_cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211 }
7212
Peter Williams2dd73a42006-06-27 02:54:34 -07007213 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007214
Avi Kivitye107be32007-07-26 13:40:43 +02007215#ifdef CONFIG_PREEMPT_NOTIFIERS
7216 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7217#endif
7218
Christoph Lameterc9819f42006-12-10 02:20:25 -08007219#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07007220 nr_cpu_ids = highest_cpu + 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08007221 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7222#endif
7223
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007224#ifdef CONFIG_RT_MUTEXES
7225 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7226#endif
7227
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228 /*
7229 * The boot idle thread does lazy MMU switching as well:
7230 */
7231 atomic_inc(&init_mm.mm_count);
7232 enter_lazy_tlb(&init_mm, current);
7233
7234 /*
7235 * Make us the idle thread. Technically, schedule() should not be
7236 * called from this thread, however somewhere below it might be,
7237 * but because we are the idle thread, we just pick up running again
7238 * when this runqueue becomes "idle".
7239 */
7240 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02007241 /*
7242 * During early bootup we pretend to be a normal task:
7243 */
7244 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007245
7246 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007247}
7248
7249#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7250void __might_sleep(char *file, int line)
7251{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007252#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007253 static unsigned long prev_jiffy; /* ratelimiting */
7254
7255 if ((in_atomic() || irqs_disabled()) &&
7256 system_state == SYSTEM_RUNNING && !oops_in_progress) {
7257 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7258 return;
7259 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08007260 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007261 " context at %s:%d\n", file, line);
7262 printk("in_atomic():%d, irqs_disabled():%d\n",
7263 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007264 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007265 if (irqs_disabled())
7266 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007267 dump_stack();
7268 }
7269#endif
7270}
7271EXPORT_SYMBOL(__might_sleep);
7272#endif
7273
7274#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007275static void normalize_task(struct rq *rq, struct task_struct *p)
7276{
7277 int on_rq;
7278 update_rq_clock(rq);
7279 on_rq = p->se.on_rq;
7280 if (on_rq)
7281 deactivate_task(rq, p, 0);
7282 __setscheduler(rq, p, SCHED_NORMAL, 0);
7283 if (on_rq) {
7284 activate_task(rq, p, 0);
7285 resched_task(rq->curr);
7286 }
7287}
7288
Linus Torvalds1da177e2005-04-16 15:20:36 -07007289void normalize_rt_tasks(void)
7290{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007291 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007292 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007293 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007295 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007296 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007297 /*
7298 * Only normalize user tasks:
7299 */
7300 if (!p->mm)
7301 continue;
7302
Ingo Molnardd41f592007-07-09 18:51:59 +02007303 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007304#ifdef CONFIG_SCHEDSTATS
7305 p->se.wait_start = 0;
7306 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007307 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007308#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007309 task_rq(p)->clock = 0;
7310
7311 if (!rt_task(p)) {
7312 /*
7313 * Renice negative nice level userspace
7314 * tasks back to 0:
7315 */
7316 if (TASK_NICE(p) < 0 && p->mm)
7317 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007321 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007322 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007323
Ingo Molnar178be792007-10-15 17:00:18 +02007324 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007325
Ingo Molnarb29739f2006-06-27 02:54:51 -07007326 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007327 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007328 } while_each_thread(g, p);
7329
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007330 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007331}
7332
7333#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007334
7335#ifdef CONFIG_IA64
7336/*
7337 * These functions are only useful for the IA64 MCA handling.
7338 *
7339 * They can only be called when the whole system has been
7340 * stopped - every CPU needs to be quiescent, and no scheduling
7341 * activity can take place. Using them for anything else would
7342 * be a serious bug, and as a result, they aren't even visible
7343 * under any other configuration.
7344 */
7345
7346/**
7347 * curr_task - return the current task for a given cpu.
7348 * @cpu: the processor in question.
7349 *
7350 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7351 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007352struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007353{
7354 return cpu_curr(cpu);
7355}
7356
7357/**
7358 * set_curr_task - set the current task for a given cpu.
7359 * @cpu: the processor in question.
7360 * @p: the task pointer to set.
7361 *
7362 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007363 * are serviced on a separate stack. It allows the architecture to switch the
7364 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007365 * must be called with all CPU's synchronized, and interrupts disabled, the
7366 * and caller must save the original value of the current task (see
7367 * curr_task() above) and restore that value before reenabling interrupts and
7368 * re-starting the system.
7369 *
7370 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7371 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007372void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007373{
7374 cpu_curr(cpu) = p;
7375}
7376
7377#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007378
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007379#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007380
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007381#ifdef CONFIG_FAIR_GROUP_SCHED
7382static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007383{
7384 int i;
7385
7386 for_each_possible_cpu(i) {
7387 if (tg->cfs_rq)
7388 kfree(tg->cfs_rq[i]);
7389 if (tg->se)
7390 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007391 }
7392
7393 kfree(tg->cfs_rq);
7394 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007395}
7396
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007397static int alloc_fair_sched_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007398{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007399 struct cfs_rq *cfs_rq;
7400 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007401 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007402 int i;
7403
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007404 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007405 if (!tg->cfs_rq)
7406 goto err;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007407 tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007408 if (!tg->se)
7409 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007410
7411 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007412
7413 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007414 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007415
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007416 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
7417 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007418 if (!cfs_rq)
7419 goto err;
7420
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007421 se = kmalloc_node(sizeof(struct sched_entity),
7422 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007423 if (!se)
7424 goto err;
7425
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007426 init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007427 }
7428
7429 return 1;
7430
7431 err:
7432 return 0;
7433}
7434
7435static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7436{
7437 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
7438 &cpu_rq(cpu)->leaf_cfs_rq_list);
7439}
7440
7441static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7442{
7443 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
7444}
7445#else
7446static inline void free_fair_sched_group(struct task_group *tg)
7447{
7448}
7449
7450static inline int alloc_fair_sched_group(struct task_group *tg)
7451{
7452 return 1;
7453}
7454
7455static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7456{
7457}
7458
7459static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7460{
7461}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007462#endif
7463
7464#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007465static void free_rt_sched_group(struct task_group *tg)
7466{
7467 int i;
7468
7469 for_each_possible_cpu(i) {
7470 if (tg->rt_rq)
7471 kfree(tg->rt_rq[i]);
7472 if (tg->rt_se)
7473 kfree(tg->rt_se[i]);
7474 }
7475
7476 kfree(tg->rt_rq);
7477 kfree(tg->rt_se);
7478}
7479
7480static int alloc_rt_sched_group(struct task_group *tg)
7481{
7482 struct rt_rq *rt_rq;
7483 struct sched_rt_entity *rt_se;
7484 struct rq *rq;
7485 int i;
7486
7487 tg->rt_rq = kzalloc(sizeof(rt_rq) * NR_CPUS, GFP_KERNEL);
7488 if (!tg->rt_rq)
7489 goto err;
7490 tg->rt_se = kzalloc(sizeof(rt_se) * NR_CPUS, GFP_KERNEL);
7491 if (!tg->rt_se)
7492 goto err;
7493
7494 tg->rt_runtime = 0;
7495
7496 for_each_possible_cpu(i) {
7497 rq = cpu_rq(i);
7498
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007499 rt_rq = kmalloc_node(sizeof(struct rt_rq),
7500 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7501 if (!rt_rq)
7502 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007503
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007504 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
7505 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7506 if (!rt_se)
7507 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007508
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007509 init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007510 }
7511
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007512 return 1;
7513
7514 err:
7515 return 0;
7516}
7517
7518static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7519{
7520 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
7521 &cpu_rq(cpu)->leaf_rt_rq_list);
7522}
7523
7524static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7525{
7526 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
7527}
7528#else
7529static inline void free_rt_sched_group(struct task_group *tg)
7530{
7531}
7532
7533static inline int alloc_rt_sched_group(struct task_group *tg)
7534{
7535 return 1;
7536}
7537
7538static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7539{
7540}
7541
7542static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7543{
7544}
7545#endif
7546
7547static void free_sched_group(struct task_group *tg)
7548{
7549 free_fair_sched_group(tg);
7550 free_rt_sched_group(tg);
7551 kfree(tg);
7552}
7553
7554/* allocate runqueue etc for a new task group */
7555struct task_group *sched_create_group(void)
7556{
7557 struct task_group *tg;
7558 unsigned long flags;
7559 int i;
7560
7561 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7562 if (!tg)
7563 return ERR_PTR(-ENOMEM);
7564
7565 if (!alloc_fair_sched_group(tg))
7566 goto err;
7567
7568 if (!alloc_rt_sched_group(tg))
7569 goto err;
7570
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007571 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007572 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007573 register_fair_sched_group(tg, i);
7574 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007575 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007576 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007577 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007578
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007579 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007580
7581err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007582 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007583 return ERR_PTR(-ENOMEM);
7584}
7585
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007586/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007587static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007588{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007589 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007590 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007591}
7592
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007593/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007594void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007595{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007596 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007597 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007598
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007599 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007600 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007601 unregister_fair_sched_group(tg, i);
7602 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007603 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007604 list_del_rcu(&tg->list);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007605 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007606
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007607 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007608 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007609}
7610
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007611/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007612 * The caller of this function should have put the task in its new group
7613 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7614 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007615 */
7616void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007617{
7618 int on_rq, running;
7619 unsigned long flags;
7620 struct rq *rq;
7621
7622 rq = task_rq_lock(tsk, &flags);
7623
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007624 update_rq_clock(rq);
7625
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007626 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007627 on_rq = tsk->se.on_rq;
7628
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007629 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007630 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007631 if (unlikely(running))
7632 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007633
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007634 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007635
Peter Zijlstra810b3812008-02-29 15:21:01 -05007636#ifdef CONFIG_FAIR_GROUP_SCHED
7637 if (tsk->sched_class->moved_group)
7638 tsk->sched_class->moved_group(tsk);
7639#endif
7640
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007641 if (unlikely(running))
7642 tsk->sched_class->set_curr_task(rq);
7643 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02007644 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007645
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007646 task_rq_unlock(rq, &flags);
7647}
7648
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007649#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007650static void set_se_shares(struct sched_entity *se, unsigned long shares)
7651{
7652 struct cfs_rq *cfs_rq = se->cfs_rq;
7653 struct rq *rq = cfs_rq->rq;
7654 int on_rq;
7655
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007656 spin_lock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007657
7658 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007659 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007660 dequeue_entity(cfs_rq, se, 0);
7661
7662 se->load.weight = shares;
7663 se->load.inv_weight = div64_64((1ULL<<32), shares);
7664
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007665 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007666 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007667
7668 spin_unlock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007669}
7670
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007671static DEFINE_MUTEX(shares_mutex);
7672
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007673int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007674{
7675 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007676 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01007677
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007678 /*
7679 * A weight of 0 or 1 can cause arithmetics problems.
7680 * (The default weight is 1024 - so there's no practical
7681 * limitation from this.)
7682 */
7683 if (shares < 2)
7684 shares = 2;
7685
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007686 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007687 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007688 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007689
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007690 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007691 for_each_possible_cpu(i)
7692 unregister_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007693 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007694
7695 /* wait for any ongoing reference to this group to finish */
7696 synchronize_sched();
7697
7698 /*
7699 * Now we are free to modify the group's share on each cpu
7700 * w/o tripping rebalance_share or load_balance_fair.
7701 */
7702 tg->shares = shares;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007703 for_each_possible_cpu(i)
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007704 set_se_shares(tg->se[i], shares);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007705
7706 /*
7707 * Enable load balance activity on this group, by inserting it back on
7708 * each cpu's rq->leaf_cfs_rq_list.
7709 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007710 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007711 for_each_possible_cpu(i)
7712 register_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007713 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007714done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007715 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007716 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007717}
7718
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007719unsigned long sched_group_shares(struct task_group *tg)
7720{
7721 return tg->shares;
7722}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007723#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007724
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007725#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007726/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007727 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007728 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007729static DEFINE_MUTEX(rt_constraints_mutex);
7730
7731static unsigned long to_ratio(u64 period, u64 runtime)
7732{
7733 if (runtime == RUNTIME_INF)
7734 return 1ULL << 16;
7735
Peter Zijlstra2692a242008-02-27 12:00:46 +01007736 return div64_64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007737}
7738
7739static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007740{
7741 struct task_group *tgi;
7742 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007743 unsigned long global_ratio =
7744 to_ratio(sysctl_sched_rt_period,
7745 sysctl_sched_rt_runtime < 0 ?
7746 RUNTIME_INF : sysctl_sched_rt_runtime);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007747
7748 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007749 list_for_each_entry_rcu(tgi, &task_groups, list) {
7750 if (tgi == tg)
7751 continue;
7752
7753 total += to_ratio(period, tgi->rt_runtime);
7754 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007755 rcu_read_unlock();
7756
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007757 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007758}
7759
Dhaval Giani521f1a242008-02-28 15:21:56 +05307760/* Must be called with tasklist_lock held */
7761static inline int tg_has_rt_tasks(struct task_group *tg)
7762{
7763 struct task_struct *g, *p;
7764 do_each_thread(g, p) {
7765 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
7766 return 1;
7767 } while_each_thread(g, p);
7768 return 0;
7769}
7770
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007771int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007772{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007773 u64 rt_runtime, rt_period;
7774 int err = 0;
7775
Peter Zijlstra2692a242008-02-27 12:00:46 +01007776 rt_period = (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007777 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7778 if (rt_runtime_us == -1)
Peter Zijlstra2692a242008-02-27 12:00:46 +01007779 rt_runtime = RUNTIME_INF;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007780
7781 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05307782 read_lock(&tasklist_lock);
7783 if (rt_runtime_us == 0 && tg_has_rt_tasks(tg)) {
7784 err = -EBUSY;
7785 goto unlock;
7786 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007787 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
7788 err = -EINVAL;
7789 goto unlock;
7790 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007791 tg->rt_runtime = rt_runtime;
7792 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05307793 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007794 mutex_unlock(&rt_constraints_mutex);
7795
7796 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007797}
7798
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007799long sched_group_rt_runtime(struct task_group *tg)
7800{
7801 u64 rt_runtime_us;
7802
7803 if (tg->rt_runtime == RUNTIME_INF)
7804 return -1;
7805
7806 rt_runtime_us = tg->rt_runtime;
7807 do_div(rt_runtime_us, NSEC_PER_USEC);
7808 return rt_runtime_us;
7809}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007810#endif
7811#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007812
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007813#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007814
7815/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007816static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007817{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007818 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
7819 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007820}
7821
7822static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02007823cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007824{
7825 struct task_group *tg;
7826
Paul Menage2b01dfe2007-10-24 18:23:50 +02007827 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007828 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007829 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007830 return &init_task_group.css;
7831 }
7832
7833 /* we support only 1-level deep hierarchical scheduler atm */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007834 if (cgrp->parent->parent)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007835 return ERR_PTR(-EINVAL);
7836
7837 tg = sched_create_group();
7838 if (IS_ERR(tg))
7839 return ERR_PTR(-ENOMEM);
7840
7841 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007842 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007843
7844 return &tg->css;
7845}
7846
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007847static void
7848cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007849{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007850 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007851
7852 sched_destroy_group(tg);
7853}
7854
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007855static int
7856cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
7857 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007858{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007859#ifdef CONFIG_RT_GROUP_SCHED
7860 /* Don't accept realtime tasks when there is no way for them to run */
7861 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_runtime == 0)
7862 return -EINVAL;
7863#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007864 /* We don't support RT-tasks being in separate groups */
7865 if (tsk->sched_class != &fair_sched_class)
7866 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007867#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007868
7869 return 0;
7870}
7871
7872static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02007873cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007874 struct cgroup *old_cont, struct task_struct *tsk)
7875{
7876 sched_move_task(tsk);
7877}
7878
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007879#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menage2b01dfe2007-10-24 18:23:50 +02007880static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
7881 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007882{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007883 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007884}
7885
Paul Menage2b01dfe2007-10-24 18:23:50 +02007886static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007887{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007888 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007889
7890 return (u64) tg->shares;
7891}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007892#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007893
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007894#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007895static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
7896 struct file *file,
7897 const char __user *userbuf,
7898 size_t nbytes, loff_t *unused_ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007899{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007900 char buffer[64];
7901 int retval = 0;
7902 s64 val;
7903 char *end;
7904
7905 if (!nbytes)
7906 return -EINVAL;
7907 if (nbytes >= sizeof(buffer))
7908 return -E2BIG;
7909 if (copy_from_user(buffer, userbuf, nbytes))
7910 return -EFAULT;
7911
7912 buffer[nbytes] = 0; /* nul-terminate */
7913
7914 /* strip newline if necessary */
7915 if (nbytes && (buffer[nbytes-1] == '\n'))
7916 buffer[nbytes-1] = 0;
7917 val = simple_strtoll(buffer, &end, 0);
7918 if (*end)
7919 return -EINVAL;
7920
7921 /* Pass to subsystem */
7922 retval = sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
7923 if (!retval)
7924 retval = nbytes;
7925 return retval;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007926}
7927
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007928static ssize_t cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft,
7929 struct file *file,
7930 char __user *buf, size_t nbytes,
7931 loff_t *ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007932{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007933 char tmp[64];
7934 long val = sched_group_rt_runtime(cgroup_tg(cgrp));
7935 int len = sprintf(tmp, "%ld\n", val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007936
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007937 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007938}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007939#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007940
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007941static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007942#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007943 {
7944 .name = "shares",
7945 .read_uint = cpu_shares_read_uint,
7946 .write_uint = cpu_shares_write_uint,
7947 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007948#endif
7949#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007950 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007951 .name = "rt_runtime_us",
7952 .read = cpu_rt_runtime_read,
7953 .write = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007954 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007955#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007956};
7957
7958static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
7959{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007960 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007961}
7962
7963struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01007964 .name = "cpu",
7965 .create = cpu_cgroup_create,
7966 .destroy = cpu_cgroup_destroy,
7967 .can_attach = cpu_cgroup_can_attach,
7968 .attach = cpu_cgroup_attach,
7969 .populate = cpu_cgroup_populate,
7970 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007971 .early_init = 1,
7972};
7973
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007974#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01007975
7976#ifdef CONFIG_CGROUP_CPUACCT
7977
7978/*
7979 * CPU accounting code for task groups.
7980 *
7981 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
7982 * (balbir@in.ibm.com).
7983 */
7984
7985/* track cpu usage of a group of tasks */
7986struct cpuacct {
7987 struct cgroup_subsys_state css;
7988 /* cpuusage holds pointer to a u64-type object on every cpu */
7989 u64 *cpuusage;
7990};
7991
7992struct cgroup_subsys cpuacct_subsys;
7993
7994/* return cpu accounting group corresponding to this container */
7995static inline struct cpuacct *cgroup_ca(struct cgroup *cont)
7996{
7997 return container_of(cgroup_subsys_state(cont, cpuacct_subsys_id),
7998 struct cpuacct, css);
7999}
8000
8001/* return cpu accounting group to which this task belongs */
8002static inline struct cpuacct *task_ca(struct task_struct *tsk)
8003{
8004 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
8005 struct cpuacct, css);
8006}
8007
8008/* create a new cpu accounting group */
8009static struct cgroup_subsys_state *cpuacct_create(
8010 struct cgroup_subsys *ss, struct cgroup *cont)
8011{
8012 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
8013
8014 if (!ca)
8015 return ERR_PTR(-ENOMEM);
8016
8017 ca->cpuusage = alloc_percpu(u64);
8018 if (!ca->cpuusage) {
8019 kfree(ca);
8020 return ERR_PTR(-ENOMEM);
8021 }
8022
8023 return &ca->css;
8024}
8025
8026/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008027static void
8028cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008029{
8030 struct cpuacct *ca = cgroup_ca(cont);
8031
8032 free_percpu(ca->cpuusage);
8033 kfree(ca);
8034}
8035
8036/* return total cpu usage (in nanoseconds) of a group */
8037static u64 cpuusage_read(struct cgroup *cont, struct cftype *cft)
8038{
8039 struct cpuacct *ca = cgroup_ca(cont);
8040 u64 totalcpuusage = 0;
8041 int i;
8042
8043 for_each_possible_cpu(i) {
8044 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8045
8046 /*
8047 * Take rq->lock to make 64-bit addition safe on 32-bit
8048 * platforms.
8049 */
8050 spin_lock_irq(&cpu_rq(i)->lock);
8051 totalcpuusage += *cpuusage;
8052 spin_unlock_irq(&cpu_rq(i)->lock);
8053 }
8054
8055 return totalcpuusage;
8056}
8057
8058static struct cftype files[] = {
8059 {
8060 .name = "usage",
8061 .read_uint = cpuusage_read,
8062 },
8063};
8064
8065static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8066{
8067 return cgroup_add_files(cont, ss, files, ARRAY_SIZE(files));
8068}
8069
8070/*
8071 * charge this task's execution time to its accounting group.
8072 *
8073 * called with rq->lock held.
8074 */
8075static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
8076{
8077 struct cpuacct *ca;
8078
8079 if (!cpuacct_subsys.active)
8080 return;
8081
8082 ca = task_ca(tsk);
8083 if (ca) {
8084 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
8085
8086 *cpuusage += cputime;
8087 }
8088}
8089
8090struct cgroup_subsys cpuacct_subsys = {
8091 .name = "cpuacct",
8092 .create = cpuacct_create,
8093 .destroy = cpuacct_destroy,
8094 .populate = cpuacct_populate,
8095 .subsys_id = cpuacct_subsys_id,
8096};
8097#endif /* CONFIG_CGROUP_CPUACCT */