blob: 3f7c5eb254e205c24bc95bf5ac264e28d918d9b8 [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,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100597 SCHED_FEAT_TREE_AVG = 8,
598 SCHED_FEAT_APPROX_AVG = 16,
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100599 SCHED_FEAT_HRTICK = 32,
600 SCHED_FEAT_DOUBLE_TICK = 64,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200601};
602
603const_debug unsigned int sysctl_sched_features =
Ingo Molnar8401f772007-10-18 21:32:55 +0200604 SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 |
Ingo Molnar96126332007-11-15 20:57:40 +0100605 SCHED_FEAT_WAKEUP_PREEMPT * 1 |
Ingo Molnar8401f772007-10-18 21:32:55 +0200606 SCHED_FEAT_START_DEBIT * 1 |
607 SCHED_FEAT_TREE_AVG * 0 |
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100608 SCHED_FEAT_APPROX_AVG * 0 |
609 SCHED_FEAT_HRTICK * 1 |
610 SCHED_FEAT_DOUBLE_TICK * 0;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200611
612#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
613
614/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100615 * Number of tasks to iterate in a single balance run.
616 * Limited because this is done with IRQs disabled.
617 */
618const_debug unsigned int sysctl_sched_nr_migrate = 32;
619
620/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100621 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100622 * default: 1s
623 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100624unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100625
Ingo Molnar6892b752008-02-13 14:02:36 +0100626static __read_mostly int scheduler_running;
627
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100628/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100629 * part of the period that we allow rt tasks to run in us.
630 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100631 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100632int sysctl_sched_rt_runtime = 950000;
633
634/*
635 * single value that denotes runtime == period, ie unlimited time.
636 */
637#define RUNTIME_INF ((u64)~0ULL)
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100638
639/*
Ingo Molnare436d802007-07-19 21:28:35 +0200640 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
641 * clock constructed from sched_clock():
642 */
643unsigned long long cpu_clock(int cpu)
644{
Ingo Molnare436d802007-07-19 21:28:35 +0200645 unsigned long long now;
646 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200647 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200648
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100649 /*
650 * Only call sched_clock() if the scheduler has already been
651 * initialized (some code might call cpu_clock() very early):
652 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100653 if (unlikely(!scheduler_running))
654 return 0;
655
656 local_irq_save(flags);
657 rq = cpu_rq(cpu);
658 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200659 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200660 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200661
662 return now;
663}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200664EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700667# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700669#ifndef finish_arch_switch
670# define finish_arch_switch(prev) do { } while (0)
671#endif
672
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100673static inline int task_current(struct rq *rq, struct task_struct *p)
674{
675 return rq->curr == p;
676}
677
Nick Piggin4866cde2005-06-25 14:57:23 -0700678#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700679static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700680{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100681 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700682}
683
Ingo Molnar70b97a72006-07-03 00:25:42 -0700684static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700685{
686}
687
Ingo Molnar70b97a72006-07-03 00:25:42 -0700688static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700689{
Ingo Molnarda04c032005-09-13 11:17:59 +0200690#ifdef CONFIG_DEBUG_SPINLOCK
691 /* this is a valid case when another task releases the spinlock */
692 rq->lock.owner = current;
693#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700694 /*
695 * If we are tracking spinlock dependencies then we have to
696 * fix up the runqueue lock - which gets 'carried over' from
697 * prev into current:
698 */
699 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
700
Nick Piggin4866cde2005-06-25 14:57:23 -0700701 spin_unlock_irq(&rq->lock);
702}
703
704#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700705static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700706{
707#ifdef CONFIG_SMP
708 return p->oncpu;
709#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100710 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700711#endif
712}
713
Ingo Molnar70b97a72006-07-03 00:25:42 -0700714static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700715{
716#ifdef CONFIG_SMP
717 /*
718 * We can optimise this out completely for !SMP, because the
719 * SMP rebalancing from interrupt is the only thing that cares
720 * here.
721 */
722 next->oncpu = 1;
723#endif
724#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
725 spin_unlock_irq(&rq->lock);
726#else
727 spin_unlock(&rq->lock);
728#endif
729}
730
Ingo Molnar70b97a72006-07-03 00:25:42 -0700731static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700732{
733#ifdef CONFIG_SMP
734 /*
735 * After ->oncpu is cleared, the task can be moved to a different CPU.
736 * We must ensure this doesn't happen until the switch is completely
737 * finished.
738 */
739 smp_wmb();
740 prev->oncpu = 0;
741#endif
742#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
743 local_irq_enable();
744#endif
745}
746#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700749 * __task_rq_lock - lock the runqueue a given task resides on.
750 * Must be called interrupts disabled.
751 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700752static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700753 __acquires(rq->lock)
754{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200755 for (;;) {
756 struct rq *rq = task_rq(p);
757 spin_lock(&rq->lock);
758 if (likely(rq == task_rq(p)))
759 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700760 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700761 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700762}
763
764/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100766 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 * explicitly disabling preemption.
768 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700769static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 __acquires(rq->lock)
771{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700772 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Andi Kleen3a5c3592007-10-15 17:00:14 +0200774 for (;;) {
775 local_irq_save(*flags);
776 rq = task_rq(p);
777 spin_lock(&rq->lock);
778 if (likely(rq == task_rq(p)))
779 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Alexey Dobriyana9957442007-10-15 17:00:13 +0200784static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700785 __releases(rq->lock)
786{
787 spin_unlock(&rq->lock);
788}
789
Ingo Molnar70b97a72006-07-03 00:25:42 -0700790static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 __releases(rq->lock)
792{
793 spin_unlock_irqrestore(&rq->lock, *flags);
794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800797 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200799static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 __acquires(rq->lock)
801{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700802 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 local_irq_disable();
805 rq = this_rq();
806 spin_lock(&rq->lock);
807
808 return rq;
809}
810
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200811/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200812 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200813 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200814void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200815{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200816 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200817
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200818 spin_lock(&rq->lock);
819 __update_rq_clock(rq);
820 spin_unlock(&rq->lock);
821 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200822}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200823EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
824
825/*
826 * We just idled delta nanoseconds (called with irqs disabled):
827 */
828void sched_clock_idle_wakeup_event(u64 delta_ns)
829{
830 struct rq *rq = cpu_rq(smp_processor_id());
831 u64 now = sched_clock();
832
833 rq->idle_clock += delta_ns;
834 /*
835 * Override the previous timestamp and ignore all
836 * sched_clock() deltas that occured while we idled,
837 * and use the PM-provided delta_ns to advance the
838 * rq clock:
839 */
840 spin_lock(&rq->lock);
841 rq->prev_clock_raw = now;
842 rq->clock += delta_ns;
843 spin_unlock(&rq->lock);
Guillaume Chazarain782daee2008-01-25 21:08:33 +0100844 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200845}
846EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200847
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100848static void __resched_task(struct task_struct *p, int tif_bit);
849
850static inline void resched_task(struct task_struct *p)
851{
852 __resched_task(p, TIF_NEED_RESCHED);
853}
854
855#ifdef CONFIG_SCHED_HRTICK
856/*
857 * Use HR-timers to deliver accurate preemption points.
858 *
859 * Its all a bit involved since we cannot program an hrt while holding the
860 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
861 * reschedule event.
862 *
863 * When we get rescheduled we reprogram the hrtick_timer outside of the
864 * rq->lock.
865 */
866static inline void resched_hrt(struct task_struct *p)
867{
868 __resched_task(p, TIF_HRTICK_RESCHED);
869}
870
871static inline void resched_rq(struct rq *rq)
872{
873 unsigned long flags;
874
875 spin_lock_irqsave(&rq->lock, flags);
876 resched_task(rq->curr);
877 spin_unlock_irqrestore(&rq->lock, flags);
878}
879
880enum {
881 HRTICK_SET, /* re-programm hrtick_timer */
882 HRTICK_RESET, /* not a new slice */
883};
884
885/*
886 * Use hrtick when:
887 * - enabled by features
888 * - hrtimer is actually high res
889 */
890static inline int hrtick_enabled(struct rq *rq)
891{
892 if (!sched_feat(HRTICK))
893 return 0;
894 return hrtimer_is_hres_active(&rq->hrtick_timer);
895}
896
897/*
898 * Called to set the hrtick timer state.
899 *
900 * called with rq->lock held and irqs disabled
901 */
902static void hrtick_start(struct rq *rq, u64 delay, int reset)
903{
904 assert_spin_locked(&rq->lock);
905
906 /*
907 * preempt at: now + delay
908 */
909 rq->hrtick_expire =
910 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
911 /*
912 * indicate we need to program the timer
913 */
914 __set_bit(HRTICK_SET, &rq->hrtick_flags);
915 if (reset)
916 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
917
918 /*
919 * New slices are called from the schedule path and don't need a
920 * forced reschedule.
921 */
922 if (reset)
923 resched_hrt(rq->curr);
924}
925
926static void hrtick_clear(struct rq *rq)
927{
928 if (hrtimer_active(&rq->hrtick_timer))
929 hrtimer_cancel(&rq->hrtick_timer);
930}
931
932/*
933 * Update the timer from the possible pending state.
934 */
935static void hrtick_set(struct rq *rq)
936{
937 ktime_t time;
938 int set, reset;
939 unsigned long flags;
940
941 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
942
943 spin_lock_irqsave(&rq->lock, flags);
944 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
945 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
946 time = rq->hrtick_expire;
947 clear_thread_flag(TIF_HRTICK_RESCHED);
948 spin_unlock_irqrestore(&rq->lock, flags);
949
950 if (set) {
951 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
952 if (reset && !hrtimer_active(&rq->hrtick_timer))
953 resched_rq(rq);
954 } else
955 hrtick_clear(rq);
956}
957
958/*
959 * High-resolution timer tick.
960 * Runs from hardirq context with interrupts disabled.
961 */
962static enum hrtimer_restart hrtick(struct hrtimer *timer)
963{
964 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
965
966 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
967
968 spin_lock(&rq->lock);
969 __update_rq_clock(rq);
970 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
971 spin_unlock(&rq->lock);
972
973 return HRTIMER_NORESTART;
974}
975
976static inline void init_rq_hrtick(struct rq *rq)
977{
978 rq->hrtick_flags = 0;
979 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
980 rq->hrtick_timer.function = hrtick;
981 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
982}
983
984void hrtick_resched(void)
985{
986 struct rq *rq;
987 unsigned long flags;
988
989 if (!test_thread_flag(TIF_HRTICK_RESCHED))
990 return;
991
992 local_irq_save(flags);
993 rq = cpu_rq(smp_processor_id());
994 hrtick_set(rq);
995 local_irq_restore(flags);
996}
997#else
998static inline void hrtick_clear(struct rq *rq)
999{
1000}
1001
1002static inline void hrtick_set(struct rq *rq)
1003{
1004}
1005
1006static inline void init_rq_hrtick(struct rq *rq)
1007{
1008}
1009
1010void hrtick_resched(void)
1011{
1012}
1013#endif
1014
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001015/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001016 * resched_task - mark a task 'to be rescheduled now'.
1017 *
1018 * On UP this means the setting of the need_resched flag, on SMP it
1019 * might also involve a cross-CPU call to trigger the scheduler on
1020 * the target CPU.
1021 */
1022#ifdef CONFIG_SMP
1023
1024#ifndef tsk_is_polling
1025#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1026#endif
1027
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001028static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001029{
1030 int cpu;
1031
1032 assert_spin_locked(&task_rq(p)->lock);
1033
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001034 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001035 return;
1036
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001037 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001038
1039 cpu = task_cpu(p);
1040 if (cpu == smp_processor_id())
1041 return;
1042
1043 /* NEED_RESCHED must be visible before we test polling */
1044 smp_mb();
1045 if (!tsk_is_polling(p))
1046 smp_send_reschedule(cpu);
1047}
1048
1049static void resched_cpu(int cpu)
1050{
1051 struct rq *rq = cpu_rq(cpu);
1052 unsigned long flags;
1053
1054 if (!spin_trylock_irqsave(&rq->lock, flags))
1055 return;
1056 resched_task(cpu_curr(cpu));
1057 spin_unlock_irqrestore(&rq->lock, flags);
1058}
1059#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001060static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001061{
1062 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001063 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001064}
1065#endif
1066
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001067#if BITS_PER_LONG == 32
1068# define WMULT_CONST (~0UL)
1069#else
1070# define WMULT_CONST (1UL << 32)
1071#endif
1072
1073#define WMULT_SHIFT 32
1074
Ingo Molnar194081e2007-08-09 11:16:51 +02001075/*
1076 * Shift right and round:
1077 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001078#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001079
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001080static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001081calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1082 struct load_weight *lw)
1083{
1084 u64 tmp;
1085
1086 if (unlikely(!lw->inv_weight))
Ingo Molnar27d11722008-03-14 22:20:01 +01001087 lw->inv_weight = (WMULT_CONST-lw->weight/2) / (lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001088
1089 tmp = (u64)delta_exec * weight;
1090 /*
1091 * Check whether we'd overflow the 64-bit multiplication:
1092 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001093 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001094 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001095 WMULT_SHIFT/2);
1096 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001097 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001098
Ingo Molnarecf691d2007-08-02 17:41:40 +02001099 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001100}
1101
1102static inline unsigned long
1103calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
1104{
1105 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
1106}
1107
Ingo Molnar10919852007-10-15 17:00:04 +02001108static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001109{
1110 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001111 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001112}
1113
Ingo Molnar10919852007-10-15 17:00:04 +02001114static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001115{
1116 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001117 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001118}
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001121 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1122 * of tasks with abnormal "nice" values across CPUs the contribution that
1123 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001124 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001125 * scaled version of the new time slice allocation that they receive on time
1126 * slice expiry etc.
1127 */
1128
Ingo Molnardd41f592007-07-09 18:51:59 +02001129#define WEIGHT_IDLEPRIO 2
1130#define WMULT_IDLEPRIO (1 << 31)
1131
1132/*
1133 * Nice levels are multiplicative, with a gentle 10% change for every
1134 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1135 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1136 * that remained on nice 0.
1137 *
1138 * The "10% effect" is relative and cumulative: from _any_ nice level,
1139 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001140 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1141 * If a task goes up by ~10% and another task goes down by ~10% then
1142 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001143 */
1144static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001145 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1146 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1147 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1148 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1149 /* 0 */ 1024, 820, 655, 526, 423,
1150 /* 5 */ 335, 272, 215, 172, 137,
1151 /* 10 */ 110, 87, 70, 56, 45,
1152 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001153};
1154
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001155/*
1156 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1157 *
1158 * In cases where the weight does not change often, we can use the
1159 * precalculated inverse to speed up arithmetics by turning divisions
1160 * into multiplications:
1161 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001162static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001163 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1164 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1165 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1166 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1167 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1168 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1169 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1170 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001171};
Peter Williams2dd73a42006-06-27 02:54:34 -07001172
Ingo Molnardd41f592007-07-09 18:51:59 +02001173static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1174
1175/*
1176 * runqueue iterator, to support SMP load-balancing between different
1177 * scheduling classes, without having to expose their internal data
1178 * structures to the load-balancing proper:
1179 */
1180struct rq_iterator {
1181 void *arg;
1182 struct task_struct *(*start)(void *);
1183 struct task_struct *(*next)(void *);
1184};
1185
Peter Williamse1d14842007-10-24 18:23:51 +02001186#ifdef CONFIG_SMP
1187static unsigned long
1188balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1189 unsigned long max_load_move, struct sched_domain *sd,
1190 enum cpu_idle_type idle, int *all_pinned,
1191 int *this_best_prio, struct rq_iterator *iterator);
1192
1193static int
1194iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1195 struct sched_domain *sd, enum cpu_idle_type idle,
1196 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001197#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001198
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001199#ifdef CONFIG_CGROUP_CPUACCT
1200static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1201#else
1202static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1203#endif
1204
Gregory Haskinse7693a32008-01-25 21:08:09 +01001205#ifdef CONFIG_SMP
1206static unsigned long source_load(int cpu, int type);
1207static unsigned long target_load(int cpu, int type);
1208static unsigned long cpu_avg_load_per_task(int cpu);
1209static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
1210#endif /* CONFIG_SMP */
1211
Ingo Molnardd41f592007-07-09 18:51:59 +02001212#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001213#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001214#include "sched_fair.c"
1215#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001216#ifdef CONFIG_SCHED_DEBUG
1217# include "sched_debug.c"
1218#endif
1219
1220#define sched_class_highest (&rt_sched_class)
1221
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001222static inline void inc_load(struct rq *rq, const struct task_struct *p)
Ingo Molnar9c217242007-08-02 17:41:40 +02001223{
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001224 update_load_add(&rq->load, p->se.load.weight);
Ingo Molnar9c217242007-08-02 17:41:40 +02001225}
1226
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001227static inline void dec_load(struct rq *rq, const struct task_struct *p)
1228{
1229 update_load_sub(&rq->load, p->se.load.weight);
1230}
1231
1232static void inc_nr_running(struct task_struct *p, struct rq *rq)
1233{
1234 rq->nr_running++;
1235 inc_load(rq, p);
1236}
1237
1238static void dec_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001239{
1240 rq->nr_running--;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001241 dec_load(rq, p);
Ingo Molnar9c217242007-08-02 17:41:40 +02001242}
1243
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001244static void set_load_weight(struct task_struct *p)
1245{
1246 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001247 p->se.load.weight = prio_to_weight[0] * 2;
1248 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1249 return;
1250 }
1251
1252 /*
1253 * SCHED_IDLE tasks get minimal weight:
1254 */
1255 if (p->policy == SCHED_IDLE) {
1256 p->se.load.weight = WEIGHT_IDLEPRIO;
1257 p->se.load.inv_weight = WMULT_IDLEPRIO;
1258 return;
1259 }
1260
1261 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1262 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001263}
1264
Ingo Molnar8159f872007-08-09 11:16:49 +02001265static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001266{
1267 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001268 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001269 p->se.on_rq = 1;
1270}
1271
Ingo Molnar69be72c2007-08-09 11:16:49 +02001272static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001273{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001274 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001275 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001276}
1277
1278/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001279 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001280 */
Ingo Molnar14531182007-07-09 18:51:59 +02001281static inline int __normal_prio(struct task_struct *p)
1282{
Ingo Molnardd41f592007-07-09 18:51:59 +02001283 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001284}
1285
1286/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001287 * Calculate the expected normal priority: i.e. priority
1288 * without taking RT-inheritance into account. Might be
1289 * boosted by interactivity modifiers. Changes upon fork,
1290 * setprio syscalls, and whenever the interactivity
1291 * estimator recalculates.
1292 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001293static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001294{
1295 int prio;
1296
Ingo Molnare05606d2007-07-09 18:51:59 +02001297 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001298 prio = MAX_RT_PRIO-1 - p->rt_priority;
1299 else
1300 prio = __normal_prio(p);
1301 return prio;
1302}
1303
1304/*
1305 * Calculate the current priority, i.e. the priority
1306 * taken into account by the scheduler. This value might
1307 * be boosted by RT tasks, or might be boosted by
1308 * interactivity modifiers. Will be RT if the task got
1309 * RT-boosted. If not then it returns p->normal_prio.
1310 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001311static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001312{
1313 p->normal_prio = normal_prio(p);
1314 /*
1315 * If we are RT tasks or we were boosted to RT priority,
1316 * keep the priority unchanged. Otherwise, update priority
1317 * to the normal priority:
1318 */
1319 if (!rt_prio(p->prio))
1320 return p->normal_prio;
1321 return p->prio;
1322}
1323
1324/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001325 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001327static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001329 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001330 rq->nr_uninterruptible--;
1331
Ingo Molnar8159f872007-08-09 11:16:49 +02001332 enqueue_task(rq, p, wakeup);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001333 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
1336/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 * deactivate_task - remove a task from the runqueue.
1338 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001339static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001341 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001342 rq->nr_uninterruptible++;
1343
Ingo Molnar69be72c2007-08-09 11:16:49 +02001344 dequeue_task(rq, p, sleep);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001345 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348/**
1349 * task_curr - is this task currently executing on a CPU?
1350 * @p: the task in question.
1351 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001352inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
1354 return cpu_curr(task_cpu(p)) == p;
1355}
1356
Peter Williams2dd73a42006-06-27 02:54:34 -07001357/* Used instead of source_load when we know the type == 0 */
1358unsigned long weighted_cpuload(const int cpu)
1359{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001360 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001361}
1362
1363static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1364{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001365 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001366#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001367 /*
1368 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1369 * successfuly executed on another CPU. We must ensure that updates of
1370 * per-task data have been completed by this moment.
1371 */
1372 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001373 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001374#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001375}
1376
Steven Rostedtcb469842008-01-25 21:08:22 +01001377static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1378 const struct sched_class *prev_class,
1379 int oldprio, int running)
1380{
1381 if (prev_class != p->sched_class) {
1382 if (prev_class->switched_from)
1383 prev_class->switched_from(rq, p, running);
1384 p->sched_class->switched_to(rq, p, running);
1385 } else
1386 p->sched_class->prio_changed(rq, p, oldprio, running);
1387}
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001390
Ingo Molnarcc367732007-10-15 17:00:18 +02001391/*
1392 * Is this task likely cache-hot:
1393 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001394static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001395task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1396{
1397 s64 delta;
1398
Ingo Molnarf540a602008-03-15 17:10:34 +01001399 /*
1400 * Buddy candidates are cache hot:
1401 */
1402 if (&p->se == cfs_rq_of(&p->se)->next)
1403 return 1;
1404
Ingo Molnarcc367732007-10-15 17:00:18 +02001405 if (p->sched_class != &fair_sched_class)
1406 return 0;
1407
Ingo Molnar6bc16652007-10-15 17:00:18 +02001408 if (sysctl_sched_migration_cost == -1)
1409 return 1;
1410 if (sysctl_sched_migration_cost == 0)
1411 return 0;
1412
Ingo Molnarcc367732007-10-15 17:00:18 +02001413 delta = now - p->se.exec_start;
1414
1415 return delta < (s64)sysctl_sched_migration_cost;
1416}
1417
1418
Ingo Molnardd41f592007-07-09 18:51:59 +02001419void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001420{
Ingo Molnardd41f592007-07-09 18:51:59 +02001421 int old_cpu = task_cpu(p);
1422 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001423 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1424 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001425 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001426
1427 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001428
1429#ifdef CONFIG_SCHEDSTATS
1430 if (p->se.wait_start)
1431 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001432 if (p->se.sleep_start)
1433 p->se.sleep_start -= clock_offset;
1434 if (p->se.block_start)
1435 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001436 if (old_cpu != new_cpu) {
1437 schedstat_inc(p, se.nr_migrations);
1438 if (task_hot(p, old_rq->clock, NULL))
1439 schedstat_inc(p, se.nr_forced2_migrations);
1440 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001441#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001442 p->se.vruntime -= old_cfsrq->min_vruntime -
1443 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001444
1445 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001446}
1447
Ingo Molnar70b97a72006-07-03 00:25:42 -07001448struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Ingo Molnar36c8b582006-07-03 00:25:41 -07001451 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 int dest_cpu;
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001455};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457/*
1458 * The task's runqueue lock must be held.
1459 * Returns true if you have to wait for migration thread.
1460 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001461static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001462migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001464 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 /*
1467 * If the task is not on a runqueue (and not running), then
1468 * it is sufficient to simply update the task's cpu field.
1469 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001470 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 set_task_cpu(p, dest_cpu);
1472 return 0;
1473 }
1474
1475 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 req->task = p;
1477 req->dest_cpu = dest_cpu;
1478 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return 1;
1481}
1482
1483/*
1484 * wait_task_inactive - wait for a thread to unschedule.
1485 *
1486 * The caller must ensure that the task *will* unschedule sometime soon,
1487 * else this function might spin for a *long* time. This function can't
1488 * be called with interrupts off, or it may introduce deadlock with
1489 * smp_call_function() if an IPI is sent by the same process we are
1490 * waiting to become inactive.
1491 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001492void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
1494 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001495 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001496 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Andi Kleen3a5c3592007-10-15 17:00:14 +02001498 for (;;) {
1499 /*
1500 * We do the initial early heuristics without holding
1501 * any task-queue locks at all. We'll only try to get
1502 * the runqueue lock when things look like they will
1503 * work out!
1504 */
1505 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001506
Andi Kleen3a5c3592007-10-15 17:00:14 +02001507 /*
1508 * If the task is actively running on another CPU
1509 * still, just relax and busy-wait without holding
1510 * any locks.
1511 *
1512 * NOTE! Since we don't hold any locks, it's not
1513 * even sure that "rq" stays as the right runqueue!
1514 * But we don't care, since "task_running()" will
1515 * return false if the runqueue has changed and p
1516 * is actually now running somewhere else!
1517 */
1518 while (task_running(rq, p))
1519 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001520
Andi Kleen3a5c3592007-10-15 17:00:14 +02001521 /*
1522 * Ok, time to look more closely! We need the rq
1523 * lock now, to be *sure*. If we're wrong, we'll
1524 * just go back and repeat.
1525 */
1526 rq = task_rq_lock(p, &flags);
1527 running = task_running(rq, p);
1528 on_rq = p->se.on_rq;
1529 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001530
Andi Kleen3a5c3592007-10-15 17:00:14 +02001531 /*
1532 * Was it really running after all now that we
1533 * checked with the proper locks actually held?
1534 *
1535 * Oops. Go back and try again..
1536 */
1537 if (unlikely(running)) {
1538 cpu_relax();
1539 continue;
1540 }
1541
1542 /*
1543 * It's not enough that it's not actively running,
1544 * it must be off the runqueue _entirely_, and not
1545 * preempted!
1546 *
1547 * So if it wa still runnable (but just not actively
1548 * running right now), it's preempted, and we should
1549 * yield - it could be a while.
1550 */
1551 if (unlikely(on_rq)) {
1552 schedule_timeout_uninterruptible(1);
1553 continue;
1554 }
1555
1556 /*
1557 * Ahh, all good. It wasn't running, and it wasn't
1558 * runnable, which means that it will never become
1559 * running in the future either. We're all done!
1560 */
1561 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
1565/***
1566 * kick_process - kick a running thread to enter/exit the kernel
1567 * @p: the to-be-kicked thread
1568 *
1569 * Cause a process which is running on another CPU to enter
1570 * kernel-mode, without any delay. (to get signals handled.)
1571 *
1572 * NOTE: this function doesnt have to take the runqueue lock,
1573 * because all it wants to ensure is that the remote task enters
1574 * the kernel. If the IPI races and the task has been migrated
1575 * to another CPU then no harm is done and the purpose has been
1576 * achieved as well.
1577 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001578void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 int cpu;
1581
1582 preempt_disable();
1583 cpu = task_cpu(p);
1584 if ((cpu != smp_processor_id()) && task_curr(p))
1585 smp_send_reschedule(cpu);
1586 preempt_enable();
1587}
1588
1589/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001590 * Return a low guess at the load of a migration-source cpu weighted
1591 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 *
1593 * We want to under-estimate the load of migration sources, to
1594 * balance conservatively.
1595 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001596static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001597{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001598 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001599 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001600
Peter Williams2dd73a42006-06-27 02:54:34 -07001601 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001602 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001603
Ingo Molnardd41f592007-07-09 18:51:59 +02001604 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
1606
1607/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001608 * Return a high guess at the load of a migration-target cpu weighted
1609 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001611static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001612{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001613 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001614 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001615
Peter Williams2dd73a42006-06-27 02:54:34 -07001616 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001617 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001618
Ingo Molnardd41f592007-07-09 18:51:59 +02001619 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001620}
1621
1622/*
1623 * Return the average load per task on the cpu's run queue
1624 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001625static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07001626{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001627 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001628 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001629 unsigned long n = rq->nr_running;
1630
Ingo Molnardd41f592007-07-09 18:51:59 +02001631 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
Nick Piggin147cbb42005-06-25 14:57:19 -07001634/*
1635 * find_idlest_group finds and returns the least busy CPU group within the
1636 * domain.
1637 */
1638static struct sched_group *
1639find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1640{
1641 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1642 unsigned long min_load = ULONG_MAX, this_load = 0;
1643 int load_idx = sd->forkexec_idx;
1644 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1645
1646 do {
1647 unsigned long load, avg_load;
1648 int local_group;
1649 int i;
1650
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001651 /* Skip over this group if it has no CPUs allowed */
1652 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001653 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001654
Nick Piggin147cbb42005-06-25 14:57:19 -07001655 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001656
1657 /* Tally up the load of all CPUs in the group */
1658 avg_load = 0;
1659
1660 for_each_cpu_mask(i, group->cpumask) {
1661 /* Bias balancing toward cpus of our domain */
1662 if (local_group)
1663 load = source_load(i, load_idx);
1664 else
1665 load = target_load(i, load_idx);
1666
1667 avg_load += load;
1668 }
1669
1670 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001671 avg_load = sg_div_cpu_power(group,
1672 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001673
1674 if (local_group) {
1675 this_load = avg_load;
1676 this = group;
1677 } else if (avg_load < min_load) {
1678 min_load = avg_load;
1679 idlest = group;
1680 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001681 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001682
1683 if (!idlest || 100*this_load < imbalance*min_load)
1684 return NULL;
1685 return idlest;
1686}
1687
1688/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001689 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001690 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001691static int
1692find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001693{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001694 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001695 unsigned long load, min_load = ULONG_MAX;
1696 int idlest = -1;
1697 int i;
1698
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001699 /* Traverse only the allowed CPUs */
1700 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1701
1702 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001703 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001704
1705 if (load < min_load || (load == min_load && i == this_cpu)) {
1706 min_load = load;
1707 idlest = i;
1708 }
1709 }
1710
1711 return idlest;
1712}
1713
Nick Piggin476d1392005-06-25 14:57:29 -07001714/*
1715 * sched_balance_self: balance the current task (running on cpu) in domains
1716 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1717 * SD_BALANCE_EXEC.
1718 *
1719 * Balance, ie. select the least loaded group.
1720 *
1721 * Returns the target CPU number, or the same CPU if no balancing is needed.
1722 *
1723 * preempt must be disabled.
1724 */
1725static int sched_balance_self(int cpu, int flag)
1726{
1727 struct task_struct *t = current;
1728 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001729
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001730 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001731 /*
1732 * If power savings logic is enabled for a domain, stop there.
1733 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001734 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1735 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001736 if (tmp->flags & flag)
1737 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001738 }
Nick Piggin476d1392005-06-25 14:57:29 -07001739
1740 while (sd) {
1741 cpumask_t span;
1742 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001743 int new_cpu, weight;
1744
1745 if (!(sd->flags & flag)) {
1746 sd = sd->child;
1747 continue;
1748 }
Nick Piggin476d1392005-06-25 14:57:29 -07001749
1750 span = sd->span;
1751 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001752 if (!group) {
1753 sd = sd->child;
1754 continue;
1755 }
Nick Piggin476d1392005-06-25 14:57:29 -07001756
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001757 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001758 if (new_cpu == -1 || new_cpu == cpu) {
1759 /* Now try balancing at a lower domain level of cpu */
1760 sd = sd->child;
1761 continue;
1762 }
Nick Piggin476d1392005-06-25 14:57:29 -07001763
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001764 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001765 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001766 sd = NULL;
1767 weight = cpus_weight(span);
1768 for_each_domain(cpu, tmp) {
1769 if (weight <= cpus_weight(tmp->span))
1770 break;
1771 if (tmp->flags & flag)
1772 sd = tmp;
1773 }
1774 /* while loop will break here if sd == NULL */
1775 }
1776
1777 return cpu;
1778}
1779
1780#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782/***
1783 * try_to_wake_up - wake up a thread
1784 * @p: the to-be-woken-up thread
1785 * @state: the mask of task states that can be woken
1786 * @sync: do a synchronous wakeup?
1787 *
1788 * Put it on the run-queue if it's not already there. The "current"
1789 * thread is always on the run-queue (except when the actual
1790 * re-schedule is in progress), and as such you're allowed to do
1791 * the simpler "current->state = TASK_RUNNING" to mark yourself
1792 * runnable without the overhead of this.
1793 *
1794 * returns failure only if the task is already active.
1795 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001796static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
Ingo Molnarcc367732007-10-15 17:00:18 +02001798 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 unsigned long flags;
1800 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001801 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Linus Torvalds04e2f172008-02-23 18:05:03 -08001803 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 rq = task_rq_lock(p, &flags);
1805 old_state = p->state;
1806 if (!(old_state & state))
1807 goto out;
1808
Ingo Molnardd41f592007-07-09 18:51:59 +02001809 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 goto out_running;
1811
1812 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02001813 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 this_cpu = smp_processor_id();
1815
1816#ifdef CONFIG_SMP
1817 if (unlikely(task_running(rq, p)))
1818 goto out_activate;
1819
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01001820 cpu = p->sched_class->select_task_rq(p, sync);
1821 if (cpu != orig_cpu) {
1822 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 task_rq_unlock(rq, &flags);
1824 /* might preempt at this point */
1825 rq = task_rq_lock(p, &flags);
1826 old_state = p->state;
1827 if (!(old_state & state))
1828 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02001829 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 goto out_running;
1831
1832 this_cpu = smp_processor_id();
1833 cpu = task_cpu(p);
1834 }
1835
Gregory Haskinse7693a32008-01-25 21:08:09 +01001836#ifdef CONFIG_SCHEDSTATS
1837 schedstat_inc(rq, ttwu_count);
1838 if (cpu == this_cpu)
1839 schedstat_inc(rq, ttwu_local);
1840 else {
1841 struct sched_domain *sd;
1842 for_each_domain(this_cpu, sd) {
1843 if (cpu_isset(cpu, sd->span)) {
1844 schedstat_inc(sd, ttwu_wake_remote);
1845 break;
1846 }
1847 }
1848 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01001849#endif
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851out_activate:
1852#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02001853 schedstat_inc(p, se.nr_wakeups);
1854 if (sync)
1855 schedstat_inc(p, se.nr_wakeups_sync);
1856 if (orig_cpu != cpu)
1857 schedstat_inc(p, se.nr_wakeups_migrate);
1858 if (cpu == this_cpu)
1859 schedstat_inc(p, se.nr_wakeups_local);
1860 else
1861 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02001862 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02001863 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 success = 1;
1865
1866out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01001867 check_preempt_curr(rq, p);
1868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01001870#ifdef CONFIG_SMP
1871 if (p->sched_class->task_wake_up)
1872 p->sched_class->task_wake_up(rq, p);
1873#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874out:
1875 task_rq_unlock(rq, &flags);
1876
1877 return success;
1878}
1879
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001880int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001882 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884EXPORT_SYMBOL(wake_up_process);
1885
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001886int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
1888 return try_to_wake_up(p, state, 0);
1889}
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891/*
1892 * Perform scheduler related setup for a newly forked process p.
1893 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001894 *
1895 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001897static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
Ingo Molnardd41f592007-07-09 18:51:59 +02001899 p->se.exec_start = 0;
1900 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001901 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01001902 p->se.last_wakeup = 0;
1903 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001904
1905#ifdef CONFIG_SCHEDSTATS
1906 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001907 p->se.sum_sleep_runtime = 0;
1908 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001909 p->se.block_start = 0;
1910 p->se.sleep_max = 0;
1911 p->se.block_max = 0;
1912 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02001913 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001914 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001915#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001916
Peter Zijlstrafa717062008-01-25 21:08:27 +01001917 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02001918 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07001919
Avi Kivitye107be32007-07-26 13:40:43 +02001920#ifdef CONFIG_PREEMPT_NOTIFIERS
1921 INIT_HLIST_HEAD(&p->preempt_notifiers);
1922#endif
1923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 /*
1925 * We mark the process as running here, but have not actually
1926 * inserted it onto the runqueue yet. This guarantees that
1927 * nobody will actually run it, and a signal or other external
1928 * event cannot wake it up and insert it on the runqueue either.
1929 */
1930 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001931}
1932
1933/*
1934 * fork()/clone()-time setup:
1935 */
1936void sched_fork(struct task_struct *p, int clone_flags)
1937{
1938 int cpu = get_cpu();
1939
1940 __sched_fork(p);
1941
1942#ifdef CONFIG_SMP
1943 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1944#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02001945 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001946
1947 /*
1948 * Make sure we do not leak PI boosting priority to the child:
1949 */
1950 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001951 if (!rt_prio(p->prio))
1952 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001953
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001954#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001955 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001956 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001958#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001959 p->oncpu = 0;
1960#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001962 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08001963 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001965 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966}
1967
1968/*
1969 * wake_up_new_task - wake up a newly created task for the first time.
1970 *
1971 * This function will do some initial scheduler statistics housekeeping
1972 * that must be done for every newly created context, then puts the task
1973 * on the runqueue and wakes it.
1974 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001975void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976{
1977 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001978 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02001982 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984 p->prio = effective_prio(p);
1985
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02001986 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001987 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02001990 * Let the scheduling class do new task startup
1991 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02001993 p->sched_class->task_new(rq, p);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001994 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001996 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01001997#ifdef CONFIG_SMP
1998 if (p->sched_class->task_wake_up)
1999 p->sched_class->task_wake_up(rq, p);
2000#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002001 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002}
2003
Avi Kivitye107be32007-07-26 13:40:43 +02002004#ifdef CONFIG_PREEMPT_NOTIFIERS
2005
2006/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002007 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2008 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002009 */
2010void preempt_notifier_register(struct preempt_notifier *notifier)
2011{
2012 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2013}
2014EXPORT_SYMBOL_GPL(preempt_notifier_register);
2015
2016/**
2017 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002018 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002019 *
2020 * This is safe to call from within a preemption notifier.
2021 */
2022void preempt_notifier_unregister(struct preempt_notifier *notifier)
2023{
2024 hlist_del(&notifier->link);
2025}
2026EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2027
2028static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2029{
2030 struct preempt_notifier *notifier;
2031 struct hlist_node *node;
2032
2033 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2034 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2035}
2036
2037static void
2038fire_sched_out_preempt_notifiers(struct task_struct *curr,
2039 struct task_struct *next)
2040{
2041 struct preempt_notifier *notifier;
2042 struct hlist_node *node;
2043
2044 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2045 notifier->ops->sched_out(notifier, next);
2046}
2047
2048#else
2049
2050static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2051{
2052}
2053
2054static void
2055fire_sched_out_preempt_notifiers(struct task_struct *curr,
2056 struct task_struct *next)
2057{
2058}
2059
2060#endif
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002063 * prepare_task_switch - prepare to switch tasks
2064 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002065 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002066 * @next: the task we are going to switch to.
2067 *
2068 * This is called with the rq lock held and interrupts off. It must
2069 * be paired with a subsequent finish_task_switch after the context
2070 * switch.
2071 *
2072 * prepare_task_switch sets up locking and calls architecture specific
2073 * hooks.
2074 */
Avi Kivitye107be32007-07-26 13:40:43 +02002075static inline void
2076prepare_task_switch(struct rq *rq, struct task_struct *prev,
2077 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002078{
Avi Kivitye107be32007-07-26 13:40:43 +02002079 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002080 prepare_lock_switch(rq, next);
2081 prepare_arch_switch(next);
2082}
2083
2084/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002086 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 * @prev: the thread we just switched away from.
2088 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002089 * finish_task_switch must be called after the context switch, paired
2090 * with a prepare_task_switch call before the context switch.
2091 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2092 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 *
2094 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002095 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 * with the lock held can cause deadlocks; see schedule() for
2097 * details.)
2098 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002099static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 __releases(rq->lock)
2101{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002103 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 rq->prev_mm = NULL;
2106
2107 /*
2108 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002109 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002110 * schedule one last time. The schedule call will never return, and
2111 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002112 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 * still held, otherwise prev could be scheduled on another cpu, die
2114 * there before we look at prev->state, and then the reference would
2115 * be dropped twice.
2116 * Manfred Spraul <manfred@colorfullife.com>
2117 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002118 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002119 finish_arch_switch(prev);
2120 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002121#ifdef CONFIG_SMP
2122 if (current->sched_class->post_schedule)
2123 current->sched_class->post_schedule(rq);
2124#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002125
Avi Kivitye107be32007-07-26 13:40:43 +02002126 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 if (mm)
2128 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002129 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002130 /*
2131 * Remove function-return probe instances associated with this
2132 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002133 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002134 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137}
2138
2139/**
2140 * schedule_tail - first thing a freshly forked thread must call.
2141 * @prev: the thread we just switched away from.
2142 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002143asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 __releases(rq->lock)
2145{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002146 struct rq *rq = this_rq();
2147
Nick Piggin4866cde2005-06-25 14:57:23 -07002148 finish_task_switch(rq, prev);
2149#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2150 /* In this case, finish_task_switch does not reenable preemption */
2151 preempt_enable();
2152#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002154 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155}
2156
2157/*
2158 * context_switch - switch to the new MM and the new
2159 * thread's register state.
2160 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002161static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002162context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002163 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164{
Ingo Molnardd41f592007-07-09 18:51:59 +02002165 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Avi Kivitye107be32007-07-26 13:40:43 +02002167 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002168 mm = next->mm;
2169 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002170 /*
2171 * For paravirt, this is coupled with an exit in switch_to to
2172 * combine the page table reload and the switch backend into
2173 * one hypercall.
2174 */
2175 arch_enter_lazy_cpu_mode();
2176
Ingo Molnardd41f592007-07-09 18:51:59 +02002177 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 next->active_mm = oldmm;
2179 atomic_inc(&oldmm->mm_count);
2180 enter_lazy_tlb(oldmm, next);
2181 } else
2182 switch_mm(oldmm, mm, next);
2183
Ingo Molnardd41f592007-07-09 18:51:59 +02002184 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 rq->prev_mm = oldmm;
2187 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002188 /*
2189 * Since the runqueue lock will be released by the next
2190 * task (which is an invalid locking op but in the case
2191 * of the scheduler it's an obvious special-case), so we
2192 * do an early lockdep release here:
2193 */
2194#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002195 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002196#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 /* Here we just switch the register state and the stack. */
2199 switch_to(prev, next, prev);
2200
Ingo Molnardd41f592007-07-09 18:51:59 +02002201 barrier();
2202 /*
2203 * this_rq must be evaluated again because prev may have moved
2204 * CPUs since it called schedule(), thus the 'rq' on its stack
2205 * frame will be invalid.
2206 */
2207 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208}
2209
2210/*
2211 * nr_running, nr_uninterruptible and nr_context_switches:
2212 *
2213 * externally visible scheduler statistics: current number of runnable
2214 * threads, current number of uninterruptible-sleeping threads, total
2215 * number of context switches performed since bootup.
2216 */
2217unsigned long nr_running(void)
2218{
2219 unsigned long i, sum = 0;
2220
2221 for_each_online_cpu(i)
2222 sum += cpu_rq(i)->nr_running;
2223
2224 return sum;
2225}
2226
2227unsigned long nr_uninterruptible(void)
2228{
2229 unsigned long i, sum = 0;
2230
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002231 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 sum += cpu_rq(i)->nr_uninterruptible;
2233
2234 /*
2235 * Since we read the counters lockless, it might be slightly
2236 * inaccurate. Do not allow it to go below zero though:
2237 */
2238 if (unlikely((long)sum < 0))
2239 sum = 0;
2240
2241 return sum;
2242}
2243
2244unsigned long long nr_context_switches(void)
2245{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002246 int i;
2247 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002249 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 sum += cpu_rq(i)->nr_switches;
2251
2252 return sum;
2253}
2254
2255unsigned long nr_iowait(void)
2256{
2257 unsigned long i, sum = 0;
2258
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002259 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2261
2262 return sum;
2263}
2264
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002265unsigned long nr_active(void)
2266{
2267 unsigned long i, running = 0, uninterruptible = 0;
2268
2269 for_each_online_cpu(i) {
2270 running += cpu_rq(i)->nr_running;
2271 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2272 }
2273
2274 if (unlikely((long)uninterruptible < 0))
2275 uninterruptible = 0;
2276
2277 return running + uninterruptible;
2278}
2279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002281 * Update rq->cpu_load[] statistics. This function is usually called every
2282 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002283 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002284static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002285{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002286 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002287 int i, scale;
2288
2289 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002290
2291 /* Update our load: */
2292 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2293 unsigned long old_load, new_load;
2294
2295 /* scale is effectively 1 << i now, and >> i divides by scale */
2296
2297 old_load = this_rq->cpu_load[i];
2298 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002299 /*
2300 * Round up the averaging division if load is increasing. This
2301 * prevents us from getting stuck on 9 if the load is 10, for
2302 * example.
2303 */
2304 if (new_load > old_load)
2305 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002306 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2307 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002308}
2309
Ingo Molnardd41f592007-07-09 18:51:59 +02002310#ifdef CONFIG_SMP
2311
Ingo Molnar48f24c42006-07-03 00:25:40 -07002312/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 * double_rq_lock - safely lock two runqueues
2314 *
2315 * Note this does not disable interrupts like task_rq_lock,
2316 * you need to do so manually before calling.
2317 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002318static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 __acquires(rq1->lock)
2320 __acquires(rq2->lock)
2321{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002322 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 if (rq1 == rq2) {
2324 spin_lock(&rq1->lock);
2325 __acquire(rq2->lock); /* Fake it out ;) */
2326 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002327 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 spin_lock(&rq1->lock);
2329 spin_lock(&rq2->lock);
2330 } else {
2331 spin_lock(&rq2->lock);
2332 spin_lock(&rq1->lock);
2333 }
2334 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002335 update_rq_clock(rq1);
2336 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337}
2338
2339/*
2340 * double_rq_unlock - safely unlock two runqueues
2341 *
2342 * Note this does not restore interrupts like task_rq_unlock,
2343 * you need to do so manually after calling.
2344 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002345static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 __releases(rq1->lock)
2347 __releases(rq2->lock)
2348{
2349 spin_unlock(&rq1->lock);
2350 if (rq1 != rq2)
2351 spin_unlock(&rq2->lock);
2352 else
2353 __release(rq2->lock);
2354}
2355
2356/*
2357 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2358 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002359static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 __releases(this_rq->lock)
2361 __acquires(busiest->lock)
2362 __acquires(this_rq->lock)
2363{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002364 int ret = 0;
2365
Kirill Korotaev054b9102006-12-10 02:20:11 -08002366 if (unlikely(!irqs_disabled())) {
2367 /* printk() doesn't work good under rq->lock */
2368 spin_unlock(&this_rq->lock);
2369 BUG_ON(1);
2370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002372 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 spin_unlock(&this_rq->lock);
2374 spin_lock(&busiest->lock);
2375 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002376 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 } else
2378 spin_lock(&busiest->lock);
2379 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002380 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381}
2382
2383/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 * If dest_cpu is allowed for this process, migrate the task to it.
2385 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002386 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 * the cpu_allowed mask is restored.
2388 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002389static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002391 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002393 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395 rq = task_rq_lock(p, &flags);
2396 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2397 || unlikely(cpu_is_offline(dest_cpu)))
2398 goto out;
2399
2400 /* force the process onto the specified CPU */
2401 if (migrate_task(p, dest_cpu, &req)) {
2402 /* Need to wait for migration thread (might exit: take ref). */
2403 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 get_task_struct(mt);
2406 task_rq_unlock(rq, &flags);
2407 wake_up_process(mt);
2408 put_task_struct(mt);
2409 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 return;
2412 }
2413out:
2414 task_rq_unlock(rq, &flags);
2415}
2416
2417/*
Nick Piggin476d1392005-06-25 14:57:29 -07002418 * sched_exec - execve() is a valuable balancing opportunity, because at
2419 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 */
2421void sched_exec(void)
2422{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002424 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002426 if (new_cpu != this_cpu)
2427 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428}
2429
2430/*
2431 * pull_task - move a task from a remote runqueue to the local runqueue.
2432 * Both runqueues must be locked.
2433 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002434static void pull_task(struct rq *src_rq, struct task_struct *p,
2435 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002437 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002439 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 /*
2441 * Note that idle threads have a prio of MAX_PRIO, for this test
2442 * to be always true for them.
2443 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002444 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445}
2446
2447/*
2448 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2449 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002450static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002451int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002452 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002453 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{
2455 /*
2456 * We do not migrate tasks that are:
2457 * 1) running (obviously), or
2458 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2459 * 3) are cache-hot on their current CPU.
2460 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002461 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2462 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002464 }
Nick Piggin81026792005-06-25 14:57:07 -07002465 *all_pinned = 0;
2466
Ingo Molnarcc367732007-10-15 17:00:18 +02002467 if (task_running(rq, p)) {
2468 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002469 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Ingo Molnarda84d962007-10-15 17:00:18 +02002472 /*
2473 * Aggressive migration if:
2474 * 1) task is cache cold, or
2475 * 2) too many balance attempts have failed.
2476 */
2477
Ingo Molnar6bc16652007-10-15 17:00:18 +02002478 if (!task_hot(p, rq->clock, sd) ||
2479 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002480#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002481 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002482 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002483 schedstat_inc(p, se.nr_forced_migrations);
2484 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002485#endif
2486 return 1;
2487 }
2488
Ingo Molnarcc367732007-10-15 17:00:18 +02002489 if (task_hot(p, rq->clock, sd)) {
2490 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002491 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return 1;
2494}
2495
Peter Williamse1d14842007-10-24 18:23:51 +02002496static unsigned long
2497balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2498 unsigned long max_load_move, struct sched_domain *sd,
2499 enum cpu_idle_type idle, int *all_pinned,
2500 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002501{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002502 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002503 struct task_struct *p;
2504 long rem_load_move = max_load_move;
2505
Peter Williamse1d14842007-10-24 18:23:51 +02002506 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002507 goto out;
2508
2509 pinned = 1;
2510
2511 /*
2512 * Start the load-balancing iterator:
2513 */
2514 p = iterator->start(iterator->arg);
2515next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002516 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002517 goto out;
2518 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002519 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002520 * skip a task if it will be the highest priority task (i.e. smallest
2521 * prio value) on its new queue regardless of its load weight
2522 */
2523 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2524 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002525 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002526 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002527 p = iterator->next(iterator->arg);
2528 goto next;
2529 }
2530
2531 pull_task(busiest, p, this_rq, this_cpu);
2532 pulled++;
2533 rem_load_move -= p->se.load.weight;
2534
2535 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002536 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002537 */
Peter Williamse1d14842007-10-24 18:23:51 +02002538 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002539 if (p->prio < *this_best_prio)
2540 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002541 p = iterator->next(iterator->arg);
2542 goto next;
2543 }
2544out:
2545 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002546 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002547 * so we can safely collect pull_task() stats here rather than
2548 * inside pull_task().
2549 */
2550 schedstat_add(sd, lb_gained[idle], pulled);
2551
2552 if (all_pinned)
2553 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002554
2555 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002556}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558/*
Peter Williams43010652007-08-09 11:16:46 +02002559 * move_tasks tries to move up to max_load_move weighted load from busiest to
2560 * this_rq, as part of a balancing operation within domain "sd".
2561 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 *
2563 * Called with both runqueues locked.
2564 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002565static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002566 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002567 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002568 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002570 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002571 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002572 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
Ingo Molnardd41f592007-07-09 18:51:59 +02002574 do {
Peter Williams43010652007-08-09 11:16:46 +02002575 total_load_moved +=
2576 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002577 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002578 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002579 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002580 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Peter Williams43010652007-08-09 11:16:46 +02002582 return total_load_moved > 0;
2583}
2584
Peter Williamse1d14842007-10-24 18:23:51 +02002585static int
2586iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2587 struct sched_domain *sd, enum cpu_idle_type idle,
2588 struct rq_iterator *iterator)
2589{
2590 struct task_struct *p = iterator->start(iterator->arg);
2591 int pinned = 0;
2592
2593 while (p) {
2594 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2595 pull_task(busiest, p, this_rq, this_cpu);
2596 /*
2597 * Right now, this is only the second place pull_task()
2598 * is called, so we can safely collect pull_task()
2599 * stats here rather than inside pull_task().
2600 */
2601 schedstat_inc(sd, lb_gained[idle]);
2602
2603 return 1;
2604 }
2605 p = iterator->next(iterator->arg);
2606 }
2607
2608 return 0;
2609}
2610
Peter Williams43010652007-08-09 11:16:46 +02002611/*
2612 * move_one_task tries to move exactly one task from busiest to this_rq, as
2613 * part of active balancing operations within "domain".
2614 * Returns 1 if successful and 0 otherwise.
2615 *
2616 * Called with both runqueues locked.
2617 */
2618static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2619 struct sched_domain *sd, enum cpu_idle_type idle)
2620{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002621 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002622
2623 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002624 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002625 return 1;
2626
2627 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628}
2629
2630/*
2631 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002632 * domain. It calculates and returns the amount of weighted load which
2633 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 */
2635static struct sched_group *
2636find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002637 unsigned long *imbalance, enum cpu_idle_type idle,
2638 int *sd_idle, cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639{
2640 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2641 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002642 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002643 unsigned long busiest_load_per_task, busiest_nr_running;
2644 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002645 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002646#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2647 int power_savings_balance = 1;
2648 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2649 unsigned long min_nr_running = ULONG_MAX;
2650 struct sched_group *group_min = NULL, *group_leader = NULL;
2651#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
2653 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002654 busiest_load_per_task = busiest_nr_running = 0;
2655 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002656 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002657 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002658 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002659 load_idx = sd->newidle_idx;
2660 else
2661 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002664 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 int local_group;
2666 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002667 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002668 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002669 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
2671 local_group = cpu_isset(this_cpu, group->cpumask);
2672
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002673 if (local_group)
2674 balance_cpu = first_cpu(group->cpumask);
2675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002677 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002678 max_cpu_load = 0;
2679 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
2681 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002682 struct rq *rq;
2683
2684 if (!cpu_isset(i, *cpus))
2685 continue;
2686
2687 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002688
Suresh Siddha9439aab2007-07-19 21:28:35 +02002689 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002690 *sd_idle = 0;
2691
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002693 if (local_group) {
2694 if (idle_cpu(i) && !first_idle_cpu) {
2695 first_idle_cpu = 1;
2696 balance_cpu = i;
2697 }
2698
Nick Piggina2000572006-02-10 01:51:02 -08002699 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002700 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002701 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002702 if (load > max_cpu_load)
2703 max_cpu_load = load;
2704 if (min_cpu_load > load)
2705 min_cpu_load = load;
2706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
2708 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002709 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002710 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 }
2712
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002713 /*
2714 * First idle cpu or the first cpu(busiest) in this sched group
2715 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002716 * domains. In the newly idle case, we will allow all the cpu's
2717 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002718 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002719 if (idle != CPU_NEWLY_IDLE && local_group &&
2720 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002721 *balance = 0;
2722 goto ret;
2723 }
2724
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002726 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
2728 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002729 avg_load = sg_div_cpu_power(group,
2730 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Ken Chen908a7c12007-10-17 16:55:11 +02002732 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
2733 __group_imb = 1;
2734
Eric Dumazet5517d862007-05-08 00:32:57 -07002735 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002736
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 if (local_group) {
2738 this_load = avg_load;
2739 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002740 this_nr_running = sum_nr_running;
2741 this_load_per_task = sum_weighted_load;
2742 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02002743 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 max_load = avg_load;
2745 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002746 busiest_nr_running = sum_nr_running;
2747 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02002748 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002750
2751#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2752 /*
2753 * Busy processors will not participate in power savings
2754 * balance.
2755 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002756 if (idle == CPU_NOT_IDLE ||
2757 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2758 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002759
2760 /*
2761 * If the local group is idle or completely loaded
2762 * no need to do power savings balance at this domain
2763 */
2764 if (local_group && (this_nr_running >= group_capacity ||
2765 !this_nr_running))
2766 power_savings_balance = 0;
2767
Ingo Molnardd41f592007-07-09 18:51:59 +02002768 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002769 * If a group is already running at full capacity or idle,
2770 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002771 */
2772 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002773 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002774 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002775
Ingo Molnardd41f592007-07-09 18:51:59 +02002776 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002777 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002778 * This is the group from where we need to pick up the load
2779 * for saving power
2780 */
2781 if ((sum_nr_running < min_nr_running) ||
2782 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002783 first_cpu(group->cpumask) <
2784 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002785 group_min = group;
2786 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002787 min_load_per_task = sum_weighted_load /
2788 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002789 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002790
Ingo Molnardd41f592007-07-09 18:51:59 +02002791 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002792 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002793 * capacity but still has some space to pick up some load
2794 * from other group and save more power
2795 */
2796 if (sum_nr_running <= group_capacity - 1) {
2797 if (sum_nr_running > leader_nr_running ||
2798 (sum_nr_running == leader_nr_running &&
2799 first_cpu(group->cpumask) >
2800 first_cpu(group_leader->cpumask))) {
2801 group_leader = group;
2802 leader_nr_running = sum_nr_running;
2803 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002804 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002805group_next:
2806#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 group = group->next;
2808 } while (group != sd->groups);
2809
Peter Williams2dd73a42006-06-27 02:54:34 -07002810 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 goto out_balanced;
2812
2813 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2814
2815 if (this_load >= avg_load ||
2816 100*max_load <= sd->imbalance_pct*this_load)
2817 goto out_balanced;
2818
Peter Williams2dd73a42006-06-27 02:54:34 -07002819 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002820 if (group_imb)
2821 busiest_load_per_task = min(busiest_load_per_task, avg_load);
2822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 /*
2824 * We're trying to get all the cpus to the average_load, so we don't
2825 * want to push ourselves above the average load, nor do we wish to
2826 * reduce the max loaded cpu below the average load, as either of these
2827 * actions would just result in more rebalancing later, and ping-pong
2828 * tasks around. Thus we look for the minimum possible imbalance.
2829 * Negative imbalances (*we* are more loaded than anyone else) will
2830 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002831 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 * appear as very large values with unsigned longs.
2833 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002834 if (max_load <= busiest_load_per_task)
2835 goto out_balanced;
2836
2837 /*
2838 * In the presence of smp nice balancing, certain scenarios can have
2839 * max load less than avg load(as we skip the groups at or below
2840 * its cpu_power, while calculating max_load..)
2841 */
2842 if (max_load < avg_load) {
2843 *imbalance = 0;
2844 goto small_imbalance;
2845 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002846
2847 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002848 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07002851 *imbalance = min(max_pull * busiest->__cpu_power,
2852 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 / SCHED_LOAD_SCALE;
2854
Peter Williams2dd73a42006-06-27 02:54:34 -07002855 /*
2856 * if *imbalance is less than the average load per runnable task
2857 * there is no gaurantee that any tasks will be moved so we'll have
2858 * a think about bumping its value to force at least one task to be
2859 * moved
2860 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002861 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002862 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002863 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
Peter Williams2dd73a42006-06-27 02:54:34 -07002865small_imbalance:
2866 pwr_move = pwr_now = 0;
2867 imbn = 2;
2868 if (this_nr_running) {
2869 this_load_per_task /= this_nr_running;
2870 if (busiest_load_per_task > this_load_per_task)
2871 imbn = 1;
2872 } else
2873 this_load_per_task = SCHED_LOAD_SCALE;
2874
Ingo Molnardd41f592007-07-09 18:51:59 +02002875 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
2876 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002877 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 return busiest;
2879 }
2880
2881 /*
2882 * OK, we don't have enough imbalance to justify moving tasks,
2883 * however we may be able to increase total CPU power used by
2884 * moving them.
2885 */
2886
Eric Dumazet5517d862007-05-08 00:32:57 -07002887 pwr_now += busiest->__cpu_power *
2888 min(busiest_load_per_task, max_load);
2889 pwr_now += this->__cpu_power *
2890 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 pwr_now /= SCHED_LOAD_SCALE;
2892
2893 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07002894 tmp = sg_div_cpu_power(busiest,
2895 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07002897 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07002898 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
2900 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07002901 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002902 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07002903 tmp = sg_div_cpu_power(this,
2904 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 else
Eric Dumazet5517d862007-05-08 00:32:57 -07002906 tmp = sg_div_cpu_power(this,
2907 busiest_load_per_task * SCHED_LOAD_SCALE);
2908 pwr_move += this->__cpu_power *
2909 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 pwr_move /= SCHED_LOAD_SCALE;
2911
2912 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002913 if (pwr_move > pwr_now)
2914 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 }
2916
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 return busiest;
2918
2919out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002920#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002921 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002922 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002924 if (this == group_leader && group_leader != group_min) {
2925 *imbalance = min_load_per_task;
2926 return group_min;
2927 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002928#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002929ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 *imbalance = 0;
2931 return NULL;
2932}
2933
2934/*
2935 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2936 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002937static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002938find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002939 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002941 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002942 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 int i;
2944
2945 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002946 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002947
2948 if (!cpu_isset(i, *cpus))
2949 continue;
2950
Ingo Molnar48f24c42006-07-03 00:25:40 -07002951 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02002952 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
Ingo Molnardd41f592007-07-09 18:51:59 +02002954 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002955 continue;
2956
Ingo Molnardd41f592007-07-09 18:51:59 +02002957 if (wl > max_load) {
2958 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002959 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 }
2961 }
2962
2963 return busiest;
2964}
2965
2966/*
Nick Piggin77391d72005-06-25 14:57:30 -07002967 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2968 * so long as it is large enough.
2969 */
2970#define MAX_PINNED_INTERVAL 512
2971
2972/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2974 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002976static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002977 struct sched_domain *sd, enum cpu_idle_type idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002978 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979{
Peter Williams43010652007-08-09 11:16:46 +02002980 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002983 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002984 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002985 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002986
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002987 /*
2988 * When power savings policy is enabled for the parent domain, idle
2989 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02002990 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002991 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002992 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002993 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002994 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002995 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Ingo Molnar2d723762007-10-15 17:00:12 +02002997 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002999redo:
3000 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003001 &cpus, balance);
3002
Chen, Kenneth W06066712006-12-10 02:20:35 -08003003 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003004 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003005
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 if (!group) {
3007 schedstat_inc(sd, lb_nobusyg[idle]);
3008 goto out_balanced;
3009 }
3010
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003011 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 if (!busiest) {
3013 schedstat_inc(sd, lb_nobusyq[idle]);
3014 goto out_balanced;
3015 }
3016
Nick Piggindb935db2005-06-25 14:57:11 -07003017 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
3019 schedstat_add(sd, lb_imbalance[idle], imbalance);
3020
Peter Williams43010652007-08-09 11:16:46 +02003021 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 if (busiest->nr_running > 1) {
3023 /*
3024 * Attempt to move tasks. If find_busiest_group has found
3025 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003026 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 * correctly treated as an imbalance.
3028 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003029 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003030 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003031 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003032 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003033 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003034 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003035
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003036 /*
3037 * some other cpu did the load balance for us.
3038 */
Peter Williams43010652007-08-09 11:16:46 +02003039 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003040 resched_cpu(this_cpu);
3041
Nick Piggin81026792005-06-25 14:57:07 -07003042 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003043 if (unlikely(all_pinned)) {
3044 cpu_clear(cpu_of(busiest), cpus);
3045 if (!cpus_empty(cpus))
3046 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003047 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 }
Nick Piggin81026792005-06-25 14:57:07 -07003050
Peter Williams43010652007-08-09 11:16:46 +02003051 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 schedstat_inc(sd, lb_failed[idle]);
3053 sd->nr_balance_failed++;
3054
3055 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003057 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003058
3059 /* don't kick the migration_thread, if the curr
3060 * task on busiest cpu can't be moved to this_cpu
3061 */
3062 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003063 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003064 all_pinned = 1;
3065 goto out_one_pinned;
3066 }
3067
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 if (!busiest->active_balance) {
3069 busiest->active_balance = 1;
3070 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003071 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003073 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003074 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 wake_up_process(busiest->migration_thread);
3076
3077 /*
3078 * We've kicked active balancing, reset the failure
3079 * counter.
3080 */
Nick Piggin39507452005-06-25 14:57:09 -07003081 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
Nick Piggin81026792005-06-25 14:57:07 -07003083 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 sd->nr_balance_failed = 0;
3085
Nick Piggin81026792005-06-25 14:57:07 -07003086 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 /* We were unbalanced, so reset the balancing interval */
3088 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003089 } else {
3090 /*
3091 * If we've begun active balancing, start to back off. This
3092 * case may not be covered by the all_pinned logic if there
3093 * is only 1 task on the busy runqueue (because we don't call
3094 * move_tasks).
3095 */
3096 if (sd->balance_interval < sd->max_interval)
3097 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 }
3099
Peter Williams43010652007-08-09 11:16:46 +02003100 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003101 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003102 return -1;
Peter Williams43010652007-08-09 11:16:46 +02003103 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
3105out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 schedstat_inc(sd, lb_balanced[idle]);
3107
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003108 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003109
3110out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003112 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3113 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 sd->balance_interval *= 2;
3115
Ingo Molnar48f24c42006-07-03 00:25:40 -07003116 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003117 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003118 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 return 0;
3120}
3121
3122/*
3123 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3124 * tasks if there is an imbalance.
3125 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003126 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 * this_rq is locked.
3128 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003129static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003130load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131{
3132 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003133 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003135 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003136 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003137 int all_pinned = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003138 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07003139
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003140 /*
3141 * When power savings policy is enabled for the parent domain, idle
3142 * sibling can pick up load irrespective of busy siblings. In this case,
3143 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003144 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003145 */
3146 if (sd->flags & SD_SHARE_CPUPOWER &&
3147 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003148 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Ingo Molnar2d723762007-10-15 17:00:12 +02003150 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003151redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003152 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003153 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003155 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003156 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 }
3158
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003159 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003160 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003161 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003162 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003163 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 }
3165
Nick Piggindb935db2005-06-25 14:57:11 -07003166 BUG_ON(busiest == this_rq);
3167
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003168 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003169
Peter Williams43010652007-08-09 11:16:46 +02003170 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003171 if (busiest->nr_running > 1) {
3172 /* Attempt to move tasks */
3173 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003174 /* this_rq->clock is already updated */
3175 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003176 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003177 imbalance, sd, CPU_NEWLY_IDLE,
3178 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003179 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003180
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003181 if (unlikely(all_pinned)) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003182 cpu_clear(cpu_of(busiest), cpus);
3183 if (!cpus_empty(cpus))
3184 goto redo;
3185 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003186 }
3187
Peter Williams43010652007-08-09 11:16:46 +02003188 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003189 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003190 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3191 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003192 return -1;
3193 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003194 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Peter Williams43010652007-08-09 11:16:46 +02003196 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003197
3198out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003199 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003200 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003201 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003202 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003203 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003204
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003205 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206}
3207
3208/*
3209 * idle_balance is called by schedule() if this_cpu is about to become
3210 * idle. Attempts to pull tasks from other CPUs.
3211 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003212static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213{
3214 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003215 int pulled_task = -1;
3216 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
3218 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003219 unsigned long interval;
3220
3221 if (!(sd->flags & SD_LOAD_BALANCE))
3222 continue;
3223
3224 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003225 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003226 pulled_task = load_balance_newidle(this_cpu,
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003227 this_rq, sd);
3228
3229 interval = msecs_to_jiffies(sd->balance_interval);
3230 if (time_after(next_balance, sd->last_balance + interval))
3231 next_balance = sd->last_balance + interval;
3232 if (pulled_task)
3233 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003235 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003236 /*
3237 * We are going idle. next_balance may be set based on
3238 * a busy processor. So reset next_balance.
3239 */
3240 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242}
3243
3244/*
3245 * active_load_balance is run by migration threads. It pushes running tasks
3246 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3247 * running on each physical CPU where possible, and avoids physical /
3248 * logical imbalances.
3249 *
3250 * Called with busiest_rq locked.
3251 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003252static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253{
Nick Piggin39507452005-06-25 14:57:09 -07003254 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003255 struct sched_domain *sd;
3256 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003257
Ingo Molnar48f24c42006-07-03 00:25:40 -07003258 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003259 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003260 return;
3261
3262 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
3264 /*
Nick Piggin39507452005-06-25 14:57:09 -07003265 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003266 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003267 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 */
Nick Piggin39507452005-06-25 14:57:09 -07003269 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
Nick Piggin39507452005-06-25 14:57:09 -07003271 /* move a task from busiest_rq to target_rq */
3272 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003273 update_rq_clock(busiest_rq);
3274 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
Nick Piggin39507452005-06-25 14:57:09 -07003276 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003277 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003278 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003279 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003280 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Ingo Molnar48f24c42006-07-03 00:25:40 -07003283 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003284 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
Peter Williams43010652007-08-09 11:16:46 +02003286 if (move_one_task(target_rq, target_cpu, busiest_rq,
3287 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003288 schedstat_inc(sd, alb_pushed);
3289 else
3290 schedstat_inc(sd, alb_failed);
3291 }
Nick Piggin39507452005-06-25 14:57:09 -07003292 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293}
3294
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003295#ifdef CONFIG_NO_HZ
3296static struct {
3297 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003298 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003299} nohz ____cacheline_aligned = {
3300 .load_balancer = ATOMIC_INIT(-1),
3301 .cpu_mask = CPU_MASK_NONE,
3302};
3303
Christoph Lameter7835b982006-12-10 02:20:22 -08003304/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003305 * This routine will try to nominate the ilb (idle load balancing)
3306 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3307 * load balancing on behalf of all those cpus. If all the cpus in the system
3308 * go into this tickless mode, then there will be no ilb owner (as there is
3309 * no need for one) and all the cpus will sleep till the next wakeup event
3310 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003311 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003312 * For the ilb owner, tick is not stopped. And this tick will be used
3313 * for idle load balancing. ilb owner will still be part of
3314 * nohz.cpu_mask..
3315 *
3316 * While stopping the tick, this cpu will become the ilb owner if there
3317 * is no other owner. And will be the owner till that cpu becomes busy
3318 * or if all cpus in the system stop their ticks at which point
3319 * there is no need for ilb owner.
3320 *
3321 * When the ilb owner becomes busy, it nominates another owner, during the
3322 * next busy scheduler_tick()
3323 */
3324int select_nohz_load_balancer(int stop_tick)
3325{
3326 int cpu = smp_processor_id();
3327
3328 if (stop_tick) {
3329 cpu_set(cpu, nohz.cpu_mask);
3330 cpu_rq(cpu)->in_nohz_recently = 1;
3331
3332 /*
3333 * If we are going offline and still the leader, give up!
3334 */
3335 if (cpu_is_offline(cpu) &&
3336 atomic_read(&nohz.load_balancer) == cpu) {
3337 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3338 BUG();
3339 return 0;
3340 }
3341
3342 /* time for ilb owner also to sleep */
3343 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3344 if (atomic_read(&nohz.load_balancer) == cpu)
3345 atomic_set(&nohz.load_balancer, -1);
3346 return 0;
3347 }
3348
3349 if (atomic_read(&nohz.load_balancer) == -1) {
3350 /* make me the ilb owner */
3351 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3352 return 1;
3353 } else if (atomic_read(&nohz.load_balancer) == cpu)
3354 return 1;
3355 } else {
3356 if (!cpu_isset(cpu, nohz.cpu_mask))
3357 return 0;
3358
3359 cpu_clear(cpu, nohz.cpu_mask);
3360
3361 if (atomic_read(&nohz.load_balancer) == cpu)
3362 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3363 BUG();
3364 }
3365 return 0;
3366}
3367#endif
3368
3369static DEFINE_SPINLOCK(balancing);
3370
3371/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003372 * It checks each scheduling domain to see if it is due to be balanced,
3373 * and initiates a balancing operation if so.
3374 *
3375 * Balancing parameters are set up in arch_init_sched_domains.
3376 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003377static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003378{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003379 int balance = 1;
3380 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003381 unsigned long interval;
3382 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003383 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003384 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003385 int update_next_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003387 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 if (!(sd->flags & SD_LOAD_BALANCE))
3389 continue;
3390
3391 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003392 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 interval *= sd->busy_factor;
3394
3395 /* scale ms to jiffies */
3396 interval = msecs_to_jiffies(interval);
3397 if (unlikely(!interval))
3398 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003399 if (interval > HZ*NR_CPUS/10)
3400 interval = HZ*NR_CPUS/10;
3401
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
Christoph Lameter08c183f2006-12-10 02:20:29 -08003403 if (sd->flags & SD_SERIALIZE) {
3404 if (!spin_trylock(&balancing))
3405 goto out;
3406 }
3407
Christoph Lameterc9819f42006-12-10 02:20:25 -08003408 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003409 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003410 /*
3411 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003412 * longer idle, or one of our SMT siblings is
3413 * not idle.
3414 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003415 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003417 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003419 if (sd->flags & SD_SERIALIZE)
3420 spin_unlock(&balancing);
3421out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003422 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003423 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003424 update_next_balance = 1;
3425 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003426
3427 /*
3428 * Stop the load balance at this level. There is another
3429 * CPU in our sched group which is doing load balancing more
3430 * actively.
3431 */
3432 if (!balance)
3433 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003435
3436 /*
3437 * next_balance will be updated only when there is a need.
3438 * When the cpu is attached to null domain for ex, it will not be
3439 * updated.
3440 */
3441 if (likely(update_next_balance))
3442 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003443}
3444
3445/*
3446 * run_rebalance_domains is triggered when needed from the scheduler tick.
3447 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3448 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3449 */
3450static void run_rebalance_domains(struct softirq_action *h)
3451{
Ingo Molnardd41f592007-07-09 18:51:59 +02003452 int this_cpu = smp_processor_id();
3453 struct rq *this_rq = cpu_rq(this_cpu);
3454 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3455 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003456
Ingo Molnardd41f592007-07-09 18:51:59 +02003457 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003458
3459#ifdef CONFIG_NO_HZ
3460 /*
3461 * If this cpu is the owner for idle load balancing, then do the
3462 * balancing on behalf of the other idle cpus whose ticks are
3463 * stopped.
3464 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003465 if (this_rq->idle_at_tick &&
3466 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003467 cpumask_t cpus = nohz.cpu_mask;
3468 struct rq *rq;
3469 int balance_cpu;
3470
Ingo Molnardd41f592007-07-09 18:51:59 +02003471 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003472 for_each_cpu_mask(balance_cpu, cpus) {
3473 /*
3474 * If this cpu gets work to do, stop the load balancing
3475 * work being done for other cpus. Next load
3476 * balancing owner will pick it up.
3477 */
3478 if (need_resched())
3479 break;
3480
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003481 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003482
3483 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003484 if (time_after(this_rq->next_balance, rq->next_balance))
3485 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003486 }
3487 }
3488#endif
3489}
3490
3491/*
3492 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3493 *
3494 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3495 * idle load balancing owner or decide to stop the periodic load balancing,
3496 * if the whole system is idle.
3497 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003498static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003499{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003500#ifdef CONFIG_NO_HZ
3501 /*
3502 * If we were in the nohz mode recently and busy at the current
3503 * scheduler tick, then check if we need to nominate new idle
3504 * load balancer.
3505 */
3506 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3507 rq->in_nohz_recently = 0;
3508
3509 if (atomic_read(&nohz.load_balancer) == cpu) {
3510 cpu_clear(cpu, nohz.cpu_mask);
3511 atomic_set(&nohz.load_balancer, -1);
3512 }
3513
3514 if (atomic_read(&nohz.load_balancer) == -1) {
3515 /*
3516 * simple selection for now: Nominate the
3517 * first cpu in the nohz list to be the next
3518 * ilb owner.
3519 *
3520 * TBD: Traverse the sched domains and nominate
3521 * the nearest cpu in the nohz.cpu_mask.
3522 */
3523 int ilb = first_cpu(nohz.cpu_mask);
3524
3525 if (ilb != NR_CPUS)
3526 resched_cpu(ilb);
3527 }
3528 }
3529
3530 /*
3531 * If this cpu is idle and doing idle load balancing for all the
3532 * cpus with ticks stopped, is it time for that to stop?
3533 */
3534 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3535 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3536 resched_cpu(cpu);
3537 return;
3538 }
3539
3540 /*
3541 * If this cpu is idle and the idle load balancing is done by
3542 * someone else, then no need raise the SCHED_SOFTIRQ
3543 */
3544 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3545 cpu_isset(cpu, nohz.cpu_mask))
3546 return;
3547#endif
3548 if (time_after_eq(jiffies, rq->next_balance))
3549 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550}
Ingo Molnardd41f592007-07-09 18:51:59 +02003551
3552#else /* CONFIG_SMP */
3553
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554/*
3555 * on UP we do not need to balance between CPUs:
3556 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003557static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558{
3559}
Ingo Molnardd41f592007-07-09 18:51:59 +02003560
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561#endif
3562
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563DEFINE_PER_CPU(struct kernel_stat, kstat);
3564
3565EXPORT_PER_CPU_SYMBOL(kstat);
3566
3567/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003568 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3569 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003571unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003574 u64 ns, delta_exec;
3575 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003576
Ingo Molnar41b86e92007-07-09 18:51:58 +02003577 rq = task_rq_lock(p, &flags);
3578 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003579 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003580 update_rq_clock(rq);
3581 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003582 if ((s64)delta_exec > 0)
3583 ns += delta_exec;
3584 }
3585 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003586
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 return ns;
3588}
3589
3590/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 * Account user cpu time to a process.
3592 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 * @cputime: the cpu time spent in user space since the last update
3594 */
3595void account_user_time(struct task_struct *p, cputime_t cputime)
3596{
3597 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3598 cputime64_t tmp;
3599
3600 p->utime = cputime_add(p->utime, cputime);
3601
3602 /* Add user time to cpustat. */
3603 tmp = cputime_to_cputime64(cputime);
3604 if (TASK_NICE(p) > 0)
3605 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3606 else
3607 cpustat->user = cputime64_add(cpustat->user, tmp);
3608}
3609
3610/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003611 * Account guest cpu time to a process.
3612 * @p: the process that the cpu time gets accounted to
3613 * @cputime: the cpu time spent in virtual machine since the last update
3614 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003615static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003616{
3617 cputime64_t tmp;
3618 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3619
3620 tmp = cputime_to_cputime64(cputime);
3621
3622 p->utime = cputime_add(p->utime, cputime);
3623 p->gtime = cputime_add(p->gtime, cputime);
3624
3625 cpustat->user = cputime64_add(cpustat->user, tmp);
3626 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3627}
3628
3629/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003630 * Account scaled user cpu time to a process.
3631 * @p: the process that the cpu time gets accounted to
3632 * @cputime: the cpu time spent in user space since the last update
3633 */
3634void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3635{
3636 p->utimescaled = cputime_add(p->utimescaled, cputime);
3637}
3638
3639/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 * Account system cpu time to a process.
3641 * @p: the process that the cpu time gets accounted to
3642 * @hardirq_offset: the offset to subtract from hardirq_count()
3643 * @cputime: the cpu time spent in kernel space since the last update
3644 */
3645void account_system_time(struct task_struct *p, int hardirq_offset,
3646 cputime_t cputime)
3647{
3648 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003649 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 cputime64_t tmp;
3651
Christian Borntraeger97783852007-11-15 20:57:39 +01003652 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
3653 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003654
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 p->stime = cputime_add(p->stime, cputime);
3656
3657 /* Add system time to cpustat. */
3658 tmp = cputime_to_cputime64(cputime);
3659 if (hardirq_count() - hardirq_offset)
3660 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3661 else if (softirq_count())
3662 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003663 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003665 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3667 else
3668 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3669 /* Account for system time used */
3670 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671}
3672
3673/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003674 * Account scaled system cpu time to a process.
3675 * @p: the process that the cpu time gets accounted to
3676 * @hardirq_offset: the offset to subtract from hardirq_count()
3677 * @cputime: the cpu time spent in kernel space since the last update
3678 */
3679void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
3680{
3681 p->stimescaled = cputime_add(p->stimescaled, cputime);
3682}
3683
3684/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 * Account for involuntary wait time.
3686 * @p: the process from which the cpu time has been stolen
3687 * @steal: the cpu time spent in involuntary wait
3688 */
3689void account_steal_time(struct task_struct *p, cputime_t steal)
3690{
3691 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3692 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003693 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
3695 if (p == rq->idle) {
3696 p->stime = cputime_add(p->stime, steal);
3697 if (atomic_read(&rq->nr_iowait) > 0)
3698 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3699 else
3700 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003701 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3703}
3704
Christoph Lameter7835b982006-12-10 02:20:22 -08003705/*
3706 * This function gets called by the timer code, with HZ frequency.
3707 * We call it with interrupts disabled.
3708 *
3709 * It also gets called by the fork code, when changing the parent's
3710 * timeslices.
3711 */
3712void scheduler_tick(void)
3713{
Christoph Lameter7835b982006-12-10 02:20:22 -08003714 int cpu = smp_processor_id();
3715 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003716 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003717 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003718
Ingo Molnardd41f592007-07-09 18:51:59 +02003719 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003720 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003721 /*
3722 * Let rq->clock advance by at least TICK_NSEC:
3723 */
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003724 if (unlikely(rq->clock < next_tick)) {
Ingo Molnar529c7722007-08-10 23:05:11 +02003725 rq->clock = next_tick;
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003726 rq->clock_underflows++;
3727 }
Ingo Molnar529c7722007-08-10 23:05:11 +02003728 rq->tick_timestamp = rq->clock;
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003729 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003730 curr->sched_class->task_tick(rq, curr, 0);
3731 update_sched_rt_period(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003732 spin_unlock(&rq->lock);
3733
Christoph Lametere418e1c2006-12-10 02:20:23 -08003734#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003735 rq->idle_at_tick = idle_cpu(cpu);
3736 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003737#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738}
3739
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3741
Srinivasa Ds43627582008-02-23 15:24:04 -08003742void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743{
3744 /*
3745 * Underflow?
3746 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003747 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3748 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 preempt_count() += val;
3750 /*
3751 * Spinlock count overflowing soon?
3752 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003753 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3754 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755}
3756EXPORT_SYMBOL(add_preempt_count);
3757
Srinivasa Ds43627582008-02-23 15:24:04 -08003758void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759{
3760 /*
3761 * Underflow?
3762 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003763 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3764 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 /*
3766 * Is the spinlock portion underflowing?
3767 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003768 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3769 !(preempt_count() & PREEMPT_MASK)))
3770 return;
3771
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 preempt_count() -= val;
3773}
3774EXPORT_SYMBOL(sub_preempt_count);
3775
3776#endif
3777
3778/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003779 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003781static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782{
Satyam Sharma838225b2007-10-24 18:23:50 +02003783 struct pt_regs *regs = get_irq_regs();
3784
3785 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
3786 prev->comm, prev->pid, preempt_count());
3787
Ingo Molnardd41f592007-07-09 18:51:59 +02003788 debug_show_held_locks(prev);
3789 if (irqs_disabled())
3790 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003791
3792 if (regs)
3793 show_regs(regs);
3794 else
3795 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003796}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
Ingo Molnardd41f592007-07-09 18:51:59 +02003798/*
3799 * Various schedule()-time debugging checks and statistics:
3800 */
3801static inline void schedule_debug(struct task_struct *prev)
3802{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003804 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 * schedule() atomically, we ignore that path for now.
3806 * Otherwise, whine if we are scheduling when we should not be.
3807 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003808 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3809 __schedule_bug(prev);
3810
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3812
Ingo Molnar2d723762007-10-15 17:00:12 +02003813 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003814#ifdef CONFIG_SCHEDSTATS
3815 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003816 schedstat_inc(this_rq(), bkl_count);
3817 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003818 }
3819#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02003820}
3821
3822/*
3823 * Pick up the highest-prio task:
3824 */
3825static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003826pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02003827{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003828 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02003829 struct task_struct *p;
3830
3831 /*
3832 * Optimization: we know that if all tasks are in
3833 * the fair class we can call that function directly:
3834 */
3835 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003836 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003837 if (likely(p))
3838 return p;
3839 }
3840
3841 class = sched_class_highest;
3842 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003843 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003844 if (p)
3845 return p;
3846 /*
3847 * Will never be NULL as the idle class always
3848 * returns a non-NULL p:
3849 */
3850 class = class->next;
3851 }
3852}
3853
3854/*
3855 * schedule() is the main scheduler function.
3856 */
3857asmlinkage void __sched schedule(void)
3858{
3859 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08003860 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02003861 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003862 int cpu;
3863
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864need_resched:
3865 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02003866 cpu = smp_processor_id();
3867 rq = cpu_rq(cpu);
3868 rcu_qsctr_inc(cpu);
3869 prev = rq->curr;
3870 switch_count = &prev->nivcsw;
3871
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 release_kernel_lock(prev);
3873need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Ingo Molnardd41f592007-07-09 18:51:59 +02003875 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003877 hrtick_clear(rq);
3878
Ingo Molnar1e819952007-10-15 17:00:13 +02003879 /*
3880 * Do the rq-clock update outside the rq lock:
3881 */
3882 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02003883 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02003884 spin_lock(&rq->lock);
3885 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
Ingo Molnardd41f592007-07-09 18:51:59 +02003887 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3888 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3889 unlikely(signal_pending(prev)))) {
3890 prev->state = TASK_RUNNING;
3891 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003892 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02003893 }
3894 switch_count = &prev->nvcsw;
3895 }
3896
Steven Rostedt9a897c52008-01-25 21:08:22 +01003897#ifdef CONFIG_SMP
3898 if (prev->sched_class->pre_schedule)
3899 prev->sched_class->pre_schedule(rq, prev);
3900#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01003901
Ingo Molnardd41f592007-07-09 18:51:59 +02003902 if (unlikely(!rq->nr_running))
3903 idle_balance(cpu, rq);
3904
Ingo Molnar31ee5292007-08-09 11:16:49 +02003905 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003906 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
3908 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02003909
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 rq->nr_switches++;
3912 rq->curr = next;
3913 ++*switch_count;
3914
Ingo Molnardd41f592007-07-09 18:51:59 +02003915 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003916 /*
3917 * the context switch might have flipped the stack from under
3918 * us, hence refresh the local variables.
3919 */
3920 cpu = smp_processor_id();
3921 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 } else
3923 spin_unlock_irq(&rq->lock);
3924
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003925 hrtick_set(rq);
3926
3927 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003929
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 preempt_enable_no_resched();
3931 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3932 goto need_resched;
3933}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934EXPORT_SYMBOL(schedule);
3935
3936#ifdef CONFIG_PREEMPT
3937/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003938 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003939 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 * occur there and call schedule directly.
3941 */
3942asmlinkage void __sched preempt_schedule(void)
3943{
3944 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 struct task_struct *task = current;
3946 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01003947
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 /*
3949 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003950 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003952 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 return;
3954
Andi Kleen3a5c3592007-10-15 17:00:14 +02003955 do {
3956 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957
Andi Kleen3a5c3592007-10-15 17:00:14 +02003958 /*
3959 * We keep the big kernel semaphore locked, but we
3960 * clear ->lock_depth so that schedule() doesnt
3961 * auto-release the semaphore:
3962 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02003963 saved_lock_depth = task->lock_depth;
3964 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003965 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02003966 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003967 sub_preempt_count(PREEMPT_ACTIVE);
3968
3969 /*
3970 * Check again in case we missed a preemption opportunity
3971 * between schedule and now.
3972 */
3973 barrier();
3974 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976EXPORT_SYMBOL(preempt_schedule);
3977
3978/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003979 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 * off of irq context.
3981 * Note, that this is called and return with irqs disabled. This will
3982 * protect us against recursive calling from irq.
3983 */
3984asmlinkage void __sched preempt_schedule_irq(void)
3985{
3986 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 struct task_struct *task = current;
3988 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01003989
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003990 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 BUG_ON(ti->preempt_count || !irqs_disabled());
3992
Andi Kleen3a5c3592007-10-15 17:00:14 +02003993 do {
3994 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
Andi Kleen3a5c3592007-10-15 17:00:14 +02003996 /*
3997 * We keep the big kernel semaphore locked, but we
3998 * clear ->lock_depth so that schedule() doesnt
3999 * auto-release the semaphore:
4000 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004001 saved_lock_depth = task->lock_depth;
4002 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004003 local_irq_enable();
4004 schedule();
4005 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004006 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004007 sub_preempt_count(PREEMPT_ACTIVE);
4008
4009 /*
4010 * Check again in case we missed a preemption opportunity
4011 * between schedule and now.
4012 */
4013 barrier();
4014 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015}
4016
4017#endif /* CONFIG_PREEMPT */
4018
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004019int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4020 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004022 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024EXPORT_SYMBOL(default_wake_function);
4025
4026/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004027 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4028 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 * number) then we wake all the non-exclusive tasks and one exclusive task.
4030 *
4031 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004032 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4034 */
4035static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4036 int nr_exclusive, int sync, void *key)
4037{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004038 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004040 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004041 unsigned flags = curr->flags;
4042
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004044 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 break;
4046 }
4047}
4048
4049/**
4050 * __wake_up - wake up threads blocked on a waitqueue.
4051 * @q: the waitqueue
4052 * @mode: which threads
4053 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004054 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004056void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004057 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058{
4059 unsigned long flags;
4060
4061 spin_lock_irqsave(&q->lock, flags);
4062 __wake_up_common(q, mode, nr_exclusive, 0, key);
4063 spin_unlock_irqrestore(&q->lock, flags);
4064}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065EXPORT_SYMBOL(__wake_up);
4066
4067/*
4068 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4069 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004070void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071{
4072 __wake_up_common(q, mode, 1, 0, NULL);
4073}
4074
4075/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004076 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 * @q: the waitqueue
4078 * @mode: which threads
4079 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4080 *
4081 * The sync wakeup differs that the waker knows that it will schedule
4082 * away soon, so while the target thread will be woken up, it will not
4083 * be migrated to another CPU - ie. the two threads are 'synchronized'
4084 * with each other. This can prevent needless bouncing between CPUs.
4085 *
4086 * On UP it can prevent extra preemption.
4087 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004088void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004089__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090{
4091 unsigned long flags;
4092 int sync = 1;
4093
4094 if (unlikely(!q))
4095 return;
4096
4097 if (unlikely(!nr_exclusive))
4098 sync = 0;
4099
4100 spin_lock_irqsave(&q->lock, flags);
4101 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4102 spin_unlock_irqrestore(&q->lock, flags);
4103}
4104EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4105
Ingo Molnarb15136e2007-10-24 18:23:48 +02004106void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107{
4108 unsigned long flags;
4109
4110 spin_lock_irqsave(&x->wait.lock, flags);
4111 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004112 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 spin_unlock_irqrestore(&x->wait.lock, flags);
4114}
4115EXPORT_SYMBOL(complete);
4116
Ingo Molnarb15136e2007-10-24 18:23:48 +02004117void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118{
4119 unsigned long flags;
4120
4121 spin_lock_irqsave(&x->wait.lock, flags);
4122 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004123 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 spin_unlock_irqrestore(&x->wait.lock, flags);
4125}
4126EXPORT_SYMBOL(complete_all);
4127
Andi Kleen8cbbe862007-10-15 17:00:14 +02004128static inline long __sched
4129do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 if (!x->done) {
4132 DECLARE_WAITQUEUE(wait, current);
4133
4134 wait.flags |= WQ_FLAG_EXCLUSIVE;
4135 __add_wait_queue_tail(&x->wait, &wait);
4136 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004137 if ((state == TASK_INTERRUPTIBLE &&
4138 signal_pending(current)) ||
4139 (state == TASK_KILLABLE &&
4140 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004141 __remove_wait_queue(&x->wait, &wait);
4142 return -ERESTARTSYS;
4143 }
4144 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004146 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004148 if (!timeout) {
4149 __remove_wait_queue(&x->wait, &wait);
4150 return timeout;
4151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 } while (!x->done);
4153 __remove_wait_queue(&x->wait, &wait);
4154 }
4155 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004156 return timeout;
4157}
4158
4159static long __sched
4160wait_for_common(struct completion *x, long timeout, int state)
4161{
4162 might_sleep();
4163
4164 spin_lock_irq(&x->wait.lock);
4165 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004167 return timeout;
4168}
4169
Ingo Molnarb15136e2007-10-24 18:23:48 +02004170void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004171{
4172 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173}
4174EXPORT_SYMBOL(wait_for_completion);
4175
Ingo Molnarb15136e2007-10-24 18:23:48 +02004176unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4178{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004179 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180}
4181EXPORT_SYMBOL(wait_for_completion_timeout);
4182
Andi Kleen8cbbe862007-10-15 17:00:14 +02004183int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184{
Andi Kleen51e97992007-10-18 21:32:55 +02004185 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4186 if (t == -ERESTARTSYS)
4187 return t;
4188 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189}
4190EXPORT_SYMBOL(wait_for_completion_interruptible);
4191
Ingo Molnarb15136e2007-10-24 18:23:48 +02004192unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193wait_for_completion_interruptible_timeout(struct completion *x,
4194 unsigned long timeout)
4195{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004196 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197}
4198EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4199
Matthew Wilcox009e5772007-12-06 12:29:54 -05004200int __sched wait_for_completion_killable(struct completion *x)
4201{
4202 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4203 if (t == -ERESTARTSYS)
4204 return t;
4205 return 0;
4206}
4207EXPORT_SYMBOL(wait_for_completion_killable);
4208
Andi Kleen8cbbe862007-10-15 17:00:14 +02004209static long __sched
4210sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004211{
4212 unsigned long flags;
4213 wait_queue_t wait;
4214
4215 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
Andi Kleen8cbbe862007-10-15 17:00:14 +02004217 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218
Andi Kleen8cbbe862007-10-15 17:00:14 +02004219 spin_lock_irqsave(&q->lock, flags);
4220 __add_wait_queue(q, &wait);
4221 spin_unlock(&q->lock);
4222 timeout = schedule_timeout(timeout);
4223 spin_lock_irq(&q->lock);
4224 __remove_wait_queue(q, &wait);
4225 spin_unlock_irqrestore(&q->lock, flags);
4226
4227 return timeout;
4228}
4229
4230void __sched interruptible_sleep_on(wait_queue_head_t *q)
4231{
4232 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234EXPORT_SYMBOL(interruptible_sleep_on);
4235
Ingo Molnar0fec1712007-07-09 18:52:01 +02004236long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004237interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004239 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4242
Ingo Molnar0fec1712007-07-09 18:52:01 +02004243void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004245 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247EXPORT_SYMBOL(sleep_on);
4248
Ingo Molnar0fec1712007-07-09 18:52:01 +02004249long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004251 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253EXPORT_SYMBOL(sleep_on_timeout);
4254
Ingo Molnarb29739f2006-06-27 02:54:51 -07004255#ifdef CONFIG_RT_MUTEXES
4256
4257/*
4258 * rt_mutex_setprio - set the current priority of a task
4259 * @p: task
4260 * @prio: prio value (kernel-internal form)
4261 *
4262 * This function changes the 'effective' priority of a task. It does
4263 * not touch ->normal_prio like __setscheduler().
4264 *
4265 * Used by the rt_mutex code to implement priority inheritance logic.
4266 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004267void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004268{
4269 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004270 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004271 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004272 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004273
4274 BUG_ON(prio < 0 || prio > MAX_PRIO);
4275
4276 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004277 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004278
Andrew Mortond5f9f942007-05-08 20:27:06 -07004279 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004280 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004281 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004282 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004283 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004284 if (running)
4285 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004286
4287 if (rt_prio(prio))
4288 p->sched_class = &rt_sched_class;
4289 else
4290 p->sched_class = &fair_sched_class;
4291
Ingo Molnarb29739f2006-06-27 02:54:51 -07004292 p->prio = prio;
4293
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004294 if (running)
4295 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004296 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004297 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004298
4299 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004300 }
4301 task_rq_unlock(rq, &flags);
4302}
4303
4304#endif
4305
Ingo Molnar36c8b582006-07-03 00:25:41 -07004306void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307{
Ingo Molnardd41f592007-07-09 18:51:59 +02004308 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004310 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311
4312 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4313 return;
4314 /*
4315 * We have to be careful, if called from sys_setpriority(),
4316 * the task might be in the middle of scheduling on another CPU.
4317 */
4318 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004319 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 /*
4321 * The RT priorities are set via sched_setscheduler(), but we still
4322 * allow the 'normal' nice value to be set - but as expected
4323 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004324 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004326 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 p->static_prio = NICE_TO_PRIO(nice);
4328 goto out_unlock;
4329 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004330 on_rq = p->se.on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004331 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004332 dequeue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004333 dec_load(rq, p);
4334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004337 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004338 old_prio = p->prio;
4339 p->prio = effective_prio(p);
4340 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341
Ingo Molnardd41f592007-07-09 18:51:59 +02004342 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004343 enqueue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004344 inc_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004346 * If the task increased its priority or is running and
4347 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004349 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 resched_task(rq->curr);
4351 }
4352out_unlock:
4353 task_rq_unlock(rq, &flags);
4354}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355EXPORT_SYMBOL(set_user_nice);
4356
Matt Mackalle43379f2005-05-01 08:59:00 -07004357/*
4358 * can_nice - check if a task can reduce its nice value
4359 * @p: task
4360 * @nice: nice value
4361 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004362int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004363{
Matt Mackall024f4742005-08-18 11:24:19 -07004364 /* convert nice value [19,-20] to rlimit style value [1,40] */
4365 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004366
Matt Mackalle43379f2005-05-01 08:59:00 -07004367 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4368 capable(CAP_SYS_NICE));
4369}
4370
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371#ifdef __ARCH_WANT_SYS_NICE
4372
4373/*
4374 * sys_nice - change the priority of the current process.
4375 * @increment: priority increment
4376 *
4377 * sys_setpriority is a more generic, but much slower function that
4378 * does similar things.
4379 */
4380asmlinkage long sys_nice(int increment)
4381{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004382 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383
4384 /*
4385 * Setpriority might change our priority at the same moment.
4386 * We don't have to worry. Conceptually one call occurs first
4387 * and we have a single winner.
4388 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004389 if (increment < -40)
4390 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 if (increment > 40)
4392 increment = 40;
4393
4394 nice = PRIO_TO_NICE(current->static_prio) + increment;
4395 if (nice < -20)
4396 nice = -20;
4397 if (nice > 19)
4398 nice = 19;
4399
Matt Mackalle43379f2005-05-01 08:59:00 -07004400 if (increment < 0 && !can_nice(current, nice))
4401 return -EPERM;
4402
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403 retval = security_task_setnice(current, nice);
4404 if (retval)
4405 return retval;
4406
4407 set_user_nice(current, nice);
4408 return 0;
4409}
4410
4411#endif
4412
4413/**
4414 * task_prio - return the priority value of a given task.
4415 * @p: the task in question.
4416 *
4417 * This is the priority value as seen by users in /proc.
4418 * RT tasks are offset by -200. Normal tasks are centered
4419 * around 0, value goes from -16 to +15.
4420 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004421int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422{
4423 return p->prio - MAX_RT_PRIO;
4424}
4425
4426/**
4427 * task_nice - return the nice value of a given task.
4428 * @p: the task in question.
4429 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004430int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431{
4432 return TASK_NICE(p);
4433}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004434EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435
4436/**
4437 * idle_cpu - is a given cpu idle currently?
4438 * @cpu: the processor in question.
4439 */
4440int idle_cpu(int cpu)
4441{
4442 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4443}
4444
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445/**
4446 * idle_task - return the idle task for a given cpu.
4447 * @cpu: the processor in question.
4448 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004449struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450{
4451 return cpu_rq(cpu)->idle;
4452}
4453
4454/**
4455 * find_process_by_pid - find a process with a matching PID value.
4456 * @pid: the pid in question.
4457 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004458static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004460 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461}
4462
4463/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004464static void
4465__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466{
Ingo Molnardd41f592007-07-09 18:51:59 +02004467 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004468
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004470 switch (p->policy) {
4471 case SCHED_NORMAL:
4472 case SCHED_BATCH:
4473 case SCHED_IDLE:
4474 p->sched_class = &fair_sched_class;
4475 break;
4476 case SCHED_FIFO:
4477 case SCHED_RR:
4478 p->sched_class = &rt_sched_class;
4479 break;
4480 }
4481
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004483 p->normal_prio = normal_prio(p);
4484 /* we are holding p->pi_lock already */
4485 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004486 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487}
4488
4489/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004490 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 * @p: the task in question.
4492 * @policy: new policy.
4493 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004494 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004495 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004497int sched_setscheduler(struct task_struct *p, int policy,
4498 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004500 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004502 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004503 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504
Steven Rostedt66e53932006-06-27 02:54:44 -07004505 /* may grab non-irq protected spin_locks */
4506 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507recheck:
4508 /* double check policy once rq lock held */
4509 if (policy < 0)
4510 policy = oldpolicy = p->policy;
4511 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004512 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4513 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004514 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 /*
4516 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004517 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4518 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 */
4520 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004521 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004522 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004524 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 return -EINVAL;
4526
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004527 /*
4528 * Allow unprivileged RT tasks to decrease priority:
4529 */
4530 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004531 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004532 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004533
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004534 if (!lock_task_sighand(p, &flags))
4535 return -ESRCH;
4536 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4537 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004538
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004539 /* can't set/change the rt policy */
4540 if (policy != p->policy && !rlim_rtprio)
4541 return -EPERM;
4542
4543 /* can't increase priority */
4544 if (param->sched_priority > p->rt_priority &&
4545 param->sched_priority > rlim_rtprio)
4546 return -EPERM;
4547 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004548 /*
4549 * Like positive nice levels, dont allow tasks to
4550 * move out of SCHED_IDLE either:
4551 */
4552 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4553 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004554
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004555 /* can't change other user's priorities */
4556 if ((current->euid != p->euid) &&
4557 (current->euid != p->uid))
4558 return -EPERM;
4559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004561#ifdef CONFIG_RT_GROUP_SCHED
4562 /*
4563 * Do not allow realtime tasks into groups that have no runtime
4564 * assigned.
4565 */
4566 if (rt_policy(policy) && task_group(p)->rt_runtime == 0)
4567 return -EPERM;
4568#endif
4569
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 retval = security_task_setscheduler(p, policy, param);
4571 if (retval)
4572 return retval;
4573 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004574 * make sure no PI-waiters arrive (or leave) while we are
4575 * changing the priority of the task:
4576 */
4577 spin_lock_irqsave(&p->pi_lock, flags);
4578 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 * To be able to change p->policy safely, the apropriate
4580 * runqueue lock must be held.
4581 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004582 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 /* recheck policy now with rq lock held */
4584 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4585 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004586 __task_rq_unlock(rq);
4587 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 goto recheck;
4589 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004590 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004591 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004592 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004593 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004594 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004595 if (running)
4596 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004597
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004599 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004600
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004601 if (running)
4602 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004603 if (on_rq) {
4604 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004605
4606 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004608 __task_rq_unlock(rq);
4609 spin_unlock_irqrestore(&p->pi_lock, flags);
4610
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004611 rt_mutex_adjust_pi(p);
4612
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613 return 0;
4614}
4615EXPORT_SYMBOL_GPL(sched_setscheduler);
4616
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004617static int
4618do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 struct sched_param lparam;
4621 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004622 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623
4624 if (!param || pid < 0)
4625 return -EINVAL;
4626 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4627 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004628
4629 rcu_read_lock();
4630 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004632 if (p != NULL)
4633 retval = sched_setscheduler(p, policy, &lparam);
4634 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004635
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 return retval;
4637}
4638
4639/**
4640 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4641 * @pid: the pid in question.
4642 * @policy: new policy.
4643 * @param: structure containing the new RT priority.
4644 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004645asmlinkage long
4646sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647{
Jason Baronc21761f2006-01-18 17:43:03 -08004648 /* negative values for policy are not valid */
4649 if (policy < 0)
4650 return -EINVAL;
4651
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 return do_sched_setscheduler(pid, policy, param);
4653}
4654
4655/**
4656 * sys_sched_setparam - set/change the RT priority of a thread
4657 * @pid: the pid in question.
4658 * @param: structure containing the new RT priority.
4659 */
4660asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4661{
4662 return do_sched_setscheduler(pid, -1, param);
4663}
4664
4665/**
4666 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4667 * @pid: the pid in question.
4668 */
4669asmlinkage long sys_sched_getscheduler(pid_t pid)
4670{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004671 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004672 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673
4674 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004675 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
4677 retval = -ESRCH;
4678 read_lock(&tasklist_lock);
4679 p = find_process_by_pid(pid);
4680 if (p) {
4681 retval = security_task_getscheduler(p);
4682 if (!retval)
4683 retval = p->policy;
4684 }
4685 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 return retval;
4687}
4688
4689/**
4690 * sys_sched_getscheduler - get the RT priority of a thread
4691 * @pid: the pid in question.
4692 * @param: structure containing the RT priority.
4693 */
4694asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4695{
4696 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004697 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004698 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699
4700 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004701 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
4703 read_lock(&tasklist_lock);
4704 p = find_process_by_pid(pid);
4705 retval = -ESRCH;
4706 if (!p)
4707 goto out_unlock;
4708
4709 retval = security_task_getscheduler(p);
4710 if (retval)
4711 goto out_unlock;
4712
4713 lp.sched_priority = p->rt_priority;
4714 read_unlock(&tasklist_lock);
4715
4716 /*
4717 * This one might sleep, we cannot do it with a spinlock held ...
4718 */
4719 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4720
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 return retval;
4722
4723out_unlock:
4724 read_unlock(&tasklist_lock);
4725 return retval;
4726}
4727
4728long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4729{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004731 struct task_struct *p;
4732 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004734 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 read_lock(&tasklist_lock);
4736
4737 p = find_process_by_pid(pid);
4738 if (!p) {
4739 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004740 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 return -ESRCH;
4742 }
4743
4744 /*
4745 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004746 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 * usage count and then drop tasklist_lock.
4748 */
4749 get_task_struct(p);
4750 read_unlock(&tasklist_lock);
4751
4752 retval = -EPERM;
4753 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4754 !capable(CAP_SYS_NICE))
4755 goto out_unlock;
4756
David Quigleye7834f82006-06-23 02:03:59 -07004757 retval = security_task_setscheduler(p, 0, NULL);
4758 if (retval)
4759 goto out_unlock;
4760
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 cpus_allowed = cpuset_cpus_allowed(p);
4762 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004763 again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 retval = set_cpus_allowed(p, new_mask);
4765
Paul Menage8707d8b2007-10-18 23:40:22 -07004766 if (!retval) {
4767 cpus_allowed = cpuset_cpus_allowed(p);
4768 if (!cpus_subset(new_mask, cpus_allowed)) {
4769 /*
4770 * We must have raced with a concurrent cpuset
4771 * update. Just reset the cpus_allowed to the
4772 * cpuset's cpus_allowed
4773 */
4774 new_mask = cpus_allowed;
4775 goto again;
4776 }
4777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778out_unlock:
4779 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004780 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 return retval;
4782}
4783
4784static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4785 cpumask_t *new_mask)
4786{
4787 if (len < sizeof(cpumask_t)) {
4788 memset(new_mask, 0, sizeof(cpumask_t));
4789 } else if (len > sizeof(cpumask_t)) {
4790 len = sizeof(cpumask_t);
4791 }
4792 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4793}
4794
4795/**
4796 * sys_sched_setaffinity - set the cpu affinity of a process
4797 * @pid: pid of the process
4798 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4799 * @user_mask_ptr: user-space pointer to the new cpu mask
4800 */
4801asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4802 unsigned long __user *user_mask_ptr)
4803{
4804 cpumask_t new_mask;
4805 int retval;
4806
4807 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4808 if (retval)
4809 return retval;
4810
4811 return sched_setaffinity(pid, new_mask);
4812}
4813
4814/*
4815 * Represents all cpu's present in the system
4816 * In systems capable of hotplug, this map could dynamically grow
4817 * as new cpu's are detected in the system via any platform specific
4818 * method, such as ACPI for e.g.
4819 */
4820
Andi Kleen4cef0c62006-01-11 22:44:57 +01004821cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822EXPORT_SYMBOL(cpu_present_map);
4823
4824#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004825cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004826EXPORT_SYMBOL(cpu_online_map);
4827
Andi Kleen4cef0c62006-01-11 22:44:57 +01004828cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004829EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830#endif
4831
4832long sched_getaffinity(pid_t pid, cpumask_t *mask)
4833{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004834 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004837 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 read_lock(&tasklist_lock);
4839
4840 retval = -ESRCH;
4841 p = find_process_by_pid(pid);
4842 if (!p)
4843 goto out_unlock;
4844
David Quigleye7834f82006-06-23 02:03:59 -07004845 retval = security_task_getscheduler(p);
4846 if (retval)
4847 goto out_unlock;
4848
Jack Steiner2f7016d2006-02-01 03:05:18 -08004849 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850
4851out_unlock:
4852 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004853 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854
Ulrich Drepper9531b622007-08-09 11:16:46 +02004855 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856}
4857
4858/**
4859 * sys_sched_getaffinity - get the cpu affinity of a process
4860 * @pid: pid of the process
4861 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4862 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4863 */
4864asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4865 unsigned long __user *user_mask_ptr)
4866{
4867 int ret;
4868 cpumask_t mask;
4869
4870 if (len < sizeof(cpumask_t))
4871 return -EINVAL;
4872
4873 ret = sched_getaffinity(pid, &mask);
4874 if (ret < 0)
4875 return ret;
4876
4877 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4878 return -EFAULT;
4879
4880 return sizeof(cpumask_t);
4881}
4882
4883/**
4884 * sys_sched_yield - yield the current processor to other threads.
4885 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004886 * This function yields the current CPU to other tasks. If there are no
4887 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 */
4889asmlinkage long sys_sched_yield(void)
4890{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004891 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892
Ingo Molnar2d723762007-10-15 17:00:12 +02004893 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004894 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895
4896 /*
4897 * Since we are going to call schedule() anyway, there's
4898 * no need to preempt or enable interrupts:
4899 */
4900 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004901 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 _raw_spin_unlock(&rq->lock);
4903 preempt_enable_no_resched();
4904
4905 schedule();
4906
4907 return 0;
4908}
4909
Andrew Mortone7b38402006-06-30 01:56:00 -07004910static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004912#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4913 __might_sleep(__FILE__, __LINE__);
4914#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004915 /*
4916 * The BKS might be reacquired before we have dropped
4917 * PREEMPT_ACTIVE, which could trigger a second
4918 * cond_resched() call.
4919 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 do {
4921 add_preempt_count(PREEMPT_ACTIVE);
4922 schedule();
4923 sub_preempt_count(PREEMPT_ACTIVE);
4924 } while (need_resched());
4925}
4926
Herbert Xu02b67cc2008-01-25 21:08:28 +01004927#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
4928int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929{
Ingo Molnar94142322006-12-29 16:48:13 -08004930 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4931 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932 __cond_resched();
4933 return 1;
4934 }
4935 return 0;
4936}
Herbert Xu02b67cc2008-01-25 21:08:28 +01004937EXPORT_SYMBOL(_cond_resched);
4938#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
4940/*
4941 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4942 * call schedule, and on return reacquire the lock.
4943 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004944 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 * operations here to prevent schedule() from being called twice (once via
4946 * spin_unlock(), once by hand).
4947 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004948int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949{
Nick Piggin95c354f2008-01-30 13:31:20 +01004950 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07004951 int ret = 0;
4952
Nick Piggin95c354f2008-01-30 13:31:20 +01004953 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01004955 if (resched && need_resched())
4956 __cond_resched();
4957 else
4958 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004959 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004962 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964EXPORT_SYMBOL(cond_resched_lock);
4965
4966int __sched cond_resched_softirq(void)
4967{
4968 BUG_ON(!in_softirq());
4969
Ingo Molnar94142322006-12-29 16:48:13 -08004970 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d82562007-05-23 13:58:18 -07004971 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972 __cond_resched();
4973 local_bh_disable();
4974 return 1;
4975 }
4976 return 0;
4977}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978EXPORT_SYMBOL(cond_resched_softirq);
4979
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980/**
4981 * yield - yield the current processor to other threads.
4982 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004983 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 * thread runnable and calls sys_sched_yield().
4985 */
4986void __sched yield(void)
4987{
4988 set_current_state(TASK_RUNNING);
4989 sys_sched_yield();
4990}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991EXPORT_SYMBOL(yield);
4992
4993/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004994 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995 * that process accounting knows that this is a task in IO wait state.
4996 *
4997 * But don't do that if it is a deliberate, throttling IO wait (this task
4998 * has set its backing_dev_info: the queue against which it should throttle)
4999 */
5000void __sched io_schedule(void)
5001{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005002 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005004 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005 atomic_inc(&rq->nr_iowait);
5006 schedule();
5007 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005008 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010EXPORT_SYMBOL(io_schedule);
5011
5012long __sched io_schedule_timeout(long timeout)
5013{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005014 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 long ret;
5016
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005017 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018 atomic_inc(&rq->nr_iowait);
5019 ret = schedule_timeout(timeout);
5020 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005021 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 return ret;
5023}
5024
5025/**
5026 * sys_sched_get_priority_max - return maximum RT priority.
5027 * @policy: scheduling class.
5028 *
5029 * this syscall returns the maximum rt_priority that can be used
5030 * by a given scheduling class.
5031 */
5032asmlinkage long sys_sched_get_priority_max(int policy)
5033{
5034 int ret = -EINVAL;
5035
5036 switch (policy) {
5037 case SCHED_FIFO:
5038 case SCHED_RR:
5039 ret = MAX_USER_RT_PRIO-1;
5040 break;
5041 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005042 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005043 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 ret = 0;
5045 break;
5046 }
5047 return ret;
5048}
5049
5050/**
5051 * sys_sched_get_priority_min - return minimum RT priority.
5052 * @policy: scheduling class.
5053 *
5054 * this syscall returns the minimum rt_priority that can be used
5055 * by a given scheduling class.
5056 */
5057asmlinkage long sys_sched_get_priority_min(int policy)
5058{
5059 int ret = -EINVAL;
5060
5061 switch (policy) {
5062 case SCHED_FIFO:
5063 case SCHED_RR:
5064 ret = 1;
5065 break;
5066 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005067 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005068 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 ret = 0;
5070 }
5071 return ret;
5072}
5073
5074/**
5075 * sys_sched_rr_get_interval - return the default timeslice of a process.
5076 * @pid: pid of the process.
5077 * @interval: userspace pointer to the timeslice value.
5078 *
5079 * this syscall writes the default timeslice value of a given process
5080 * into the user-space timespec buffer. A value of '0' means infinity.
5081 */
5082asmlinkage
5083long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5084{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005085 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005086 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005087 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089
5090 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005091 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092
5093 retval = -ESRCH;
5094 read_lock(&tasklist_lock);
5095 p = find_process_by_pid(pid);
5096 if (!p)
5097 goto out_unlock;
5098
5099 retval = security_task_getscheduler(p);
5100 if (retval)
5101 goto out_unlock;
5102
Ingo Molnar77034932007-12-04 17:04:39 +01005103 /*
5104 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5105 * tasks that are on an otherwise idle runqueue:
5106 */
5107 time_slice = 0;
5108 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005109 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005110 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005111 struct sched_entity *se = &p->se;
5112 unsigned long flags;
5113 struct rq *rq;
5114
5115 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005116 if (rq->cfs.load.weight)
5117 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005118 task_rq_unlock(rq, &flags);
5119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005121 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005124
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125out_unlock:
5126 read_unlock(&tasklist_lock);
5127 return retval;
5128}
5129
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005130static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005131
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005132void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005135 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005138 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005139 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005140#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005142 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005144 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145#else
5146 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005147 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005149 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150#endif
5151#ifdef CONFIG_DEBUG_STACK_USAGE
5152 {
Al Viro10ebffd2005-11-13 16:06:56 -08005153 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 while (!*n)
5155 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005156 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157 }
5158#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005159 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005160 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005162 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163}
5164
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005165void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005167 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168
Ingo Molnar4bd77322007-07-11 21:21:47 +02005169#if BITS_PER_LONG == 32
5170 printk(KERN_INFO
5171 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005173 printk(KERN_INFO
5174 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175#endif
5176 read_lock(&tasklist_lock);
5177 do_each_thread(g, p) {
5178 /*
5179 * reset the NMI-timeout, listing all files on a slow
5180 * console might take alot of time:
5181 */
5182 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005183 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005184 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185 } while_each_thread(g, p);
5186
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005187 touch_all_softlockup_watchdogs();
5188
Ingo Molnardd41f592007-07-09 18:51:59 +02005189#ifdef CONFIG_SCHED_DEBUG
5190 sysrq_sched_debug_show();
5191#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005193 /*
5194 * Only show locks if all tasks are dumped:
5195 */
5196 if (state_filter == -1)
5197 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198}
5199
Ingo Molnar1df21052007-07-09 18:51:58 +02005200void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5201{
Ingo Molnardd41f592007-07-09 18:51:59 +02005202 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005203}
5204
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005205/**
5206 * init_idle - set up an idle thread for a given CPU
5207 * @idle: task in question
5208 * @cpu: cpu the idle task belongs to
5209 *
5210 * NOTE: this function does not set the idle thread's NEED_RESCHED
5211 * flag, to make booting more robust.
5212 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005213void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005215 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 unsigned long flags;
5217
Ingo Molnardd41f592007-07-09 18:51:59 +02005218 __sched_fork(idle);
5219 idle->se.exec_start = sched_clock();
5220
Ingo Molnarb29739f2006-06-27 02:54:51 -07005221 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005223 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224
5225 spin_lock_irqsave(&rq->lock, flags);
5226 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005227#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5228 idle->oncpu = 1;
5229#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230 spin_unlock_irqrestore(&rq->lock, flags);
5231
5232 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f52005-11-13 16:06:55 -08005233 task_thread_info(idle)->preempt_count = 0;
Ingo Molnar6478d882008-01-25 21:08:33 +01005234
Ingo Molnardd41f592007-07-09 18:51:59 +02005235 /*
5236 * The idle tasks have their own, simple scheduling class:
5237 */
5238 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239}
5240
5241/*
5242 * In a system that switches off the HZ timer nohz_cpu_mask
5243 * indicates which cpus entered this state. This is used
5244 * in the rcu update to wait only for active cpus. For system
5245 * which do not switch off the HZ timer nohz_cpu_mask should
5246 * always be CPU_MASK_NONE.
5247 */
5248cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5249
Ingo Molnar19978ca2007-11-09 22:39:38 +01005250/*
5251 * Increase the granularity value when there are more CPUs,
5252 * because with more CPUs the 'effective latency' as visible
5253 * to users decreases. But the relationship is not linear,
5254 * so pick a second-best guess by going with the log2 of the
5255 * number of CPUs.
5256 *
5257 * This idea comes from the SD scheduler of Con Kolivas:
5258 */
5259static inline void sched_init_granularity(void)
5260{
5261 unsigned int factor = 1 + ilog2(num_online_cpus());
5262 const unsigned long limit = 200000000;
5263
5264 sysctl_sched_min_granularity *= factor;
5265 if (sysctl_sched_min_granularity > limit)
5266 sysctl_sched_min_granularity = limit;
5267
5268 sysctl_sched_latency *= factor;
5269 if (sysctl_sched_latency > limit)
5270 sysctl_sched_latency = limit;
5271
5272 sysctl_sched_wakeup_granularity *= factor;
5273 sysctl_sched_batch_wakeup_granularity *= factor;
5274}
5275
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276#ifdef CONFIG_SMP
5277/*
5278 * This is how migration works:
5279 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005280 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281 * runqueue and wake up that CPU's migration thread.
5282 * 2) we down() the locked semaphore => thread blocks.
5283 * 3) migration thread wakes up (implicitly it forces the migrated
5284 * thread off the CPU)
5285 * 4) it gets the migration request and checks whether the migrated
5286 * task is still in the wrong runqueue.
5287 * 5) if it's in the wrong runqueue then the migration thread removes
5288 * it and puts it into the right queue.
5289 * 6) migration thread up()s the semaphore.
5290 * 7) we wake up and the migration is done.
5291 */
5292
5293/*
5294 * Change a given task's CPU affinity. Migrate the thread to a
5295 * proper CPU and schedule it away if the CPU it's executing on
5296 * is removed from the allowed bitmask.
5297 *
5298 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005299 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 * call is not atomic; no spinlocks may be held.
5301 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005302int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005304 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005306 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005307 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308
5309 rq = task_rq_lock(p, &flags);
5310 if (!cpus_intersects(new_mask, cpu_online_map)) {
5311 ret = -EINVAL;
5312 goto out;
5313 }
5314
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005315 if (p->sched_class->set_cpus_allowed)
5316 p->sched_class->set_cpus_allowed(p, &new_mask);
5317 else {
Ingo Molnar0eab9142008-01-25 21:08:19 +01005318 p->cpus_allowed = new_mask;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01005319 p->rt.nr_cpus_allowed = cpus_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005320 }
5321
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322 /* Can the task run on the task's current CPU? If so, we're done */
5323 if (cpu_isset(task_cpu(p), new_mask))
5324 goto out;
5325
5326 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
5327 /* Need help from migration thread: drop lock and wait. */
5328 task_rq_unlock(rq, &flags);
5329 wake_up_process(rq->migration_thread);
5330 wait_for_completion(&req.done);
5331 tlb_migrate_finish(p->mm);
5332 return 0;
5333 }
5334out:
5335 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005336
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337 return ret;
5338}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339EXPORT_SYMBOL_GPL(set_cpus_allowed);
5340
5341/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005342 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 * this because either it can't run here any more (set_cpus_allowed()
5344 * away from this CPU, or CPU going down), or because we're
5345 * attempting to rebalance this task on exec (sched_exec).
5346 *
5347 * So we race with normal scheduler movements, but that's OK, as long
5348 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005349 *
5350 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005352static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005354 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005355 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356
5357 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005358 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359
5360 rq_src = cpu_rq(src_cpu);
5361 rq_dest = cpu_rq(dest_cpu);
5362
5363 double_rq_lock(rq_src, rq_dest);
5364 /* Already moved. */
5365 if (task_cpu(p) != src_cpu)
5366 goto out;
5367 /* Affinity changed (again). */
5368 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5369 goto out;
5370
Ingo Molnardd41f592007-07-09 18:51:59 +02005371 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005372 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005373 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005374
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005376 if (on_rq) {
5377 activate_task(rq_dest, p, 0);
5378 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005380 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381out:
5382 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005383 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384}
5385
5386/*
5387 * migration_thread - this is a highprio system thread that performs
5388 * thread migration by bumping thread off CPU then 'pushing' onto
5389 * another runqueue.
5390 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005391static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005394 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395
5396 rq = cpu_rq(cpu);
5397 BUG_ON(rq->migration_thread != current);
5398
5399 set_current_state(TASK_INTERRUPTIBLE);
5400 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005401 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 spin_lock_irq(&rq->lock);
5405
5406 if (cpu_is_offline(cpu)) {
5407 spin_unlock_irq(&rq->lock);
5408 goto wait_to_die;
5409 }
5410
5411 if (rq->active_balance) {
5412 active_load_balance(rq, cpu);
5413 rq->active_balance = 0;
5414 }
5415
5416 head = &rq->migration_queue;
5417
5418 if (list_empty(head)) {
5419 spin_unlock_irq(&rq->lock);
5420 schedule();
5421 set_current_state(TASK_INTERRUPTIBLE);
5422 continue;
5423 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005424 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425 list_del_init(head->next);
5426
Nick Piggin674311d2005-06-25 14:57:27 -07005427 spin_unlock(&rq->lock);
5428 __migrate_task(req->task, cpu, req->dest_cpu);
5429 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430
5431 complete(&req->done);
5432 }
5433 __set_current_state(TASK_RUNNING);
5434 return 0;
5435
5436wait_to_die:
5437 /* Wait for kthread_stop */
5438 set_current_state(TASK_INTERRUPTIBLE);
5439 while (!kthread_should_stop()) {
5440 schedule();
5441 set_current_state(TASK_INTERRUPTIBLE);
5442 }
5443 __set_current_state(TASK_RUNNING);
5444 return 0;
5445}
5446
5447#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005448
5449static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5450{
5451 int ret;
5452
5453 local_irq_disable();
5454 ret = __migrate_task(p, src_cpu, dest_cpu);
5455 local_irq_enable();
5456 return ret;
5457}
5458
Kirill Korotaev054b9102006-12-10 02:20:11 -08005459/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005460 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005461 * NOTE: interrupts should be disabled by the caller
5462 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005463static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005465 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005467 struct rq *rq;
5468 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469
Andi Kleen3a5c3592007-10-15 17:00:14 +02005470 do {
5471 /* On same node? */
5472 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5473 cpus_and(mask, mask, p->cpus_allowed);
5474 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475
Andi Kleen3a5c3592007-10-15 17:00:14 +02005476 /* On any allowed CPU? */
5477 if (dest_cpu == NR_CPUS)
5478 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479
Andi Kleen3a5c3592007-10-15 17:00:14 +02005480 /* No more Mr. Nice Guy. */
5481 if (dest_cpu == NR_CPUS) {
Cliff Wickman470fd642007-10-18 23:40:46 -07005482 cpumask_t cpus_allowed = cpuset_cpus_allowed_locked(p);
5483 /*
5484 * Try to stay on the same cpuset, where the
5485 * current cpuset may be a subset of all cpus.
5486 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005487 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005488 * called within calls to cpuset_lock/cpuset_unlock.
5489 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005490 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005491 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005492 dest_cpu = any_online_cpu(p->cpus_allowed);
5493 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494
Andi Kleen3a5c3592007-10-15 17:00:14 +02005495 /*
5496 * Don't tell them about moving exiting tasks or
5497 * kernel threads (both mm NULL), since they never
5498 * leave kernel.
5499 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005500 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005501 printk(KERN_INFO "process %d (%s) no "
5502 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005503 task_pid_nr(p), p->comm, dead_cpu);
5504 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005505 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005506 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507}
5508
5509/*
5510 * While a dead CPU has no uninterruptible tasks queued at this point,
5511 * it might still have a nonzero ->nr_uninterruptible counter, because
5512 * for performance reasons the counter is not stricly tracking tasks to
5513 * their home CPUs. So we just add the counter to another CPU's counter,
5514 * to keep the global sum constant after CPU-down:
5515 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005516static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005518 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519 unsigned long flags;
5520
5521 local_irq_save(flags);
5522 double_rq_lock(rq_src, rq_dest);
5523 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5524 rq_src->nr_uninterruptible = 0;
5525 double_rq_unlock(rq_src, rq_dest);
5526 local_irq_restore(flags);
5527}
5528
5529/* Run through task list and migrate tasks from the dead cpu. */
5530static void migrate_live_tasks(int src_cpu)
5531{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005532 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005534 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535
Ingo Molnar48f24c42006-07-03 00:25:40 -07005536 do_each_thread(t, p) {
5537 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538 continue;
5539
Ingo Molnar48f24c42006-07-03 00:25:40 -07005540 if (task_cpu(p) == src_cpu)
5541 move_task_off_dead_cpu(src_cpu, p);
5542 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005544 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545}
5546
Ingo Molnardd41f592007-07-09 18:51:59 +02005547/*
5548 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005549 * It does so by boosting its priority to highest possible.
5550 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551 */
5552void sched_idle_next(void)
5553{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005554 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005555 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556 struct task_struct *p = rq->idle;
5557 unsigned long flags;
5558
5559 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005560 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561
Ingo Molnar48f24c42006-07-03 00:25:40 -07005562 /*
5563 * Strictly not necessary since rest of the CPUs are stopped by now
5564 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565 */
5566 spin_lock_irqsave(&rq->lock, flags);
5567
Ingo Molnardd41f592007-07-09 18:51:59 +02005568 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005569
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005570 update_rq_clock(rq);
5571 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572
5573 spin_unlock_irqrestore(&rq->lock, flags);
5574}
5575
Ingo Molnar48f24c42006-07-03 00:25:40 -07005576/*
5577 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578 * offline.
5579 */
5580void idle_task_exit(void)
5581{
5582 struct mm_struct *mm = current->active_mm;
5583
5584 BUG_ON(cpu_online(smp_processor_id()));
5585
5586 if (mm != &init_mm)
5587 switch_mm(mm, &init_mm, current);
5588 mmdrop(mm);
5589}
5590
Kirill Korotaev054b9102006-12-10 02:20:11 -08005591/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005592static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005594 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595
5596 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005597 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598
5599 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005600 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601
Ingo Molnar48f24c42006-07-03 00:25:40 -07005602 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603
5604 /*
5605 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005606 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 * fine.
5608 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005609 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005610 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005611 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612
Ingo Molnar48f24c42006-07-03 00:25:40 -07005613 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614}
5615
5616/* release_task() removes task from tasklist, so we won't find dead tasks. */
5617static void migrate_dead_tasks(unsigned int dead_cpu)
5618{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005619 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005620 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621
Ingo Molnardd41f592007-07-09 18:51:59 +02005622 for ( ; ; ) {
5623 if (!rq->nr_running)
5624 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005625 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005626 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005627 if (!next)
5628 break;
5629 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005630
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631 }
5632}
5633#endif /* CONFIG_HOTPLUG_CPU */
5634
Nick Piggine692ab52007-07-26 13:40:43 +02005635#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5636
5637static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005638 {
5639 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005640 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005641 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005642 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005643};
5644
5645static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005646 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005647 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005648 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005649 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005650 .child = sd_ctl_dir,
5651 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005652 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005653};
5654
5655static struct ctl_table *sd_alloc_ctl_entry(int n)
5656{
5657 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005658 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005659
Nick Piggine692ab52007-07-26 13:40:43 +02005660 return entry;
5661}
5662
Milton Miller6382bc92007-10-15 17:00:19 +02005663static void sd_free_ctl_entry(struct ctl_table **tablep)
5664{
Milton Millercd790072007-10-17 16:55:11 +02005665 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005666
Milton Millercd790072007-10-17 16:55:11 +02005667 /*
5668 * In the intermediate directories, both the child directory and
5669 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005670 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02005671 * static strings and all have proc handlers.
5672 */
5673 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005674 if (entry->child)
5675 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02005676 if (entry->proc_handler == NULL)
5677 kfree(entry->procname);
5678 }
Milton Miller6382bc92007-10-15 17:00:19 +02005679
5680 kfree(*tablep);
5681 *tablep = NULL;
5682}
5683
Nick Piggine692ab52007-07-26 13:40:43 +02005684static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005685set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005686 const char *procname, void *data, int maxlen,
5687 mode_t mode, proc_handler *proc_handler)
5688{
Nick Piggine692ab52007-07-26 13:40:43 +02005689 entry->procname = procname;
5690 entry->data = data;
5691 entry->maxlen = maxlen;
5692 entry->mode = mode;
5693 entry->proc_handler = proc_handler;
5694}
5695
5696static struct ctl_table *
5697sd_alloc_ctl_domain_table(struct sched_domain *sd)
5698{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005699 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005700
Milton Millerad1cdc12007-10-15 17:00:19 +02005701 if (table == NULL)
5702 return NULL;
5703
Alexey Dobriyane0361852007-08-09 11:16:46 +02005704 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005705 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005706 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005707 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005708 set_table_entry(&table[2], "busy_idx", &sd->busy_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[3], "idle_idx", &sd->idle_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[4], "newidle_idx", &sd->newidle_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[5], "wake_idx", &sd->wake_idx,
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[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005717 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005718 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005719 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005720 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005721 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005722 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005723 &sd->cache_nice_tries,
5724 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005725 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005726 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005727 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005728
5729 return table;
5730}
5731
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005732static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005733{
5734 struct ctl_table *entry, *table;
5735 struct sched_domain *sd;
5736 int domain_num = 0, i;
5737 char buf[32];
5738
5739 for_each_domain(cpu, sd)
5740 domain_num++;
5741 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005742 if (table == NULL)
5743 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005744
5745 i = 0;
5746 for_each_domain(cpu, sd) {
5747 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005748 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005749 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005750 entry->child = sd_alloc_ctl_domain_table(sd);
5751 entry++;
5752 i++;
5753 }
5754 return table;
5755}
5756
5757static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005758static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005759{
5760 int i, cpu_num = num_online_cpus();
5761 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5762 char buf[32];
5763
Milton Miller73785472007-10-24 18:23:48 +02005764 WARN_ON(sd_ctl_dir[0].child);
5765 sd_ctl_dir[0].child = entry;
5766
Milton Millerad1cdc12007-10-15 17:00:19 +02005767 if (entry == NULL)
5768 return;
5769
Milton Miller97b6ea72007-10-15 17:00:19 +02005770 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005771 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005772 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005773 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005774 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005775 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005776 }
Milton Miller73785472007-10-24 18:23:48 +02005777
5778 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005779 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5780}
Milton Miller6382bc92007-10-15 17:00:19 +02005781
Milton Miller73785472007-10-24 18:23:48 +02005782/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005783static void unregister_sched_domain_sysctl(void)
5784{
Milton Miller73785472007-10-24 18:23:48 +02005785 if (sd_sysctl_header)
5786 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005787 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005788 if (sd_ctl_dir[0].child)
5789 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005790}
Nick Piggine692ab52007-07-26 13:40:43 +02005791#else
Milton Miller6382bc92007-10-15 17:00:19 +02005792static void register_sched_domain_sysctl(void)
5793{
5794}
5795static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005796{
5797}
5798#endif
5799
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800/*
5801 * migration_call - callback that gets triggered when a CPU is added.
5802 * Here we can start up the necessary migration thread for the new CPU.
5803 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005804static int __cpuinit
5805migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005808 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005810 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811
5812 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005813
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005815 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02005816 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817 if (IS_ERR(p))
5818 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 kthread_bind(p, cpu);
5820 /* Must be high prio: stop_machine expects to yield to it. */
5821 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02005822 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823 task_rq_unlock(rq, &flags);
5824 cpu_rq(cpu)->migration_thread = p;
5825 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005826
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005828 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005829 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005831
5832 /* Update our root-domain */
5833 rq = cpu_rq(cpu);
5834 spin_lock_irqsave(&rq->lock, flags);
5835 if (rq->rd) {
5836 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5837 cpu_set(cpu, rq->rd->online);
5838 }
5839 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005841
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842#ifdef CONFIG_HOTPLUG_CPU
5843 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005844 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005845 if (!cpu_rq(cpu)->migration_thread)
5846 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005847 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005848 kthread_bind(cpu_rq(cpu)->migration_thread,
5849 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 kthread_stop(cpu_rq(cpu)->migration_thread);
5851 cpu_rq(cpu)->migration_thread = NULL;
5852 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005853
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005855 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07005856 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857 migrate_live_tasks(cpu);
5858 rq = cpu_rq(cpu);
5859 kthread_stop(rq->migration_thread);
5860 rq->migration_thread = NULL;
5861 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005862 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005863 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005864 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02005866 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
5867 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005869 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07005870 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871 migrate_nr_uninterruptible(rq);
5872 BUG_ON(rq->nr_running != 0);
5873
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005874 /*
5875 * No need to migrate the tasks: it was best-effort if
5876 * they didn't take sched_hotcpu_mutex. Just wake up
5877 * the requestors.
5878 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879 spin_lock_irq(&rq->lock);
5880 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005881 struct migration_req *req;
5882
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005884 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885 list_del_init(&req->list);
5886 complete(&req->done);
5887 }
5888 spin_unlock_irq(&rq->lock);
5889 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005890
Gregory Haskins08f503b2008-03-10 17:59:11 -04005891 case CPU_DYING:
5892 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01005893 /* Update our root-domain */
5894 rq = cpu_rq(cpu);
5895 spin_lock_irqsave(&rq->lock, flags);
5896 if (rq->rd) {
5897 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5898 cpu_clear(cpu, rq->rd->online);
5899 }
5900 spin_unlock_irqrestore(&rq->lock, flags);
5901 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902#endif
5903 }
5904 return NOTIFY_OK;
5905}
5906
5907/* Register at highest priority so that task migration (migrate_all_tasks)
5908 * happens before everything else.
5909 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005910static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911 .notifier_call = migration_call,
5912 .priority = 10
5913};
5914
Adrian Bunke6fe6642007-11-09 22:39:39 +01005915void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916{
5917 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005918 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005919
5920 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005921 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5922 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5924 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925}
5926#endif
5927
5928#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005929
5930/* Number of possible processor ids */
5931int nr_cpu_ids __read_mostly = NR_CPUS;
5932EXPORT_SYMBOL(nr_cpu_ids);
5933
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005934#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005935
5936static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level)
5937{
5938 struct sched_group *group = sd->groups;
5939 cpumask_t groupmask;
5940 char str[NR_CPUS];
5941
5942 cpumask_scnprintf(str, NR_CPUS, sd->span);
5943 cpus_clear(groupmask);
5944
5945 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5946
5947 if (!(sd->flags & SD_LOAD_BALANCE)) {
5948 printk("does not load-balance\n");
5949 if (sd->parent)
5950 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5951 " has parent");
5952 return -1;
5953 }
5954
5955 printk(KERN_CONT "span %s\n", str);
5956
5957 if (!cpu_isset(cpu, sd->span)) {
5958 printk(KERN_ERR "ERROR: domain->span does not contain "
5959 "CPU%d\n", cpu);
5960 }
5961 if (!cpu_isset(cpu, group->cpumask)) {
5962 printk(KERN_ERR "ERROR: domain->groups does not contain"
5963 " CPU%d\n", cpu);
5964 }
5965
5966 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5967 do {
5968 if (!group) {
5969 printk("\n");
5970 printk(KERN_ERR "ERROR: group is NULL\n");
5971 break;
5972 }
5973
5974 if (!group->__cpu_power) {
5975 printk(KERN_CONT "\n");
5976 printk(KERN_ERR "ERROR: domain->cpu_power not "
5977 "set\n");
5978 break;
5979 }
5980
5981 if (!cpus_weight(group->cpumask)) {
5982 printk(KERN_CONT "\n");
5983 printk(KERN_ERR "ERROR: empty group\n");
5984 break;
5985 }
5986
5987 if (cpus_intersects(groupmask, group->cpumask)) {
5988 printk(KERN_CONT "\n");
5989 printk(KERN_ERR "ERROR: repeated CPUs\n");
5990 break;
5991 }
5992
5993 cpus_or(groupmask, groupmask, group->cpumask);
5994
5995 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5996 printk(KERN_CONT " %s", str);
5997
5998 group = group->next;
5999 } while (group != sd->groups);
6000 printk(KERN_CONT "\n");
6001
6002 if (!cpus_equal(sd->span, groupmask))
6003 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6004
6005 if (sd->parent && !cpus_subset(groupmask, sd->parent->span))
6006 printk(KERN_ERR "ERROR: parent span is not a superset "
6007 "of domain->span\n");
6008 return 0;
6009}
6010
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011static void sched_domain_debug(struct sched_domain *sd, int cpu)
6012{
6013 int level = 0;
6014
Nick Piggin41c7ce92005-06-25 14:57:24 -07006015 if (!sd) {
6016 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6017 return;
6018 }
6019
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6021
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006022 for (;;) {
6023 if (sched_domain_debug_one(sd, cpu, level))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025 level++;
6026 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006027 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006028 break;
6029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030}
6031#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006032# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033#endif
6034
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006035static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006036{
6037 if (cpus_weight(sd->span) == 1)
6038 return 1;
6039
6040 /* Following flags need at least 2 groups */
6041 if (sd->flags & (SD_LOAD_BALANCE |
6042 SD_BALANCE_NEWIDLE |
6043 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006044 SD_BALANCE_EXEC |
6045 SD_SHARE_CPUPOWER |
6046 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006047 if (sd->groups != sd->groups->next)
6048 return 0;
6049 }
6050
6051 /* Following flags don't use groups */
6052 if (sd->flags & (SD_WAKE_IDLE |
6053 SD_WAKE_AFFINE |
6054 SD_WAKE_BALANCE))
6055 return 0;
6056
6057 return 1;
6058}
6059
Ingo Molnar48f24c42006-07-03 00:25:40 -07006060static int
6061sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006062{
6063 unsigned long cflags = sd->flags, pflags = parent->flags;
6064
6065 if (sd_degenerate(parent))
6066 return 1;
6067
6068 if (!cpus_equal(sd->span, parent->span))
6069 return 0;
6070
6071 /* Does parent contain flags not in child? */
6072 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6073 if (cflags & SD_WAKE_AFFINE)
6074 pflags &= ~SD_WAKE_BALANCE;
6075 /* Flags needing groups don't count if only 1 group in parent */
6076 if (parent->groups == parent->groups->next) {
6077 pflags &= ~(SD_LOAD_BALANCE |
6078 SD_BALANCE_NEWIDLE |
6079 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006080 SD_BALANCE_EXEC |
6081 SD_SHARE_CPUPOWER |
6082 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006083 }
6084 if (~cflags & pflags)
6085 return 0;
6086
6087 return 1;
6088}
6089
Gregory Haskins57d885f2008-01-25 21:08:18 +01006090static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6091{
6092 unsigned long flags;
6093 const struct sched_class *class;
6094
6095 spin_lock_irqsave(&rq->lock, flags);
6096
6097 if (rq->rd) {
6098 struct root_domain *old_rd = rq->rd;
6099
Ingo Molnar0eab9142008-01-25 21:08:19 +01006100 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006101 if (class->leave_domain)
6102 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006103 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006104
Gregory Haskinsdc938522008-01-25 21:08:26 +01006105 cpu_clear(rq->cpu, old_rd->span);
6106 cpu_clear(rq->cpu, old_rd->online);
6107
Gregory Haskins57d885f2008-01-25 21:08:18 +01006108 if (atomic_dec_and_test(&old_rd->refcount))
6109 kfree(old_rd);
6110 }
6111
6112 atomic_inc(&rd->refcount);
6113 rq->rd = rd;
6114
Gregory Haskinsdc938522008-01-25 21:08:26 +01006115 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006116 if (cpu_isset(rq->cpu, cpu_online_map))
6117 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006118
Ingo Molnar0eab9142008-01-25 21:08:19 +01006119 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006120 if (class->join_domain)
6121 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006122 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006123
6124 spin_unlock_irqrestore(&rq->lock, flags);
6125}
6126
Gregory Haskinsdc938522008-01-25 21:08:26 +01006127static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006128{
6129 memset(rd, 0, sizeof(*rd));
6130
Gregory Haskinsdc938522008-01-25 21:08:26 +01006131 cpus_clear(rd->span);
6132 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006133}
6134
6135static void init_defrootdomain(void)
6136{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006137 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006138 atomic_set(&def_root_domain.refcount, 1);
6139}
6140
Gregory Haskinsdc938522008-01-25 21:08:26 +01006141static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006142{
6143 struct root_domain *rd;
6144
6145 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6146 if (!rd)
6147 return NULL;
6148
Gregory Haskinsdc938522008-01-25 21:08:26 +01006149 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006150
6151 return rd;
6152}
6153
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006155 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156 * hold the hotplug lock.
6157 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006158static void
6159cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006161 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006162 struct sched_domain *tmp;
6163
6164 /* Remove the sched domains which do not contribute to scheduling. */
6165 for (tmp = sd; tmp; tmp = tmp->parent) {
6166 struct sched_domain *parent = tmp->parent;
6167 if (!parent)
6168 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006169 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006170 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006171 if (parent->parent)
6172 parent->parent->child = tmp;
6173 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006174 }
6175
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006176 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006177 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006178 if (sd)
6179 sd->child = NULL;
6180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181
6182 sched_domain_debug(sd, cpu);
6183
Gregory Haskins57d885f2008-01-25 21:08:18 +01006184 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006185 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186}
6187
6188/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006189static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190
6191/* Setup the mask of cpus configured for isolated domains */
6192static int __init isolated_cpu_setup(char *str)
6193{
6194 int ints[NR_CPUS], i;
6195
6196 str = get_options(str, ARRAY_SIZE(ints), ints);
6197 cpus_clear(cpu_isolated_map);
6198 for (i = 1; i <= ints[0]; i++)
6199 if (ints[i] < NR_CPUS)
6200 cpu_set(ints[i], cpu_isolated_map);
6201 return 1;
6202}
6203
Ingo Molnar8927f492007-10-15 17:00:13 +02006204__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205
6206/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006207 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6208 * to a function which identifies what group(along with sched group) a CPU
6209 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6210 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211 *
6212 * init_sched_build_groups will build a circular linked list of the groups
6213 * covered by the given span, and will set each group's ->cpumask correctly,
6214 * and ->cpu_power to 0.
6215 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006216static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006217init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
6218 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
6219 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220{
6221 struct sched_group *first = NULL, *last = NULL;
6222 cpumask_t covered = CPU_MASK_NONE;
6223 int i;
6224
6225 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006226 struct sched_group *sg;
6227 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228 int j;
6229
6230 if (cpu_isset(i, covered))
6231 continue;
6232
6233 sg->cpumask = CPU_MASK_NONE;
Eric Dumazet5517d862007-05-08 00:32:57 -07006234 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235
6236 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006237 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238 continue;
6239
6240 cpu_set(j, covered);
6241 cpu_set(j, sg->cpumask);
6242 }
6243 if (!first)
6244 first = sg;
6245 if (last)
6246 last->next = sg;
6247 last = sg;
6248 }
6249 last->next = first;
6250}
6251
John Hawkes9c1cfda2005-09-06 15:18:14 -07006252#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253
John Hawkes9c1cfda2005-09-06 15:18:14 -07006254#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006255
John Hawkes9c1cfda2005-09-06 15:18:14 -07006256/**
6257 * find_next_best_node - find the next node to include in a sched_domain
6258 * @node: node whose sched_domain we're building
6259 * @used_nodes: nodes already in the sched_domain
6260 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006261 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006262 * finds the closest node not already in the @used_nodes map.
6263 *
6264 * Should use nodemask_t.
6265 */
6266static int find_next_best_node(int node, unsigned long *used_nodes)
6267{
6268 int i, n, val, min_val, best_node = 0;
6269
6270 min_val = INT_MAX;
6271
6272 for (i = 0; i < MAX_NUMNODES; i++) {
6273 /* Start at @node */
6274 n = (node + i) % MAX_NUMNODES;
6275
6276 if (!nr_cpus_node(n))
6277 continue;
6278
6279 /* Skip already used nodes */
6280 if (test_bit(n, used_nodes))
6281 continue;
6282
6283 /* Simple min distance search */
6284 val = node_distance(node, n);
6285
6286 if (val < min_val) {
6287 min_val = val;
6288 best_node = n;
6289 }
6290 }
6291
6292 set_bit(best_node, used_nodes);
6293 return best_node;
6294}
6295
6296/**
6297 * sched_domain_node_span - get a cpumask for a node's sched_domain
6298 * @node: node whose cpumask we're constructing
6299 * @size: number of nodes to include in this span
6300 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006301 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006302 * should be one that prevents unnecessary balancing, but also spreads tasks
6303 * out optimally.
6304 */
6305static cpumask_t sched_domain_node_span(int node)
6306{
John Hawkes9c1cfda2005-09-06 15:18:14 -07006307 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006308 cpumask_t span, nodemask;
6309 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006310
6311 cpus_clear(span);
6312 bitmap_zero(used_nodes, MAX_NUMNODES);
6313
6314 nodemask = node_to_cpumask(node);
6315 cpus_or(span, span, nodemask);
6316 set_bit(node, used_nodes);
6317
6318 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6319 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006320
John Hawkes9c1cfda2005-09-06 15:18:14 -07006321 nodemask = node_to_cpumask(next_node);
6322 cpus_or(span, span, nodemask);
6323 }
6324
6325 return span;
6326}
6327#endif
6328
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006329int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006330
John Hawkes9c1cfda2005-09-06 15:18:14 -07006331/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006332 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006333 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334#ifdef CONFIG_SCHED_SMT
6335static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006336static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006337
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006338static int
6339cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006341 if (sg)
6342 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343 return cpu;
6344}
6345#endif
6346
Ingo Molnar48f24c42006-07-03 00:25:40 -07006347/*
6348 * multi-core sched-domains:
6349 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006350#ifdef CONFIG_SCHED_MC
6351static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006352static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006353#endif
6354
6355#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006356static int
6357cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006358{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006359 int group;
Mike Travisd5a74302007-10-16 01:24:05 -07006360 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006361 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006362 group = first_cpu(mask);
6363 if (sg)
6364 *sg = &per_cpu(sched_group_core, group);
6365 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006366}
6367#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006368static int
6369cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006370{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006371 if (sg)
6372 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006373 return cpu;
6374}
6375#endif
6376
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006378static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006379
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006380static int
6381cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006383 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006384#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006385 cpumask_t mask = cpu_coregroup_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);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006388#elif defined(CONFIG_SCHED_SMT)
Mike Travisd5a74302007-10-16 01:24:05 -07006389 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006390 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006391 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006393 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006395 if (sg)
6396 *sg = &per_cpu(sched_group_phys, group);
6397 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398}
6399
6400#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006401/*
6402 * The init_sched_build_groups can't handle what we want to do with node
6403 * groups, so roll our own. Now each node has its own list of groups which
6404 * gets dynamically allocated.
6405 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07006407static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07006408
6409static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006410static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006411
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006412static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
6413 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006415 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
6416 int group;
6417
6418 cpus_and(nodemask, nodemask, *cpu_map);
6419 group = first_cpu(nodemask);
6420
6421 if (sg)
6422 *sg = &per_cpu(sched_group_allnodes, group);
6423 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006425
Siddha, Suresh B08069032006-03-27 01:15:23 -08006426static void init_numa_sched_groups_power(struct sched_group *group_head)
6427{
6428 struct sched_group *sg = group_head;
6429 int j;
6430
6431 if (!sg)
6432 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006433 do {
6434 for_each_cpu_mask(j, sg->cpumask) {
6435 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006436
Andi Kleen3a5c3592007-10-15 17:00:14 +02006437 sd = &per_cpu(phys_domains, j);
6438 if (j != first_cpu(sd->groups->cpumask)) {
6439 /*
6440 * Only add "power" once for each
6441 * physical package.
6442 */
6443 continue;
6444 }
6445
6446 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006447 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006448 sg = sg->next;
6449 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006450}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451#endif
6452
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006453#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006454/* Free memory allocated for various sched_group structures */
6455static void free_sched_groups(const cpumask_t *cpu_map)
6456{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006457 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006458
6459 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006460 struct sched_group **sched_group_nodes
6461 = sched_group_nodes_bycpu[cpu];
6462
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006463 if (!sched_group_nodes)
6464 continue;
6465
6466 for (i = 0; i < MAX_NUMNODES; i++) {
6467 cpumask_t nodemask = node_to_cpumask(i);
6468 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6469
6470 cpus_and(nodemask, nodemask, *cpu_map);
6471 if (cpus_empty(nodemask))
6472 continue;
6473
6474 if (sg == NULL)
6475 continue;
6476 sg = sg->next;
6477next_sg:
6478 oldsg = sg;
6479 sg = sg->next;
6480 kfree(oldsg);
6481 if (oldsg != sched_group_nodes[i])
6482 goto next_sg;
6483 }
6484 kfree(sched_group_nodes);
6485 sched_group_nodes_bycpu[cpu] = NULL;
6486 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006487}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006488#else
6489static void free_sched_groups(const cpumask_t *cpu_map)
6490{
6491}
6492#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006493
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006495 * Initialize sched groups cpu_power.
6496 *
6497 * cpu_power indicates the capacity of sched group, which is used while
6498 * distributing the load between different sched groups in a sched domain.
6499 * Typically cpu_power for all the groups in a sched domain will be same unless
6500 * there are asymmetries in the topology. If there are asymmetries, group
6501 * having more cpu_power will pickup more load compared to the group having
6502 * less cpu_power.
6503 *
6504 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6505 * the maximum number of tasks a group can handle in the presence of other idle
6506 * or lightly loaded groups in the same sched domain.
6507 */
6508static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6509{
6510 struct sched_domain *child;
6511 struct sched_group *group;
6512
6513 WARN_ON(!sd || !sd->groups);
6514
6515 if (cpu != first_cpu(sd->groups->cpumask))
6516 return;
6517
6518 child = sd->child;
6519
Eric Dumazet5517d862007-05-08 00:32:57 -07006520 sd->groups->__cpu_power = 0;
6521
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006522 /*
6523 * For perf policy, if the groups in child domain share resources
6524 * (for example cores sharing some portions of the cache hierarchy
6525 * or SMT), then set this domain groups cpu_power such that each group
6526 * can handle only one task, when there are other idle groups in the
6527 * same sched domain.
6528 */
6529 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6530 (child->flags &
6531 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006532 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006533 return;
6534 }
6535
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006536 /*
6537 * add cpu_power of each child group to this groups cpu_power
6538 */
6539 group = child->groups;
6540 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006541 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006542 group = group->next;
6543 } while (group != child->groups);
6544}
6545
6546/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006547 * Build sched domains for a given set of cpus and attach the sched domains
6548 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006550static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551{
6552 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006553 struct root_domain *rd;
John Hawkesd1b55132005-09-06 15:18:14 -07006554#ifdef CONFIG_NUMA
6555 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006556 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006557
6558 /*
6559 * Allocate the per-node list of sched groups
6560 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006561 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006562 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006563 if (!sched_group_nodes) {
6564 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006565 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006566 }
6567 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6568#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569
Gregory Haskinsdc938522008-01-25 21:08:26 +01006570 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006571 if (!rd) {
6572 printk(KERN_WARNING "Cannot alloc root domain\n");
6573 return -ENOMEM;
6574 }
6575
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006577 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006579 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006580 struct sched_domain *sd = NULL, *p;
6581 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6582
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006583 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584
6585#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006586 if (cpus_weight(*cpu_map) >
6587 SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006588 sd = &per_cpu(allnodes_domains, i);
6589 *sd = SD_ALLNODES_INIT;
6590 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006591 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006592 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006593 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006594 } else
6595 p = NULL;
6596
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006599 sd->span = sched_domain_node_span(cpu_to_node(i));
6600 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006601 if (p)
6602 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006603 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604#endif
6605
6606 p = sd;
6607 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608 *sd = SD_CPU_INIT;
6609 sd->span = nodemask;
6610 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006611 if (p)
6612 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006613 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006615#ifdef CONFIG_SCHED_MC
6616 p = sd;
6617 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006618 *sd = SD_MC_INIT;
6619 sd->span = cpu_coregroup_map(i);
6620 cpus_and(sd->span, sd->span, *cpu_map);
6621 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006622 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006623 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006624#endif
6625
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626#ifdef CONFIG_SCHED_SMT
6627 p = sd;
6628 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629 *sd = SD_SIBLING_INIT;
Mike Travisd5a74302007-10-16 01:24:05 -07006630 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006631 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006633 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006634 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635#endif
6636 }
6637
6638#ifdef CONFIG_SCHED_SMT
6639 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006640 for_each_cpu_mask(i, *cpu_map) {
Mike Travisd5a74302007-10-16 01:24:05 -07006641 cpumask_t this_sibling_map = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006642 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643 if (i != first_cpu(this_sibling_map))
6644 continue;
6645
Ingo Molnardd41f592007-07-09 18:51:59 +02006646 init_sched_build_groups(this_sibling_map, cpu_map,
6647 &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648 }
6649#endif
6650
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006651#ifdef CONFIG_SCHED_MC
6652 /* Set up multi-core groups */
6653 for_each_cpu_mask(i, *cpu_map) {
6654 cpumask_t this_core_map = cpu_coregroup_map(i);
6655 cpus_and(this_core_map, this_core_map, *cpu_map);
6656 if (i != first_cpu(this_core_map))
6657 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006658 init_sched_build_groups(this_core_map, cpu_map,
6659 &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006660 }
6661#endif
6662
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663 /* Set up physical groups */
6664 for (i = 0; i < MAX_NUMNODES; i++) {
6665 cpumask_t nodemask = node_to_cpumask(i);
6666
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006667 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668 if (cpus_empty(nodemask))
6669 continue;
6670
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006671 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672 }
6673
6674#ifdef CONFIG_NUMA
6675 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006676 if (sd_allnodes)
Ingo Molnardd41f592007-07-09 18:51:59 +02006677 init_sched_build_groups(*cpu_map, cpu_map,
6678 &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006679
6680 for (i = 0; i < MAX_NUMNODES; i++) {
6681 /* Set up node groups */
6682 struct sched_group *sg, *prev;
6683 cpumask_t nodemask = node_to_cpumask(i);
6684 cpumask_t domainspan;
6685 cpumask_t covered = CPU_MASK_NONE;
6686 int j;
6687
6688 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006689 if (cpus_empty(nodemask)) {
6690 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006691 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006692 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006693
6694 domainspan = sched_domain_node_span(i);
6695 cpus_and(domainspan, domainspan, *cpu_map);
6696
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006697 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006698 if (!sg) {
6699 printk(KERN_WARNING "Can not alloc domain group for "
6700 "node %d\n", i);
6701 goto error;
6702 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006703 sched_group_nodes[i] = sg;
6704 for_each_cpu_mask(j, nodemask) {
6705 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02006706
John Hawkes9c1cfda2005-09-06 15:18:14 -07006707 sd = &per_cpu(node_domains, j);
6708 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006709 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006710 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006711 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006712 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006713 cpus_or(covered, covered, nodemask);
6714 prev = sg;
6715
6716 for (j = 0; j < MAX_NUMNODES; j++) {
6717 cpumask_t tmp, notcovered;
6718 int n = (i + j) % MAX_NUMNODES;
6719
6720 cpus_complement(notcovered, covered);
6721 cpus_and(tmp, notcovered, *cpu_map);
6722 cpus_and(tmp, tmp, domainspan);
6723 if (cpus_empty(tmp))
6724 break;
6725
6726 nodemask = node_to_cpumask(n);
6727 cpus_and(tmp, tmp, nodemask);
6728 if (cpus_empty(tmp))
6729 continue;
6730
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006731 sg = kmalloc_node(sizeof(struct sched_group),
6732 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006733 if (!sg) {
6734 printk(KERN_WARNING
6735 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006736 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006737 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006738 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006739 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006740 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006741 cpus_or(covered, covered, tmp);
6742 prev->next = sg;
6743 prev = sg;
6744 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746#endif
6747
6748 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006749#ifdef CONFIG_SCHED_SMT
6750 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006751 struct sched_domain *sd = &per_cpu(cpu_domains, i);
6752
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006753 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006754 }
6755#endif
6756#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006757 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006758 struct sched_domain *sd = &per_cpu(core_domains, i);
6759
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006760 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006761 }
6762#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006764 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006765 struct sched_domain *sd = &per_cpu(phys_domains, i);
6766
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006767 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768 }
6769
John Hawkes9c1cfda2005-09-06 15:18:14 -07006770#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006771 for (i = 0; i < MAX_NUMNODES; i++)
6772 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006773
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006774 if (sd_allnodes) {
6775 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006776
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006777 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006778 init_numa_sched_groups_power(sg);
6779 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006780#endif
6781
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006783 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006784 struct sched_domain *sd;
6785#ifdef CONFIG_SCHED_SMT
6786 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006787#elif defined(CONFIG_SCHED_MC)
6788 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789#else
6790 sd = &per_cpu(phys_domains, i);
6791#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006792 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006794
6795 return 0;
6796
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006797#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006798error:
6799 free_sched_groups(cpu_map);
6800 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006801#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802}
Paul Jackson029190c2007-10-18 23:40:20 -07006803
6804static cpumask_t *doms_cur; /* current sched domains */
6805static int ndoms_cur; /* number of sched domains in 'doms_cur' */
6806
6807/*
6808 * Special case: If a kmalloc of a doms_cur partition (array of
6809 * cpumask_t) fails, then fallback to a single sched domain,
6810 * as determined by the single cpumask_t fallback_doms.
6811 */
6812static cpumask_t fallback_doms;
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
Paul Jackson029190c2007-10-18 23:40:20 -07006823 ndoms_cur = 1;
6824 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6825 if (!doms_cur)
6826 doms_cur = &fallback_doms;
6827 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Milton Miller73785472007-10-24 18:23:48 +02006828 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02006829 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006830
6831 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006832}
6833
6834static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006836 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006837}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006839/*
6840 * Detach sched domains from a group of cpus specified in cpu_map
6841 * These cpus will now be attached to the NULL domain
6842 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006843static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006844{
6845 int i;
6846
Milton Miller6382bc92007-10-15 17:00:19 +02006847 unregister_sched_domain_sysctl();
6848
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006849 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006850 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006851 synchronize_sched();
6852 arch_destroy_sched_domains(cpu_map);
6853}
6854
Paul Jackson029190c2007-10-18 23:40:20 -07006855/*
6856 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006857 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006858 * doms_new[] to the current sched domain partitioning, doms_cur[].
6859 * It destroys each deleted domain and builds each new domain.
6860 *
6861 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006862 * The masks don't intersect (don't overlap.) We should setup one
6863 * sched domain for each mask. CPUs not in any of the cpumasks will
6864 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006865 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6866 * it as it is.
6867 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006868 * The passed in 'doms_new' should be kmalloc'd. This routine takes
6869 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07006870 * failed the kmalloc call, then it can pass in doms_new == NULL,
6871 * and partition_sched_domains() will fallback to the single partition
6872 * 'fallback_doms'.
6873 *
6874 * Call with hotplug lock held
6875 */
6876void partition_sched_domains(int ndoms_new, cpumask_t *doms_new)
6877{
6878 int i, j;
6879
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006880 lock_doms_cur();
6881
Milton Miller73785472007-10-24 18:23:48 +02006882 /* always unregister in case we don't destroy any domains */
6883 unregister_sched_domain_sysctl();
6884
Paul Jackson029190c2007-10-18 23:40:20 -07006885 if (doms_new == NULL) {
6886 ndoms_new = 1;
6887 doms_new = &fallback_doms;
6888 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
6889 }
6890
6891 /* Destroy deleted domains */
6892 for (i = 0; i < ndoms_cur; i++) {
6893 for (j = 0; j < ndoms_new; j++) {
6894 if (cpus_equal(doms_cur[i], doms_new[j]))
6895 goto match1;
6896 }
6897 /* no match - a current sched domain not in new doms_new[] */
6898 detach_destroy_domains(doms_cur + i);
6899match1:
6900 ;
6901 }
6902
6903 /* Build new domains */
6904 for (i = 0; i < ndoms_new; i++) {
6905 for (j = 0; j < ndoms_cur; j++) {
6906 if (cpus_equal(doms_new[i], doms_cur[j]))
6907 goto match2;
6908 }
6909 /* no match - add a new doms_new */
6910 build_sched_domains(doms_new + i);
6911match2:
6912 ;
6913 }
6914
6915 /* Remember the new sched domains */
6916 if (doms_cur != &fallback_doms)
6917 kfree(doms_cur);
6918 doms_cur = doms_new;
6919 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006920
6921 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006922
6923 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07006924}
6925
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006926#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Adrian Bunk6707de002007-08-12 18:08:19 +02006927static int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006928{
6929 int err;
6930
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006931 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006932 detach_destroy_domains(&cpu_online_map);
6933 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006934 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006935
6936 return err;
6937}
6938
6939static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6940{
6941 int ret;
6942
6943 if (buf[0] != '0' && buf[0] != '1')
6944 return -EINVAL;
6945
6946 if (smt)
6947 sched_smt_power_savings = (buf[0] == '1');
6948 else
6949 sched_mc_power_savings = (buf[0] == '1');
6950
6951 ret = arch_reinit_sched_domains();
6952
6953 return ret ? ret : count;
6954}
6955
Adrian Bunk6707de002007-08-12 18:08:19 +02006956#ifdef CONFIG_SCHED_MC
6957static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6958{
6959 return sprintf(page, "%u\n", sched_mc_power_savings);
6960}
6961static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6962 const char *buf, size_t count)
6963{
6964 return sched_power_savings_store(buf, count, 0);
6965}
6966static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6967 sched_mc_power_savings_store);
6968#endif
6969
6970#ifdef CONFIG_SCHED_SMT
6971static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6972{
6973 return sprintf(page, "%u\n", sched_smt_power_savings);
6974}
6975static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6976 const char *buf, size_t count)
6977{
6978 return sched_power_savings_store(buf, count, 1);
6979}
6980static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6981 sched_smt_power_savings_store);
6982#endif
6983
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006984int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6985{
6986 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006987
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006988#ifdef CONFIG_SCHED_SMT
6989 if (smt_capable())
6990 err = sysfs_create_file(&cls->kset.kobj,
6991 &attr_sched_smt_power_savings.attr);
6992#endif
6993#ifdef CONFIG_SCHED_MC
6994 if (!err && mc_capable())
6995 err = sysfs_create_file(&cls->kset.kobj,
6996 &attr_sched_mc_power_savings.attr);
6997#endif
6998 return err;
6999}
7000#endif
7001
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007003 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007005 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006 * which will prevent rebalancing while the sched domains are recalculated.
7007 */
7008static int update_sched_domains(struct notifier_block *nfb,
7009 unsigned long action, void *hcpu)
7010{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011 switch (action) {
7012 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007013 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007014 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007015 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007016 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017 return NOTIFY_OK;
7018
7019 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007020 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007021 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007022 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007023 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007024 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007025 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007026 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027 /*
7028 * Fall through and re-initialise the domains.
7029 */
7030 break;
7031 default:
7032 return NOTIFY_DONE;
7033 }
7034
7035 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007036 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037
7038 return NOTIFY_OK;
7039}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040
7041void __init sched_init_smp(void)
7042{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007043 cpumask_t non_isolated_cpus;
7044
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007045 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007046 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007047 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007048 if (cpus_empty(non_isolated_cpus))
7049 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007050 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051 /* XXX: Theoretical race here - CPU may be hotplugged now */
7052 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007053
7054 /* Move init over to a non-isolated CPU */
7055 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
7056 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007057 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007058}
7059#else
7060void __init sched_init_smp(void)
7061{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007062 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007063}
7064#endif /* CONFIG_SMP */
7065
7066int in_sched_functions(unsigned long addr)
7067{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068 return in_lock_functions(addr) ||
7069 (addr >= (unsigned long)__sched_text_start
7070 && addr < (unsigned long)__sched_text_end);
7071}
7072
Alexey Dobriyana9957442007-10-15 17:00:13 +02007073static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007074{
7075 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02007076#ifdef CONFIG_FAIR_GROUP_SCHED
7077 cfs_rq->rq = rq;
7078#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007079 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007080}
7081
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007082static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7083{
7084 struct rt_prio_array *array;
7085 int i;
7086
7087 array = &rt_rq->active;
7088 for (i = 0; i < MAX_RT_PRIO; i++) {
7089 INIT_LIST_HEAD(array->queue + i);
7090 __clear_bit(i, array->bitmap);
7091 }
7092 /* delimiter for bitsearch: */
7093 __set_bit(MAX_RT_PRIO, array->bitmap);
7094
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007095#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007096 rt_rq->highest_prio = MAX_RT_PRIO;
7097#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007098#ifdef CONFIG_SMP
7099 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007100 rt_rq->overloaded = 0;
7101#endif
7102
7103 rt_rq->rt_time = 0;
7104 rt_rq->rt_throttled = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007105
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007106#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007107 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007108 rt_rq->rq = rq;
7109#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007110}
7111
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007112#ifdef CONFIG_FAIR_GROUP_SCHED
7113static void init_tg_cfs_entry(struct rq *rq, struct task_group *tg,
7114 struct cfs_rq *cfs_rq, struct sched_entity *se,
7115 int cpu, int add)
7116{
7117 tg->cfs_rq[cpu] = cfs_rq;
7118 init_cfs_rq(cfs_rq, rq);
7119 cfs_rq->tg = tg;
7120 if (add)
7121 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7122
7123 tg->se[cpu] = se;
7124 se->cfs_rq = &rq->cfs;
7125 se->my_q = cfs_rq;
7126 se->load.weight = tg->shares;
7127 se->load.inv_weight = div64_64(1ULL<<32, se->load.weight);
7128 se->parent = NULL;
7129}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007130#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007131
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007132#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007133static void init_tg_rt_entry(struct rq *rq, struct task_group *tg,
7134 struct rt_rq *rt_rq, struct sched_rt_entity *rt_se,
7135 int cpu, int add)
7136{
7137 tg->rt_rq[cpu] = rt_rq;
7138 init_rt_rq(rt_rq, rq);
7139 rt_rq->tg = tg;
7140 rt_rq->rt_se = rt_se;
7141 if (add)
7142 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7143
7144 tg->rt_se[cpu] = rt_se;
7145 rt_se->rt_rq = &rq->rt;
7146 rt_se->my_q = rt_rq;
7147 rt_se->parent = NULL;
7148 INIT_LIST_HEAD(&rt_se->run_list);
7149}
7150#endif
7151
Linus Torvalds1da177e2005-04-16 15:20:36 -07007152void __init sched_init(void)
7153{
Christoph Lameter476f3532007-05-06 14:48:58 -07007154 int highest_cpu = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007155 int i, j;
7156
Gregory Haskins57d885f2008-01-25 21:08:18 +01007157#ifdef CONFIG_SMP
7158 init_defrootdomain();
7159#endif
7160
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007161#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007162 list_add(&init_task_group.list, &task_groups);
7163#endif
7164
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007165 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007166 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167
7168 rq = cpu_rq(i);
7169 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007170 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007171 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007172 rq->clock = 1;
7173 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007174 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007175#ifdef CONFIG_FAIR_GROUP_SCHED
7176 init_task_group.shares = init_task_group_load;
7177 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
7178 init_tg_cfs_entry(rq, &init_task_group,
7179 &per_cpu(init_cfs_rq, i),
7180 &per_cpu(init_sched_entity, i), i, 1);
7181
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007182#endif
7183#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007184 init_task_group.rt_runtime =
7185 sysctl_sched_rt_runtime * NSEC_PER_USEC;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007186 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
7187 init_tg_rt_entry(rq, &init_task_group,
7188 &per_cpu(init_rt_rq, i),
7189 &per_cpu(init_sched_rt_entity, i), i, 1);
7190#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007191 rq->rt_period_expire = 0;
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007192 rq->rt_throttled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007193
Ingo Molnardd41f592007-07-09 18:51:59 +02007194 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7195 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007196#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007197 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007198 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007200 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007201 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007202 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007203 rq->migration_thread = NULL;
7204 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007205 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007207 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208 atomic_set(&rq->nr_iowait, 0);
Christoph Lameter476f3532007-05-06 14:48:58 -07007209 highest_cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210 }
7211
Peter Williams2dd73a42006-06-27 02:54:34 -07007212 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007213
Avi Kivitye107be32007-07-26 13:40:43 +02007214#ifdef CONFIG_PREEMPT_NOTIFIERS
7215 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7216#endif
7217
Christoph Lameterc9819f42006-12-10 02:20:25 -08007218#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07007219 nr_cpu_ids = highest_cpu + 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08007220 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7221#endif
7222
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007223#ifdef CONFIG_RT_MUTEXES
7224 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7225#endif
7226
Linus Torvalds1da177e2005-04-16 15:20:36 -07007227 /*
7228 * The boot idle thread does lazy MMU switching as well:
7229 */
7230 atomic_inc(&init_mm.mm_count);
7231 enter_lazy_tlb(&init_mm, current);
7232
7233 /*
7234 * Make us the idle thread. Technically, schedule() should not be
7235 * called from this thread, however somewhere below it might be,
7236 * but because we are the idle thread, we just pick up running again
7237 * when this runqueue becomes "idle".
7238 */
7239 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02007240 /*
7241 * During early bootup we pretend to be a normal task:
7242 */
7243 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007244
7245 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007246}
7247
7248#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7249void __might_sleep(char *file, int line)
7250{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007251#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252 static unsigned long prev_jiffy; /* ratelimiting */
7253
7254 if ((in_atomic() || irqs_disabled()) &&
7255 system_state == SYSTEM_RUNNING && !oops_in_progress) {
7256 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7257 return;
7258 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08007259 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260 " context at %s:%d\n", file, line);
7261 printk("in_atomic():%d, irqs_disabled():%d\n",
7262 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007263 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007264 if (irqs_disabled())
7265 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007266 dump_stack();
7267 }
7268#endif
7269}
7270EXPORT_SYMBOL(__might_sleep);
7271#endif
7272
7273#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007274static void normalize_task(struct rq *rq, struct task_struct *p)
7275{
7276 int on_rq;
7277 update_rq_clock(rq);
7278 on_rq = p->se.on_rq;
7279 if (on_rq)
7280 deactivate_task(rq, p, 0);
7281 __setscheduler(rq, p, SCHED_NORMAL, 0);
7282 if (on_rq) {
7283 activate_task(rq, p, 0);
7284 resched_task(rq->curr);
7285 }
7286}
7287
Linus Torvalds1da177e2005-04-16 15:20:36 -07007288void normalize_rt_tasks(void)
7289{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007290 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007291 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007292 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007293
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007294 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007295 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007296 /*
7297 * Only normalize user tasks:
7298 */
7299 if (!p->mm)
7300 continue;
7301
Ingo Molnardd41f592007-07-09 18:51:59 +02007302 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007303#ifdef CONFIG_SCHEDSTATS
7304 p->se.wait_start = 0;
7305 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007306 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007307#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007308 task_rq(p)->clock = 0;
7309
7310 if (!rt_task(p)) {
7311 /*
7312 * Renice negative nice level userspace
7313 * tasks back to 0:
7314 */
7315 if (TASK_NICE(p) < 0 && p->mm)
7316 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007317 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007320 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007321 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007322
Ingo Molnar178be792007-10-15 17:00:18 +02007323 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007324
Ingo Molnarb29739f2006-06-27 02:54:51 -07007325 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007326 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007327 } while_each_thread(g, p);
7328
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007329 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330}
7331
7332#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007333
7334#ifdef CONFIG_IA64
7335/*
7336 * These functions are only useful for the IA64 MCA handling.
7337 *
7338 * They can only be called when the whole system has been
7339 * stopped - every CPU needs to be quiescent, and no scheduling
7340 * activity can take place. Using them for anything else would
7341 * be a serious bug, and as a result, they aren't even visible
7342 * under any other configuration.
7343 */
7344
7345/**
7346 * curr_task - return the current task for a given cpu.
7347 * @cpu: the processor in question.
7348 *
7349 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7350 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007351struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007352{
7353 return cpu_curr(cpu);
7354}
7355
7356/**
7357 * set_curr_task - set the current task for a given cpu.
7358 * @cpu: the processor in question.
7359 * @p: the task pointer to set.
7360 *
7361 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007362 * are serviced on a separate stack. It allows the architecture to switch the
7363 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007364 * must be called with all CPU's synchronized, and interrupts disabled, the
7365 * and caller must save the original value of the current task (see
7366 * curr_task() above) and restore that value before reenabling interrupts and
7367 * re-starting the system.
7368 *
7369 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7370 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007371void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007372{
7373 cpu_curr(cpu) = p;
7374}
7375
7376#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007377
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007378#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007379
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007380#ifdef CONFIG_FAIR_GROUP_SCHED
7381static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007382{
7383 int i;
7384
7385 for_each_possible_cpu(i) {
7386 if (tg->cfs_rq)
7387 kfree(tg->cfs_rq[i]);
7388 if (tg->se)
7389 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007390 }
7391
7392 kfree(tg->cfs_rq);
7393 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007394}
7395
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007396static int alloc_fair_sched_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007397{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007398 struct cfs_rq *cfs_rq;
7399 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007400 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007401 int i;
7402
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007403 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007404 if (!tg->cfs_rq)
7405 goto err;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007406 tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007407 if (!tg->se)
7408 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007409
7410 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007411
7412 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007413 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007414
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007415 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
7416 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007417 if (!cfs_rq)
7418 goto err;
7419
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007420 se = kmalloc_node(sizeof(struct sched_entity),
7421 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007422 if (!se)
7423 goto err;
7424
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007425 init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007426 }
7427
7428 return 1;
7429
7430 err:
7431 return 0;
7432}
7433
7434static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7435{
7436 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
7437 &cpu_rq(cpu)->leaf_cfs_rq_list);
7438}
7439
7440static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7441{
7442 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
7443}
7444#else
7445static inline void free_fair_sched_group(struct task_group *tg)
7446{
7447}
7448
7449static inline int alloc_fair_sched_group(struct task_group *tg)
7450{
7451 return 1;
7452}
7453
7454static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7455{
7456}
7457
7458static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7459{
7460}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007461#endif
7462
7463#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007464static void free_rt_sched_group(struct task_group *tg)
7465{
7466 int i;
7467
7468 for_each_possible_cpu(i) {
7469 if (tg->rt_rq)
7470 kfree(tg->rt_rq[i]);
7471 if (tg->rt_se)
7472 kfree(tg->rt_se[i]);
7473 }
7474
7475 kfree(tg->rt_rq);
7476 kfree(tg->rt_se);
7477}
7478
7479static int alloc_rt_sched_group(struct task_group *tg)
7480{
7481 struct rt_rq *rt_rq;
7482 struct sched_rt_entity *rt_se;
7483 struct rq *rq;
7484 int i;
7485
7486 tg->rt_rq = kzalloc(sizeof(rt_rq) * NR_CPUS, GFP_KERNEL);
7487 if (!tg->rt_rq)
7488 goto err;
7489 tg->rt_se = kzalloc(sizeof(rt_se) * NR_CPUS, GFP_KERNEL);
7490 if (!tg->rt_se)
7491 goto err;
7492
7493 tg->rt_runtime = 0;
7494
7495 for_each_possible_cpu(i) {
7496 rq = cpu_rq(i);
7497
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007498 rt_rq = kmalloc_node(sizeof(struct rt_rq),
7499 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7500 if (!rt_rq)
7501 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007502
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007503 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
7504 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7505 if (!rt_se)
7506 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007507
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007508 init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007509 }
7510
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007511 return 1;
7512
7513 err:
7514 return 0;
7515}
7516
7517static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7518{
7519 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
7520 &cpu_rq(cpu)->leaf_rt_rq_list);
7521}
7522
7523static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7524{
7525 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
7526}
7527#else
7528static inline void free_rt_sched_group(struct task_group *tg)
7529{
7530}
7531
7532static inline int alloc_rt_sched_group(struct task_group *tg)
7533{
7534 return 1;
7535}
7536
7537static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7538{
7539}
7540
7541static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7542{
7543}
7544#endif
7545
7546static void free_sched_group(struct task_group *tg)
7547{
7548 free_fair_sched_group(tg);
7549 free_rt_sched_group(tg);
7550 kfree(tg);
7551}
7552
7553/* allocate runqueue etc for a new task group */
7554struct task_group *sched_create_group(void)
7555{
7556 struct task_group *tg;
7557 unsigned long flags;
7558 int i;
7559
7560 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7561 if (!tg)
7562 return ERR_PTR(-ENOMEM);
7563
7564 if (!alloc_fair_sched_group(tg))
7565 goto err;
7566
7567 if (!alloc_rt_sched_group(tg))
7568 goto err;
7569
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007570 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007571 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007572 register_fair_sched_group(tg, i);
7573 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007574 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007575 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007576 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007577
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007578 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007579
7580err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007581 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007582 return ERR_PTR(-ENOMEM);
7583}
7584
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007585/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007586static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007587{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007588 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007589 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007590}
7591
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007592/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007593void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007594{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007595 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007596 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007597
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007598 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007599 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007600 unregister_fair_sched_group(tg, i);
7601 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007602 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007603 list_del_rcu(&tg->list);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007604 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007605
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007606 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007607 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007608}
7609
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007610/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007611 * The caller of this function should have put the task in its new group
7612 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7613 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007614 */
7615void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007616{
7617 int on_rq, running;
7618 unsigned long flags;
7619 struct rq *rq;
7620
7621 rq = task_rq_lock(tsk, &flags);
7622
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007623 update_rq_clock(rq);
7624
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007625 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007626 on_rq = tsk->se.on_rq;
7627
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007628 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007629 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007630 if (unlikely(running))
7631 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007632
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007633 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007634
Peter Zijlstra810b3812008-02-29 15:21:01 -05007635#ifdef CONFIG_FAIR_GROUP_SCHED
7636 if (tsk->sched_class->moved_group)
7637 tsk->sched_class->moved_group(tsk);
7638#endif
7639
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007640 if (unlikely(running))
7641 tsk->sched_class->set_curr_task(rq);
7642 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02007643 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007644
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007645 task_rq_unlock(rq, &flags);
7646}
7647
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007648#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007649static void set_se_shares(struct sched_entity *se, unsigned long shares)
7650{
7651 struct cfs_rq *cfs_rq = se->cfs_rq;
7652 struct rq *rq = cfs_rq->rq;
7653 int on_rq;
7654
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007655 spin_lock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007656
7657 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007658 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007659 dequeue_entity(cfs_rq, se, 0);
7660
7661 se->load.weight = shares;
7662 se->load.inv_weight = div64_64((1ULL<<32), shares);
7663
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007664 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007665 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007666
7667 spin_unlock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007668}
7669
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007670static DEFINE_MUTEX(shares_mutex);
7671
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007672int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007673{
7674 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007675 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01007676
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007677 /*
7678 * A weight of 0 or 1 can cause arithmetics problems.
7679 * (The default weight is 1024 - so there's no practical
7680 * limitation from this.)
7681 */
7682 if (shares < 2)
7683 shares = 2;
7684
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007685 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007686 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007687 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007688
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007689 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007690 for_each_possible_cpu(i)
7691 unregister_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007692 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007693
7694 /* wait for any ongoing reference to this group to finish */
7695 synchronize_sched();
7696
7697 /*
7698 * Now we are free to modify the group's share on each cpu
7699 * w/o tripping rebalance_share or load_balance_fair.
7700 */
7701 tg->shares = shares;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007702 for_each_possible_cpu(i)
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007703 set_se_shares(tg->se[i], shares);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007704
7705 /*
7706 * Enable load balance activity on this group, by inserting it back on
7707 * each cpu's rq->leaf_cfs_rq_list.
7708 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007709 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007710 for_each_possible_cpu(i)
7711 register_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007712 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007713done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007714 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007715 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007716}
7717
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007718unsigned long sched_group_shares(struct task_group *tg)
7719{
7720 return tg->shares;
7721}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007722#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007723
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007724#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007725/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007726 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007727 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007728static DEFINE_MUTEX(rt_constraints_mutex);
7729
7730static unsigned long to_ratio(u64 period, u64 runtime)
7731{
7732 if (runtime == RUNTIME_INF)
7733 return 1ULL << 16;
7734
Peter Zijlstra2692a242008-02-27 12:00:46 +01007735 return div64_64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007736}
7737
7738static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007739{
7740 struct task_group *tgi;
7741 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007742 unsigned long global_ratio =
7743 to_ratio(sysctl_sched_rt_period,
7744 sysctl_sched_rt_runtime < 0 ?
7745 RUNTIME_INF : sysctl_sched_rt_runtime);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007746
7747 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007748 list_for_each_entry_rcu(tgi, &task_groups, list) {
7749 if (tgi == tg)
7750 continue;
7751
7752 total += to_ratio(period, tgi->rt_runtime);
7753 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007754 rcu_read_unlock();
7755
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007756 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007757}
7758
Dhaval Giani521f1a242008-02-28 15:21:56 +05307759/* Must be called with tasklist_lock held */
7760static inline int tg_has_rt_tasks(struct task_group *tg)
7761{
7762 struct task_struct *g, *p;
7763 do_each_thread(g, p) {
7764 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
7765 return 1;
7766 } while_each_thread(g, p);
7767 return 0;
7768}
7769
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007770int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007771{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007772 u64 rt_runtime, rt_period;
7773 int err = 0;
7774
Peter Zijlstra2692a242008-02-27 12:00:46 +01007775 rt_period = (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007776 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7777 if (rt_runtime_us == -1)
Peter Zijlstra2692a242008-02-27 12:00:46 +01007778 rt_runtime = RUNTIME_INF;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007779
7780 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05307781 read_lock(&tasklist_lock);
7782 if (rt_runtime_us == 0 && tg_has_rt_tasks(tg)) {
7783 err = -EBUSY;
7784 goto unlock;
7785 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007786 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
7787 err = -EINVAL;
7788 goto unlock;
7789 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007790 tg->rt_runtime = rt_runtime;
7791 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05307792 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007793 mutex_unlock(&rt_constraints_mutex);
7794
7795 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007796}
7797
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007798long sched_group_rt_runtime(struct task_group *tg)
7799{
7800 u64 rt_runtime_us;
7801
7802 if (tg->rt_runtime == RUNTIME_INF)
7803 return -1;
7804
7805 rt_runtime_us = tg->rt_runtime;
7806 do_div(rt_runtime_us, NSEC_PER_USEC);
7807 return rt_runtime_us;
7808}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007809#endif
7810#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007811
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007812#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007813
7814/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007815static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007816{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007817 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
7818 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007819}
7820
7821static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02007822cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007823{
7824 struct task_group *tg;
7825
Paul Menage2b01dfe2007-10-24 18:23:50 +02007826 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007827 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007828 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007829 return &init_task_group.css;
7830 }
7831
7832 /* we support only 1-level deep hierarchical scheduler atm */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007833 if (cgrp->parent->parent)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007834 return ERR_PTR(-EINVAL);
7835
7836 tg = sched_create_group();
7837 if (IS_ERR(tg))
7838 return ERR_PTR(-ENOMEM);
7839
7840 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007841 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007842
7843 return &tg->css;
7844}
7845
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007846static void
7847cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007848{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007849 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007850
7851 sched_destroy_group(tg);
7852}
7853
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007854static int
7855cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
7856 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007857{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007858#ifdef CONFIG_RT_GROUP_SCHED
7859 /* Don't accept realtime tasks when there is no way for them to run */
7860 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_runtime == 0)
7861 return -EINVAL;
7862#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007863 /* We don't support RT-tasks being in separate groups */
7864 if (tsk->sched_class != &fair_sched_class)
7865 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007866#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007867
7868 return 0;
7869}
7870
7871static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02007872cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007873 struct cgroup *old_cont, struct task_struct *tsk)
7874{
7875 sched_move_task(tsk);
7876}
7877
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007878#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menage2b01dfe2007-10-24 18:23:50 +02007879static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
7880 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007881{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007882 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007883}
7884
Paul Menage2b01dfe2007-10-24 18:23:50 +02007885static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007886{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007887 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007888
7889 return (u64) tg->shares;
7890}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007891#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007892
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007893#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007894static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
7895 struct file *file,
7896 const char __user *userbuf,
7897 size_t nbytes, loff_t *unused_ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007898{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007899 char buffer[64];
7900 int retval = 0;
7901 s64 val;
7902 char *end;
7903
7904 if (!nbytes)
7905 return -EINVAL;
7906 if (nbytes >= sizeof(buffer))
7907 return -E2BIG;
7908 if (copy_from_user(buffer, userbuf, nbytes))
7909 return -EFAULT;
7910
7911 buffer[nbytes] = 0; /* nul-terminate */
7912
7913 /* strip newline if necessary */
7914 if (nbytes && (buffer[nbytes-1] == '\n'))
7915 buffer[nbytes-1] = 0;
7916 val = simple_strtoll(buffer, &end, 0);
7917 if (*end)
7918 return -EINVAL;
7919
7920 /* Pass to subsystem */
7921 retval = sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
7922 if (!retval)
7923 retval = nbytes;
7924 return retval;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007925}
7926
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007927static ssize_t cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft,
7928 struct file *file,
7929 char __user *buf, size_t nbytes,
7930 loff_t *ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007931{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007932 char tmp[64];
7933 long val = sched_group_rt_runtime(cgroup_tg(cgrp));
7934 int len = sprintf(tmp, "%ld\n", val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007935
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007936 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007937}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007938#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007939
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007940static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007941#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007942 {
7943 .name = "shares",
7944 .read_uint = cpu_shares_read_uint,
7945 .write_uint = cpu_shares_write_uint,
7946 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007947#endif
7948#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007949 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007950 .name = "rt_runtime_us",
7951 .read = cpu_rt_runtime_read,
7952 .write = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007953 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007954#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007955};
7956
7957static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
7958{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007959 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007960}
7961
7962struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01007963 .name = "cpu",
7964 .create = cpu_cgroup_create,
7965 .destroy = cpu_cgroup_destroy,
7966 .can_attach = cpu_cgroup_can_attach,
7967 .attach = cpu_cgroup_attach,
7968 .populate = cpu_cgroup_populate,
7969 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007970 .early_init = 1,
7971};
7972
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007973#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01007974
7975#ifdef CONFIG_CGROUP_CPUACCT
7976
7977/*
7978 * CPU accounting code for task groups.
7979 *
7980 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
7981 * (balbir@in.ibm.com).
7982 */
7983
7984/* track cpu usage of a group of tasks */
7985struct cpuacct {
7986 struct cgroup_subsys_state css;
7987 /* cpuusage holds pointer to a u64-type object on every cpu */
7988 u64 *cpuusage;
7989};
7990
7991struct cgroup_subsys cpuacct_subsys;
7992
7993/* return cpu accounting group corresponding to this container */
7994static inline struct cpuacct *cgroup_ca(struct cgroup *cont)
7995{
7996 return container_of(cgroup_subsys_state(cont, cpuacct_subsys_id),
7997 struct cpuacct, css);
7998}
7999
8000/* return cpu accounting group to which this task belongs */
8001static inline struct cpuacct *task_ca(struct task_struct *tsk)
8002{
8003 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
8004 struct cpuacct, css);
8005}
8006
8007/* create a new cpu accounting group */
8008static struct cgroup_subsys_state *cpuacct_create(
8009 struct cgroup_subsys *ss, struct cgroup *cont)
8010{
8011 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
8012
8013 if (!ca)
8014 return ERR_PTR(-ENOMEM);
8015
8016 ca->cpuusage = alloc_percpu(u64);
8017 if (!ca->cpuusage) {
8018 kfree(ca);
8019 return ERR_PTR(-ENOMEM);
8020 }
8021
8022 return &ca->css;
8023}
8024
8025/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008026static void
8027cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008028{
8029 struct cpuacct *ca = cgroup_ca(cont);
8030
8031 free_percpu(ca->cpuusage);
8032 kfree(ca);
8033}
8034
8035/* return total cpu usage (in nanoseconds) of a group */
8036static u64 cpuusage_read(struct cgroup *cont, struct cftype *cft)
8037{
8038 struct cpuacct *ca = cgroup_ca(cont);
8039 u64 totalcpuusage = 0;
8040 int i;
8041
8042 for_each_possible_cpu(i) {
8043 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8044
8045 /*
8046 * Take rq->lock to make 64-bit addition safe on 32-bit
8047 * platforms.
8048 */
8049 spin_lock_irq(&cpu_rq(i)->lock);
8050 totalcpuusage += *cpuusage;
8051 spin_unlock_irq(&cpu_rq(i)->lock);
8052 }
8053
8054 return totalcpuusage;
8055}
8056
8057static struct cftype files[] = {
8058 {
8059 .name = "usage",
8060 .read_uint = cpuusage_read,
8061 },
8062};
8063
8064static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8065{
8066 return cgroup_add_files(cont, ss, files, ARRAY_SIZE(files));
8067}
8068
8069/*
8070 * charge this task's execution time to its accounting group.
8071 *
8072 * called with rq->lock held.
8073 */
8074static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
8075{
8076 struct cpuacct *ca;
8077
8078 if (!cpuacct_subsys.active)
8079 return;
8080
8081 ca = task_ca(tsk);
8082 if (ca) {
8083 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
8084
8085 *cpuusage += cputime;
8086 }
8087}
8088
8089struct cgroup_subsys cpuacct_subsys = {
8090 .name = "cpuacct",
8091 .create = cpuacct_create,
8092 .destroy = cpuacct_destroy,
8093 .populate = cpuacct_populate,
8094 .subsys_id = cpuacct_subsys_id,
8095};
8096#endif /* CONFIG_CGROUP_CPUACCT */