blob: 3a4ba3dc0f498fe71d04d7b33b8cfe086695d4a5 [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 */
304 struct sched_entity *curr;
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 Molnar194081e2007-08-09 11:16:51 +02001087 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
1399 if (p->sched_class != &fair_sched_class)
1400 return 0;
1401
Ingo Molnar6bc16652007-10-15 17:00:18 +02001402 if (sysctl_sched_migration_cost == -1)
1403 return 1;
1404 if (sysctl_sched_migration_cost == 0)
1405 return 0;
1406
Ingo Molnarcc367732007-10-15 17:00:18 +02001407 delta = now - p->se.exec_start;
1408
1409 return delta < (s64)sysctl_sched_migration_cost;
1410}
1411
1412
Ingo Molnardd41f592007-07-09 18:51:59 +02001413void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001414{
Ingo Molnardd41f592007-07-09 18:51:59 +02001415 int old_cpu = task_cpu(p);
1416 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001417 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1418 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001419 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001420
1421 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001422
1423#ifdef CONFIG_SCHEDSTATS
1424 if (p->se.wait_start)
1425 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001426 if (p->se.sleep_start)
1427 p->se.sleep_start -= clock_offset;
1428 if (p->se.block_start)
1429 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001430 if (old_cpu != new_cpu) {
1431 schedstat_inc(p, se.nr_migrations);
1432 if (task_hot(p, old_rq->clock, NULL))
1433 schedstat_inc(p, se.nr_forced2_migrations);
1434 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001435#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001436 p->se.vruntime -= old_cfsrq->min_vruntime -
1437 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001438
1439 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001440}
1441
Ingo Molnar70b97a72006-07-03 00:25:42 -07001442struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Ingo Molnar36c8b582006-07-03 00:25:41 -07001445 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 int dest_cpu;
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001449};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451/*
1452 * The task's runqueue lock must be held.
1453 * Returns true if you have to wait for migration thread.
1454 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001455static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001456migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001458 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 /*
1461 * If the task is not on a runqueue (and not running), then
1462 * it is sufficient to simply update the task's cpu field.
1463 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001464 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 set_task_cpu(p, dest_cpu);
1466 return 0;
1467 }
1468
1469 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 req->task = p;
1471 req->dest_cpu = dest_cpu;
1472 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return 1;
1475}
1476
1477/*
1478 * wait_task_inactive - wait for a thread to unschedule.
1479 *
1480 * The caller must ensure that the task *will* unschedule sometime soon,
1481 * else this function might spin for a *long* time. This function can't
1482 * be called with interrupts off, or it may introduce deadlock with
1483 * smp_call_function() if an IPI is sent by the same process we are
1484 * waiting to become inactive.
1485 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001486void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
1488 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001489 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001490 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Andi Kleen3a5c3592007-10-15 17:00:14 +02001492 for (;;) {
1493 /*
1494 * We do the initial early heuristics without holding
1495 * any task-queue locks at all. We'll only try to get
1496 * the runqueue lock when things look like they will
1497 * work out!
1498 */
1499 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001500
Andi Kleen3a5c3592007-10-15 17:00:14 +02001501 /*
1502 * If the task is actively running on another CPU
1503 * still, just relax and busy-wait without holding
1504 * any locks.
1505 *
1506 * NOTE! Since we don't hold any locks, it's not
1507 * even sure that "rq" stays as the right runqueue!
1508 * But we don't care, since "task_running()" will
1509 * return false if the runqueue has changed and p
1510 * is actually now running somewhere else!
1511 */
1512 while (task_running(rq, p))
1513 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001514
Andi Kleen3a5c3592007-10-15 17:00:14 +02001515 /*
1516 * Ok, time to look more closely! We need the rq
1517 * lock now, to be *sure*. If we're wrong, we'll
1518 * just go back and repeat.
1519 */
1520 rq = task_rq_lock(p, &flags);
1521 running = task_running(rq, p);
1522 on_rq = p->se.on_rq;
1523 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001524
Andi Kleen3a5c3592007-10-15 17:00:14 +02001525 /*
1526 * Was it really running after all now that we
1527 * checked with the proper locks actually held?
1528 *
1529 * Oops. Go back and try again..
1530 */
1531 if (unlikely(running)) {
1532 cpu_relax();
1533 continue;
1534 }
1535
1536 /*
1537 * It's not enough that it's not actively running,
1538 * it must be off the runqueue _entirely_, and not
1539 * preempted!
1540 *
1541 * So if it wa still runnable (but just not actively
1542 * running right now), it's preempted, and we should
1543 * yield - it could be a while.
1544 */
1545 if (unlikely(on_rq)) {
1546 schedule_timeout_uninterruptible(1);
1547 continue;
1548 }
1549
1550 /*
1551 * Ahh, all good. It wasn't running, and it wasn't
1552 * runnable, which means that it will never become
1553 * running in the future either. We're all done!
1554 */
1555 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
1559/***
1560 * kick_process - kick a running thread to enter/exit the kernel
1561 * @p: the to-be-kicked thread
1562 *
1563 * Cause a process which is running on another CPU to enter
1564 * kernel-mode, without any delay. (to get signals handled.)
1565 *
1566 * NOTE: this function doesnt have to take the runqueue lock,
1567 * because all it wants to ensure is that the remote task enters
1568 * the kernel. If the IPI races and the task has been migrated
1569 * to another CPU then no harm is done and the purpose has been
1570 * achieved as well.
1571 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001572void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573{
1574 int cpu;
1575
1576 preempt_disable();
1577 cpu = task_cpu(p);
1578 if ((cpu != smp_processor_id()) && task_curr(p))
1579 smp_send_reschedule(cpu);
1580 preempt_enable();
1581}
1582
1583/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001584 * Return a low guess at the load of a migration-source cpu weighted
1585 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 *
1587 * We want to under-estimate the load of migration sources, to
1588 * balance conservatively.
1589 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001590static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001591{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001592 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001593 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001594
Peter Williams2dd73a42006-06-27 02:54:34 -07001595 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001596 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001597
Ingo Molnardd41f592007-07-09 18:51:59 +02001598 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
1600
1601/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001602 * Return a high guess at the load of a migration-target cpu weighted
1603 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001605static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001606{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001607 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001608 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001609
Peter Williams2dd73a42006-06-27 02:54:34 -07001610 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001611 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001612
Ingo Molnardd41f592007-07-09 18:51:59 +02001613 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001614}
1615
1616/*
1617 * Return the average load per task on the cpu's run queue
1618 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001619static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07001620{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001621 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001622 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001623 unsigned long n = rq->nr_running;
1624
Ingo Molnardd41f592007-07-09 18:51:59 +02001625 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
Nick Piggin147cbb42005-06-25 14:57:19 -07001628/*
1629 * find_idlest_group finds and returns the least busy CPU group within the
1630 * domain.
1631 */
1632static struct sched_group *
1633find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1634{
1635 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1636 unsigned long min_load = ULONG_MAX, this_load = 0;
1637 int load_idx = sd->forkexec_idx;
1638 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1639
1640 do {
1641 unsigned long load, avg_load;
1642 int local_group;
1643 int i;
1644
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001645 /* Skip over this group if it has no CPUs allowed */
1646 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001647 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001648
Nick Piggin147cbb42005-06-25 14:57:19 -07001649 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001650
1651 /* Tally up the load of all CPUs in the group */
1652 avg_load = 0;
1653
1654 for_each_cpu_mask(i, group->cpumask) {
1655 /* Bias balancing toward cpus of our domain */
1656 if (local_group)
1657 load = source_load(i, load_idx);
1658 else
1659 load = target_load(i, load_idx);
1660
1661 avg_load += load;
1662 }
1663
1664 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001665 avg_load = sg_div_cpu_power(group,
1666 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001667
1668 if (local_group) {
1669 this_load = avg_load;
1670 this = group;
1671 } else if (avg_load < min_load) {
1672 min_load = avg_load;
1673 idlest = group;
1674 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001675 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001676
1677 if (!idlest || 100*this_load < imbalance*min_load)
1678 return NULL;
1679 return idlest;
1680}
1681
1682/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001683 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001684 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001685static int
1686find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001687{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001688 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001689 unsigned long load, min_load = ULONG_MAX;
1690 int idlest = -1;
1691 int i;
1692
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001693 /* Traverse only the allowed CPUs */
1694 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1695
1696 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001697 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001698
1699 if (load < min_load || (load == min_load && i == this_cpu)) {
1700 min_load = load;
1701 idlest = i;
1702 }
1703 }
1704
1705 return idlest;
1706}
1707
Nick Piggin476d1392005-06-25 14:57:29 -07001708/*
1709 * sched_balance_self: balance the current task (running on cpu) in domains
1710 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1711 * SD_BALANCE_EXEC.
1712 *
1713 * Balance, ie. select the least loaded group.
1714 *
1715 * Returns the target CPU number, or the same CPU if no balancing is needed.
1716 *
1717 * preempt must be disabled.
1718 */
1719static int sched_balance_self(int cpu, int flag)
1720{
1721 struct task_struct *t = current;
1722 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001723
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001724 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001725 /*
1726 * If power savings logic is enabled for a domain, stop there.
1727 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001728 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1729 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001730 if (tmp->flags & flag)
1731 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001732 }
Nick Piggin476d1392005-06-25 14:57:29 -07001733
1734 while (sd) {
1735 cpumask_t span;
1736 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001737 int new_cpu, weight;
1738
1739 if (!(sd->flags & flag)) {
1740 sd = sd->child;
1741 continue;
1742 }
Nick Piggin476d1392005-06-25 14:57:29 -07001743
1744 span = sd->span;
1745 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001746 if (!group) {
1747 sd = sd->child;
1748 continue;
1749 }
Nick Piggin476d1392005-06-25 14:57:29 -07001750
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001751 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001752 if (new_cpu == -1 || new_cpu == cpu) {
1753 /* Now try balancing at a lower domain level of cpu */
1754 sd = sd->child;
1755 continue;
1756 }
Nick Piggin476d1392005-06-25 14:57:29 -07001757
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001758 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001759 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001760 sd = NULL;
1761 weight = cpus_weight(span);
1762 for_each_domain(cpu, tmp) {
1763 if (weight <= cpus_weight(tmp->span))
1764 break;
1765 if (tmp->flags & flag)
1766 sd = tmp;
1767 }
1768 /* while loop will break here if sd == NULL */
1769 }
1770
1771 return cpu;
1772}
1773
1774#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776/***
1777 * try_to_wake_up - wake up a thread
1778 * @p: the to-be-woken-up thread
1779 * @state: the mask of task states that can be woken
1780 * @sync: do a synchronous wakeup?
1781 *
1782 * Put it on the run-queue if it's not already there. The "current"
1783 * thread is always on the run-queue (except when the actual
1784 * re-schedule is in progress), and as such you're allowed to do
1785 * the simpler "current->state = TASK_RUNNING" to mark yourself
1786 * runnable without the overhead of this.
1787 *
1788 * returns failure only if the task is already active.
1789 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001790static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
Ingo Molnarcc367732007-10-15 17:00:18 +02001792 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 unsigned long flags;
1794 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001795 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Linus Torvalds04e2f172008-02-23 18:05:03 -08001797 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 rq = task_rq_lock(p, &flags);
1799 old_state = p->state;
1800 if (!(old_state & state))
1801 goto out;
1802
Ingo Molnardd41f592007-07-09 18:51:59 +02001803 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 goto out_running;
1805
1806 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02001807 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 this_cpu = smp_processor_id();
1809
1810#ifdef CONFIG_SMP
1811 if (unlikely(task_running(rq, p)))
1812 goto out_activate;
1813
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01001814 cpu = p->sched_class->select_task_rq(p, sync);
1815 if (cpu != orig_cpu) {
1816 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 task_rq_unlock(rq, &flags);
1818 /* might preempt at this point */
1819 rq = task_rq_lock(p, &flags);
1820 old_state = p->state;
1821 if (!(old_state & state))
1822 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02001823 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 goto out_running;
1825
1826 this_cpu = smp_processor_id();
1827 cpu = task_cpu(p);
1828 }
1829
Gregory Haskinse7693a32008-01-25 21:08:09 +01001830#ifdef CONFIG_SCHEDSTATS
1831 schedstat_inc(rq, ttwu_count);
1832 if (cpu == this_cpu)
1833 schedstat_inc(rq, ttwu_local);
1834 else {
1835 struct sched_domain *sd;
1836 for_each_domain(this_cpu, sd) {
1837 if (cpu_isset(cpu, sd->span)) {
1838 schedstat_inc(sd, ttwu_wake_remote);
1839 break;
1840 }
1841 }
1842 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01001843#endif
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845out_activate:
1846#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02001847 schedstat_inc(p, se.nr_wakeups);
1848 if (sync)
1849 schedstat_inc(p, se.nr_wakeups_sync);
1850 if (orig_cpu != cpu)
1851 schedstat_inc(p, se.nr_wakeups_migrate);
1852 if (cpu == this_cpu)
1853 schedstat_inc(p, se.nr_wakeups_local);
1854 else
1855 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02001856 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02001857 activate_task(rq, p, 1);
Ingo Molnar9c63d9c2007-10-15 17:00:20 +02001858 check_preempt_curr(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 success = 1;
1860
1861out_running:
1862 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01001863#ifdef CONFIG_SMP
1864 if (p->sched_class->task_wake_up)
1865 p->sched_class->task_wake_up(rq, p);
1866#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867out:
1868 task_rq_unlock(rq, &flags);
1869
1870 return success;
1871}
1872
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001873int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001875 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877EXPORT_SYMBOL(wake_up_process);
1878
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001879int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
1881 return try_to_wake_up(p, state, 0);
1882}
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884/*
1885 * Perform scheduler related setup for a newly forked process p.
1886 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001887 *
1888 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001890static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891{
Ingo Molnardd41f592007-07-09 18:51:59 +02001892 p->se.exec_start = 0;
1893 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001894 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001895
1896#ifdef CONFIG_SCHEDSTATS
1897 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001898 p->se.sum_sleep_runtime = 0;
1899 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001900 p->se.block_start = 0;
1901 p->se.sleep_max = 0;
1902 p->se.block_max = 0;
1903 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02001904 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001905 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001906#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001907
Peter Zijlstrafa717062008-01-25 21:08:27 +01001908 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02001909 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07001910
Avi Kivitye107be32007-07-26 13:40:43 +02001911#ifdef CONFIG_PREEMPT_NOTIFIERS
1912 INIT_HLIST_HEAD(&p->preempt_notifiers);
1913#endif
1914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 /*
1916 * We mark the process as running here, but have not actually
1917 * inserted it onto the runqueue yet. This guarantees that
1918 * nobody will actually run it, and a signal or other external
1919 * event cannot wake it up and insert it on the runqueue either.
1920 */
1921 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001922}
1923
1924/*
1925 * fork()/clone()-time setup:
1926 */
1927void sched_fork(struct task_struct *p, int clone_flags)
1928{
1929 int cpu = get_cpu();
1930
1931 __sched_fork(p);
1932
1933#ifdef CONFIG_SMP
1934 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1935#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02001936 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001937
1938 /*
1939 * Make sure we do not leak PI boosting priority to the child:
1940 */
1941 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001942 if (!rt_prio(p->prio))
1943 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001944
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001945#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001946 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001947 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001949#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001950 p->oncpu = 0;
1951#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001953 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08001954 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001956 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
1958
1959/*
1960 * wake_up_new_task - wake up a newly created task for the first time.
1961 *
1962 * This function will do some initial scheduler statistics housekeeping
1963 * that must be done for every newly created context, then puts the task
1964 * on the runqueue and wakes it.
1965 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001966void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
1968 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001969 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02001973 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975 p->prio = effective_prio(p);
1976
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02001977 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001978 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02001981 * Let the scheduling class do new task startup
1982 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02001984 p->sched_class->task_new(rq, p);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001985 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001987 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01001988#ifdef CONFIG_SMP
1989 if (p->sched_class->task_wake_up)
1990 p->sched_class->task_wake_up(rq, p);
1991#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001992 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993}
1994
Avi Kivitye107be32007-07-26 13:40:43 +02001995#ifdef CONFIG_PREEMPT_NOTIFIERS
1996
1997/**
Randy Dunlap421cee22007-07-31 00:37:50 -07001998 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
1999 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002000 */
2001void preempt_notifier_register(struct preempt_notifier *notifier)
2002{
2003 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2004}
2005EXPORT_SYMBOL_GPL(preempt_notifier_register);
2006
2007/**
2008 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002009 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002010 *
2011 * This is safe to call from within a preemption notifier.
2012 */
2013void preempt_notifier_unregister(struct preempt_notifier *notifier)
2014{
2015 hlist_del(&notifier->link);
2016}
2017EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2018
2019static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2020{
2021 struct preempt_notifier *notifier;
2022 struct hlist_node *node;
2023
2024 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2025 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2026}
2027
2028static void
2029fire_sched_out_preempt_notifiers(struct task_struct *curr,
2030 struct task_struct *next)
2031{
2032 struct preempt_notifier *notifier;
2033 struct hlist_node *node;
2034
2035 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2036 notifier->ops->sched_out(notifier, next);
2037}
2038
2039#else
2040
2041static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2042{
2043}
2044
2045static void
2046fire_sched_out_preempt_notifiers(struct task_struct *curr,
2047 struct task_struct *next)
2048{
2049}
2050
2051#endif
2052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002054 * prepare_task_switch - prepare to switch tasks
2055 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002056 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002057 * @next: the task we are going to switch to.
2058 *
2059 * This is called with the rq lock held and interrupts off. It must
2060 * be paired with a subsequent finish_task_switch after the context
2061 * switch.
2062 *
2063 * prepare_task_switch sets up locking and calls architecture specific
2064 * hooks.
2065 */
Avi Kivitye107be32007-07-26 13:40:43 +02002066static inline void
2067prepare_task_switch(struct rq *rq, struct task_struct *prev,
2068 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002069{
Avi Kivitye107be32007-07-26 13:40:43 +02002070 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002071 prepare_lock_switch(rq, next);
2072 prepare_arch_switch(next);
2073}
2074
2075/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002077 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 * @prev: the thread we just switched away from.
2079 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002080 * finish_task_switch must be called after the context switch, paired
2081 * with a prepare_task_switch call before the context switch.
2082 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2083 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 *
2085 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002086 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 * with the lock held can cause deadlocks; see schedule() for
2088 * details.)
2089 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002090static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 __releases(rq->lock)
2092{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002094 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096 rq->prev_mm = NULL;
2097
2098 /*
2099 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002100 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002101 * schedule one last time. The schedule call will never return, and
2102 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002103 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 * still held, otherwise prev could be scheduled on another cpu, die
2105 * there before we look at prev->state, and then the reference would
2106 * be dropped twice.
2107 * Manfred Spraul <manfred@colorfullife.com>
2108 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002109 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002110 finish_arch_switch(prev);
2111 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002112#ifdef CONFIG_SMP
2113 if (current->sched_class->post_schedule)
2114 current->sched_class->post_schedule(rq);
2115#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002116
Avi Kivitye107be32007-07-26 13:40:43 +02002117 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 if (mm)
2119 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002120 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002121 /*
2122 * Remove function-return probe instances associated with this
2123 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002124 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002125 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128}
2129
2130/**
2131 * schedule_tail - first thing a freshly forked thread must call.
2132 * @prev: the thread we just switched away from.
2133 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002134asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 __releases(rq->lock)
2136{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002137 struct rq *rq = this_rq();
2138
Nick Piggin4866cde2005-06-25 14:57:23 -07002139 finish_task_switch(rq, prev);
2140#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2141 /* In this case, finish_task_switch does not reenable preemption */
2142 preempt_enable();
2143#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002145 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146}
2147
2148/*
2149 * context_switch - switch to the new MM and the new
2150 * thread's register state.
2151 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002152static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002153context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002154 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155{
Ingo Molnardd41f592007-07-09 18:51:59 +02002156 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Avi Kivitye107be32007-07-26 13:40:43 +02002158 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002159 mm = next->mm;
2160 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002161 /*
2162 * For paravirt, this is coupled with an exit in switch_to to
2163 * combine the page table reload and the switch backend into
2164 * one hypercall.
2165 */
2166 arch_enter_lazy_cpu_mode();
2167
Ingo Molnardd41f592007-07-09 18:51:59 +02002168 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 next->active_mm = oldmm;
2170 atomic_inc(&oldmm->mm_count);
2171 enter_lazy_tlb(oldmm, next);
2172 } else
2173 switch_mm(oldmm, mm, next);
2174
Ingo Molnardd41f592007-07-09 18:51:59 +02002175 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 rq->prev_mm = oldmm;
2178 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002179 /*
2180 * Since the runqueue lock will be released by the next
2181 * task (which is an invalid locking op but in the case
2182 * of the scheduler it's an obvious special-case), so we
2183 * do an early lockdep release here:
2184 */
2185#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002186 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002187#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189 /* Here we just switch the register state and the stack. */
2190 switch_to(prev, next, prev);
2191
Ingo Molnardd41f592007-07-09 18:51:59 +02002192 barrier();
2193 /*
2194 * this_rq must be evaluated again because prev may have moved
2195 * CPUs since it called schedule(), thus the 'rq' on its stack
2196 * frame will be invalid.
2197 */
2198 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199}
2200
2201/*
2202 * nr_running, nr_uninterruptible and nr_context_switches:
2203 *
2204 * externally visible scheduler statistics: current number of runnable
2205 * threads, current number of uninterruptible-sleeping threads, total
2206 * number of context switches performed since bootup.
2207 */
2208unsigned long nr_running(void)
2209{
2210 unsigned long i, sum = 0;
2211
2212 for_each_online_cpu(i)
2213 sum += cpu_rq(i)->nr_running;
2214
2215 return sum;
2216}
2217
2218unsigned long nr_uninterruptible(void)
2219{
2220 unsigned long i, sum = 0;
2221
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002222 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 sum += cpu_rq(i)->nr_uninterruptible;
2224
2225 /*
2226 * Since we read the counters lockless, it might be slightly
2227 * inaccurate. Do not allow it to go below zero though:
2228 */
2229 if (unlikely((long)sum < 0))
2230 sum = 0;
2231
2232 return sum;
2233}
2234
2235unsigned long long nr_context_switches(void)
2236{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002237 int i;
2238 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002240 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 sum += cpu_rq(i)->nr_switches;
2242
2243 return sum;
2244}
2245
2246unsigned long nr_iowait(void)
2247{
2248 unsigned long i, sum = 0;
2249
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002250 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2252
2253 return sum;
2254}
2255
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002256unsigned long nr_active(void)
2257{
2258 unsigned long i, running = 0, uninterruptible = 0;
2259
2260 for_each_online_cpu(i) {
2261 running += cpu_rq(i)->nr_running;
2262 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2263 }
2264
2265 if (unlikely((long)uninterruptible < 0))
2266 uninterruptible = 0;
2267
2268 return running + uninterruptible;
2269}
2270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002272 * Update rq->cpu_load[] statistics. This function is usually called every
2273 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002274 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002275static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002276{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002277 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002278 int i, scale;
2279
2280 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002281
2282 /* Update our load: */
2283 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2284 unsigned long old_load, new_load;
2285
2286 /* scale is effectively 1 << i now, and >> i divides by scale */
2287
2288 old_load = this_rq->cpu_load[i];
2289 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002290 /*
2291 * Round up the averaging division if load is increasing. This
2292 * prevents us from getting stuck on 9 if the load is 10, for
2293 * example.
2294 */
2295 if (new_load > old_load)
2296 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002297 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2298 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002299}
2300
Ingo Molnardd41f592007-07-09 18:51:59 +02002301#ifdef CONFIG_SMP
2302
Ingo Molnar48f24c42006-07-03 00:25:40 -07002303/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 * double_rq_lock - safely lock two runqueues
2305 *
2306 * Note this does not disable interrupts like task_rq_lock,
2307 * you need to do so manually before calling.
2308 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002309static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 __acquires(rq1->lock)
2311 __acquires(rq2->lock)
2312{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002313 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 if (rq1 == rq2) {
2315 spin_lock(&rq1->lock);
2316 __acquire(rq2->lock); /* Fake it out ;) */
2317 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002318 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 spin_lock(&rq1->lock);
2320 spin_lock(&rq2->lock);
2321 } else {
2322 spin_lock(&rq2->lock);
2323 spin_lock(&rq1->lock);
2324 }
2325 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002326 update_rq_clock(rq1);
2327 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328}
2329
2330/*
2331 * double_rq_unlock - safely unlock two runqueues
2332 *
2333 * Note this does not restore interrupts like task_rq_unlock,
2334 * you need to do so manually after calling.
2335 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002336static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 __releases(rq1->lock)
2338 __releases(rq2->lock)
2339{
2340 spin_unlock(&rq1->lock);
2341 if (rq1 != rq2)
2342 spin_unlock(&rq2->lock);
2343 else
2344 __release(rq2->lock);
2345}
2346
2347/*
2348 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2349 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002350static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 __releases(this_rq->lock)
2352 __acquires(busiest->lock)
2353 __acquires(this_rq->lock)
2354{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002355 int ret = 0;
2356
Kirill Korotaev054b9102006-12-10 02:20:11 -08002357 if (unlikely(!irqs_disabled())) {
2358 /* printk() doesn't work good under rq->lock */
2359 spin_unlock(&this_rq->lock);
2360 BUG_ON(1);
2361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002363 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 spin_unlock(&this_rq->lock);
2365 spin_lock(&busiest->lock);
2366 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002367 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 } else
2369 spin_lock(&busiest->lock);
2370 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002371 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
2373
2374/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 * If dest_cpu is allowed for this process, migrate the task to it.
2376 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002377 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 * the cpu_allowed mask is restored.
2379 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002380static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002382 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002384 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
2386 rq = task_rq_lock(p, &flags);
2387 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2388 || unlikely(cpu_is_offline(dest_cpu)))
2389 goto out;
2390
2391 /* force the process onto the specified CPU */
2392 if (migrate_task(p, dest_cpu, &req)) {
2393 /* Need to wait for migration thread (might exit: take ref). */
2394 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 get_task_struct(mt);
2397 task_rq_unlock(rq, &flags);
2398 wake_up_process(mt);
2399 put_task_struct(mt);
2400 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 return;
2403 }
2404out:
2405 task_rq_unlock(rq, &flags);
2406}
2407
2408/*
Nick Piggin476d1392005-06-25 14:57:29 -07002409 * sched_exec - execve() is a valuable balancing opportunity, because at
2410 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 */
2412void sched_exec(void)
2413{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002415 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002417 if (new_cpu != this_cpu)
2418 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419}
2420
2421/*
2422 * pull_task - move a task from a remote runqueue to the local runqueue.
2423 * Both runqueues must be locked.
2424 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002425static void pull_task(struct rq *src_rq, struct task_struct *p,
2426 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002428 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002430 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 /*
2432 * Note that idle threads have a prio of MAX_PRIO, for this test
2433 * to be always true for them.
2434 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002435 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436}
2437
2438/*
2439 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2440 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002441static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002442int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002443 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002444 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445{
2446 /*
2447 * We do not migrate tasks that are:
2448 * 1) running (obviously), or
2449 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2450 * 3) are cache-hot on their current CPU.
2451 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002452 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2453 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002455 }
Nick Piggin81026792005-06-25 14:57:07 -07002456 *all_pinned = 0;
2457
Ingo Molnarcc367732007-10-15 17:00:18 +02002458 if (task_running(rq, p)) {
2459 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002460 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
Ingo Molnarda84d962007-10-15 17:00:18 +02002463 /*
2464 * Aggressive migration if:
2465 * 1) task is cache cold, or
2466 * 2) too many balance attempts have failed.
2467 */
2468
Ingo Molnar6bc16652007-10-15 17:00:18 +02002469 if (!task_hot(p, rq->clock, sd) ||
2470 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002471#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002472 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002473 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002474 schedstat_inc(p, se.nr_forced_migrations);
2475 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002476#endif
2477 return 1;
2478 }
2479
Ingo Molnarcc367732007-10-15 17:00:18 +02002480 if (task_hot(p, rq->clock, sd)) {
2481 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002482 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 return 1;
2485}
2486
Peter Williamse1d14842007-10-24 18:23:51 +02002487static unsigned long
2488balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2489 unsigned long max_load_move, struct sched_domain *sd,
2490 enum cpu_idle_type idle, int *all_pinned,
2491 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002492{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002493 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002494 struct task_struct *p;
2495 long rem_load_move = max_load_move;
2496
Peter Williamse1d14842007-10-24 18:23:51 +02002497 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002498 goto out;
2499
2500 pinned = 1;
2501
2502 /*
2503 * Start the load-balancing iterator:
2504 */
2505 p = iterator->start(iterator->arg);
2506next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002507 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002508 goto out;
2509 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002510 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002511 * skip a task if it will be the highest priority task (i.e. smallest
2512 * prio value) on its new queue regardless of its load weight
2513 */
2514 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2515 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002516 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002517 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002518 p = iterator->next(iterator->arg);
2519 goto next;
2520 }
2521
2522 pull_task(busiest, p, this_rq, this_cpu);
2523 pulled++;
2524 rem_load_move -= p->se.load.weight;
2525
2526 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002527 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002528 */
Peter Williamse1d14842007-10-24 18:23:51 +02002529 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002530 if (p->prio < *this_best_prio)
2531 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002532 p = iterator->next(iterator->arg);
2533 goto next;
2534 }
2535out:
2536 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002537 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002538 * so we can safely collect pull_task() stats here rather than
2539 * inside pull_task().
2540 */
2541 schedstat_add(sd, lb_gained[idle], pulled);
2542
2543 if (all_pinned)
2544 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002545
2546 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002547}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549/*
Peter Williams43010652007-08-09 11:16:46 +02002550 * move_tasks tries to move up to max_load_move weighted load from busiest to
2551 * this_rq, as part of a balancing operation within domain "sd".
2552 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 *
2554 * Called with both runqueues locked.
2555 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002556static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002557 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002558 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002559 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002561 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002562 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002563 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Ingo Molnardd41f592007-07-09 18:51:59 +02002565 do {
Peter Williams43010652007-08-09 11:16:46 +02002566 total_load_moved +=
2567 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002568 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002569 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002570 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002571 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
Peter Williams43010652007-08-09 11:16:46 +02002573 return total_load_moved > 0;
2574}
2575
Peter Williamse1d14842007-10-24 18:23:51 +02002576static int
2577iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2578 struct sched_domain *sd, enum cpu_idle_type idle,
2579 struct rq_iterator *iterator)
2580{
2581 struct task_struct *p = iterator->start(iterator->arg);
2582 int pinned = 0;
2583
2584 while (p) {
2585 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2586 pull_task(busiest, p, this_rq, this_cpu);
2587 /*
2588 * Right now, this is only the second place pull_task()
2589 * is called, so we can safely collect pull_task()
2590 * stats here rather than inside pull_task().
2591 */
2592 schedstat_inc(sd, lb_gained[idle]);
2593
2594 return 1;
2595 }
2596 p = iterator->next(iterator->arg);
2597 }
2598
2599 return 0;
2600}
2601
Peter Williams43010652007-08-09 11:16:46 +02002602/*
2603 * move_one_task tries to move exactly one task from busiest to this_rq, as
2604 * part of active balancing operations within "domain".
2605 * Returns 1 if successful and 0 otherwise.
2606 *
2607 * Called with both runqueues locked.
2608 */
2609static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2610 struct sched_domain *sd, enum cpu_idle_type idle)
2611{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002612 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002613
2614 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002615 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002616 return 1;
2617
2618 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619}
2620
2621/*
2622 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002623 * domain. It calculates and returns the amount of weighted load which
2624 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 */
2626static struct sched_group *
2627find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002628 unsigned long *imbalance, enum cpu_idle_type idle,
2629 int *sd_idle, cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630{
2631 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2632 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002633 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002634 unsigned long busiest_load_per_task, busiest_nr_running;
2635 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002636 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002637#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2638 int power_savings_balance = 1;
2639 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2640 unsigned long min_nr_running = ULONG_MAX;
2641 struct sched_group *group_min = NULL, *group_leader = NULL;
2642#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
2644 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002645 busiest_load_per_task = busiest_nr_running = 0;
2646 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002647 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002648 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002649 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002650 load_idx = sd->newidle_idx;
2651 else
2652 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
2654 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002655 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 int local_group;
2657 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002658 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002659 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002660 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
2662 local_group = cpu_isset(this_cpu, group->cpumask);
2663
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002664 if (local_group)
2665 balance_cpu = first_cpu(group->cpumask);
2666
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002668 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002669 max_cpu_load = 0;
2670 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002673 struct rq *rq;
2674
2675 if (!cpu_isset(i, *cpus))
2676 continue;
2677
2678 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002679
Suresh Siddha9439aab2007-07-19 21:28:35 +02002680 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002681 *sd_idle = 0;
2682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002684 if (local_group) {
2685 if (idle_cpu(i) && !first_idle_cpu) {
2686 first_idle_cpu = 1;
2687 balance_cpu = i;
2688 }
2689
Nick Piggina2000572006-02-10 01:51:02 -08002690 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002691 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002692 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002693 if (load > max_cpu_load)
2694 max_cpu_load = load;
2695 if (min_cpu_load > load)
2696 min_cpu_load = load;
2697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
2699 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002700 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002701 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 }
2703
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002704 /*
2705 * First idle cpu or the first cpu(busiest) in this sched group
2706 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002707 * domains. In the newly idle case, we will allow all the cpu's
2708 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002709 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002710 if (idle != CPU_NEWLY_IDLE && local_group &&
2711 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002712 *balance = 0;
2713 goto ret;
2714 }
2715
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002717 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
2719 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002720 avg_load = sg_div_cpu_power(group,
2721 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Ken Chen908a7c12007-10-17 16:55:11 +02002723 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
2724 __group_imb = 1;
2725
Eric Dumazet5517d862007-05-08 00:32:57 -07002726 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002727
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 if (local_group) {
2729 this_load = avg_load;
2730 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002731 this_nr_running = sum_nr_running;
2732 this_load_per_task = sum_weighted_load;
2733 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02002734 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 max_load = avg_load;
2736 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002737 busiest_nr_running = sum_nr_running;
2738 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02002739 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002741
2742#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2743 /*
2744 * Busy processors will not participate in power savings
2745 * balance.
2746 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002747 if (idle == CPU_NOT_IDLE ||
2748 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2749 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002750
2751 /*
2752 * If the local group is idle or completely loaded
2753 * no need to do power savings balance at this domain
2754 */
2755 if (local_group && (this_nr_running >= group_capacity ||
2756 !this_nr_running))
2757 power_savings_balance = 0;
2758
Ingo Molnardd41f592007-07-09 18:51:59 +02002759 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002760 * If a group is already running at full capacity or idle,
2761 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002762 */
2763 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002764 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002765 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002766
Ingo Molnardd41f592007-07-09 18:51:59 +02002767 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002768 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002769 * This is the group from where we need to pick up the load
2770 * for saving power
2771 */
2772 if ((sum_nr_running < min_nr_running) ||
2773 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002774 first_cpu(group->cpumask) <
2775 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002776 group_min = group;
2777 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002778 min_load_per_task = sum_weighted_load /
2779 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002780 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002781
Ingo Molnardd41f592007-07-09 18:51:59 +02002782 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002783 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002784 * capacity but still has some space to pick up some load
2785 * from other group and save more power
2786 */
2787 if (sum_nr_running <= group_capacity - 1) {
2788 if (sum_nr_running > leader_nr_running ||
2789 (sum_nr_running == leader_nr_running &&
2790 first_cpu(group->cpumask) >
2791 first_cpu(group_leader->cpumask))) {
2792 group_leader = group;
2793 leader_nr_running = sum_nr_running;
2794 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002795 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002796group_next:
2797#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 group = group->next;
2799 } while (group != sd->groups);
2800
Peter Williams2dd73a42006-06-27 02:54:34 -07002801 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 goto out_balanced;
2803
2804 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2805
2806 if (this_load >= avg_load ||
2807 100*max_load <= sd->imbalance_pct*this_load)
2808 goto out_balanced;
2809
Peter Williams2dd73a42006-06-27 02:54:34 -07002810 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002811 if (group_imb)
2812 busiest_load_per_task = min(busiest_load_per_task, avg_load);
2813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 /*
2815 * We're trying to get all the cpus to the average_load, so we don't
2816 * want to push ourselves above the average load, nor do we wish to
2817 * reduce the max loaded cpu below the average load, as either of these
2818 * actions would just result in more rebalancing later, and ping-pong
2819 * tasks around. Thus we look for the minimum possible imbalance.
2820 * Negative imbalances (*we* are more loaded than anyone else) will
2821 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002822 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 * appear as very large values with unsigned longs.
2824 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002825 if (max_load <= busiest_load_per_task)
2826 goto out_balanced;
2827
2828 /*
2829 * In the presence of smp nice balancing, certain scenarios can have
2830 * max load less than avg load(as we skip the groups at or below
2831 * its cpu_power, while calculating max_load..)
2832 */
2833 if (max_load < avg_load) {
2834 *imbalance = 0;
2835 goto small_imbalance;
2836 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002837
2838 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002839 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07002842 *imbalance = min(max_pull * busiest->__cpu_power,
2843 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 / SCHED_LOAD_SCALE;
2845
Peter Williams2dd73a42006-06-27 02:54:34 -07002846 /*
2847 * if *imbalance is less than the average load per runnable task
2848 * there is no gaurantee that any tasks will be moved so we'll have
2849 * a think about bumping its value to force at least one task to be
2850 * moved
2851 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002852 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002853 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002854 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
Peter Williams2dd73a42006-06-27 02:54:34 -07002856small_imbalance:
2857 pwr_move = pwr_now = 0;
2858 imbn = 2;
2859 if (this_nr_running) {
2860 this_load_per_task /= this_nr_running;
2861 if (busiest_load_per_task > this_load_per_task)
2862 imbn = 1;
2863 } else
2864 this_load_per_task = SCHED_LOAD_SCALE;
2865
Ingo Molnardd41f592007-07-09 18:51:59 +02002866 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
2867 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002868 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 return busiest;
2870 }
2871
2872 /*
2873 * OK, we don't have enough imbalance to justify moving tasks,
2874 * however we may be able to increase total CPU power used by
2875 * moving them.
2876 */
2877
Eric Dumazet5517d862007-05-08 00:32:57 -07002878 pwr_now += busiest->__cpu_power *
2879 min(busiest_load_per_task, max_load);
2880 pwr_now += this->__cpu_power *
2881 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 pwr_now /= SCHED_LOAD_SCALE;
2883
2884 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07002885 tmp = sg_div_cpu_power(busiest,
2886 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07002888 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07002889 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07002892 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002893 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07002894 tmp = sg_div_cpu_power(this,
2895 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 else
Eric Dumazet5517d862007-05-08 00:32:57 -07002897 tmp = sg_div_cpu_power(this,
2898 busiest_load_per_task * SCHED_LOAD_SCALE);
2899 pwr_move += this->__cpu_power *
2900 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 pwr_move /= SCHED_LOAD_SCALE;
2902
2903 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002904 if (pwr_move > pwr_now)
2905 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 }
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 return busiest;
2909
2910out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002911#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002912 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002913 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002915 if (this == group_leader && group_leader != group_min) {
2916 *imbalance = min_load_per_task;
2917 return group_min;
2918 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002919#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002920ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 *imbalance = 0;
2922 return NULL;
2923}
2924
2925/*
2926 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2927 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002928static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002929find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002930 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002932 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002933 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 int i;
2935
2936 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002937 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002938
2939 if (!cpu_isset(i, *cpus))
2940 continue;
2941
Ingo Molnar48f24c42006-07-03 00:25:40 -07002942 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02002943 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
Ingo Molnardd41f592007-07-09 18:51:59 +02002945 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002946 continue;
2947
Ingo Molnardd41f592007-07-09 18:51:59 +02002948 if (wl > max_load) {
2949 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002950 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 }
2952 }
2953
2954 return busiest;
2955}
2956
2957/*
Nick Piggin77391d72005-06-25 14:57:30 -07002958 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2959 * so long as it is large enough.
2960 */
2961#define MAX_PINNED_INTERVAL 512
2962
2963/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2965 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002967static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002968 struct sched_domain *sd, enum cpu_idle_type idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002969 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970{
Peter Williams43010652007-08-09 11:16:46 +02002971 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002974 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002975 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002976 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002977
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002978 /*
2979 * When power savings policy is enabled for the parent domain, idle
2980 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02002981 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002982 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002983 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002984 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002985 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002986 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
Ingo Molnar2d723762007-10-15 17:00:12 +02002988 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002990redo:
2991 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002992 &cpus, balance);
2993
Chen, Kenneth W06066712006-12-10 02:20:35 -08002994 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002995 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002996
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 if (!group) {
2998 schedstat_inc(sd, lb_nobusyg[idle]);
2999 goto out_balanced;
3000 }
3001
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003002 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 if (!busiest) {
3004 schedstat_inc(sd, lb_nobusyq[idle]);
3005 goto out_balanced;
3006 }
3007
Nick Piggindb935db2005-06-25 14:57:11 -07003008 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
3010 schedstat_add(sd, lb_imbalance[idle], imbalance);
3011
Peter Williams43010652007-08-09 11:16:46 +02003012 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 if (busiest->nr_running > 1) {
3014 /*
3015 * Attempt to move tasks. If find_busiest_group has found
3016 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003017 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 * correctly treated as an imbalance.
3019 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003020 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003021 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003022 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003023 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003024 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003025 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003026
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003027 /*
3028 * some other cpu did the load balance for us.
3029 */
Peter Williams43010652007-08-09 11:16:46 +02003030 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003031 resched_cpu(this_cpu);
3032
Nick Piggin81026792005-06-25 14:57:07 -07003033 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003034 if (unlikely(all_pinned)) {
3035 cpu_clear(cpu_of(busiest), cpus);
3036 if (!cpus_empty(cpus))
3037 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003038 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 }
Nick Piggin81026792005-06-25 14:57:07 -07003041
Peter Williams43010652007-08-09 11:16:46 +02003042 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 schedstat_inc(sd, lb_failed[idle]);
3044 sd->nr_balance_failed++;
3045
3046 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003048 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003049
3050 /* don't kick the migration_thread, if the curr
3051 * task on busiest cpu can't be moved to this_cpu
3052 */
3053 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003054 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003055 all_pinned = 1;
3056 goto out_one_pinned;
3057 }
3058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 if (!busiest->active_balance) {
3060 busiest->active_balance = 1;
3061 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003062 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003064 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003065 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 wake_up_process(busiest->migration_thread);
3067
3068 /*
3069 * We've kicked active balancing, reset the failure
3070 * counter.
3071 */
Nick Piggin39507452005-06-25 14:57:09 -07003072 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 }
Nick Piggin81026792005-06-25 14:57:07 -07003074 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 sd->nr_balance_failed = 0;
3076
Nick Piggin81026792005-06-25 14:57:07 -07003077 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 /* We were unbalanced, so reset the balancing interval */
3079 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003080 } else {
3081 /*
3082 * If we've begun active balancing, start to back off. This
3083 * case may not be covered by the all_pinned logic if there
3084 * is only 1 task on the busy runqueue (because we don't call
3085 * move_tasks).
3086 */
3087 if (sd->balance_interval < sd->max_interval)
3088 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 }
3090
Peter Williams43010652007-08-09 11:16:46 +02003091 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003092 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003093 return -1;
Peter Williams43010652007-08-09 11:16:46 +02003094 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
3096out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 schedstat_inc(sd, lb_balanced[idle]);
3098
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003099 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003100
3101out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003103 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3104 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 sd->balance_interval *= 2;
3106
Ingo Molnar48f24c42006-07-03 00:25:40 -07003107 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003108 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003109 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 return 0;
3111}
3112
3113/*
3114 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3115 * tasks if there is an imbalance.
3116 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003117 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 * this_rq is locked.
3119 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003120static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003121load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122{
3123 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003124 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003126 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003127 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003128 int all_pinned = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003129 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07003130
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003131 /*
3132 * When power savings policy is enabled for the parent domain, idle
3133 * sibling can pick up load irrespective of busy siblings. In this case,
3134 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003135 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003136 */
3137 if (sd->flags & SD_SHARE_CPUPOWER &&
3138 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003139 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
Ingo Molnar2d723762007-10-15 17:00:12 +02003141 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003142redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003143 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003144 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003146 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003147 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 }
3149
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003150 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003151 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003152 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003153 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003154 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 }
3156
Nick Piggindb935db2005-06-25 14:57:11 -07003157 BUG_ON(busiest == this_rq);
3158
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003159 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003160
Peter Williams43010652007-08-09 11:16:46 +02003161 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003162 if (busiest->nr_running > 1) {
3163 /* Attempt to move tasks */
3164 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003165 /* this_rq->clock is already updated */
3166 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003167 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003168 imbalance, sd, CPU_NEWLY_IDLE,
3169 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003170 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003171
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003172 if (unlikely(all_pinned)) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003173 cpu_clear(cpu_of(busiest), cpus);
3174 if (!cpus_empty(cpus))
3175 goto redo;
3176 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003177 }
3178
Peter Williams43010652007-08-09 11:16:46 +02003179 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003180 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003181 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3182 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003183 return -1;
3184 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003185 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Peter Williams43010652007-08-09 11:16:46 +02003187 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003188
3189out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003190 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003191 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003192 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003193 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003194 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003195
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197}
3198
3199/*
3200 * idle_balance is called by schedule() if this_cpu is about to become
3201 * idle. Attempts to pull tasks from other CPUs.
3202 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003203static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204{
3205 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003206 int pulled_task = -1;
3207 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
3209 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003210 unsigned long interval;
3211
3212 if (!(sd->flags & SD_LOAD_BALANCE))
3213 continue;
3214
3215 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003216 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003217 pulled_task = load_balance_newidle(this_cpu,
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003218 this_rq, sd);
3219
3220 interval = msecs_to_jiffies(sd->balance_interval);
3221 if (time_after(next_balance, sd->last_balance + interval))
3222 next_balance = sd->last_balance + interval;
3223 if (pulled_task)
3224 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003226 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003227 /*
3228 * We are going idle. next_balance may be set based on
3229 * a busy processor. So reset next_balance.
3230 */
3231 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233}
3234
3235/*
3236 * active_load_balance is run by migration threads. It pushes running tasks
3237 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3238 * running on each physical CPU where possible, and avoids physical /
3239 * logical imbalances.
3240 *
3241 * Called with busiest_rq locked.
3242 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003243static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244{
Nick Piggin39507452005-06-25 14:57:09 -07003245 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003246 struct sched_domain *sd;
3247 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003248
Ingo Molnar48f24c42006-07-03 00:25:40 -07003249 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003250 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003251 return;
3252
3253 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
3255 /*
Nick Piggin39507452005-06-25 14:57:09 -07003256 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003257 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003258 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 */
Nick Piggin39507452005-06-25 14:57:09 -07003260 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Nick Piggin39507452005-06-25 14:57:09 -07003262 /* move a task from busiest_rq to target_rq */
3263 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003264 update_rq_clock(busiest_rq);
3265 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Nick Piggin39507452005-06-25 14:57:09 -07003267 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003268 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003269 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003270 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003271 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Ingo Molnar48f24c42006-07-03 00:25:40 -07003274 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003275 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276
Peter Williams43010652007-08-09 11:16:46 +02003277 if (move_one_task(target_rq, target_cpu, busiest_rq,
3278 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003279 schedstat_inc(sd, alb_pushed);
3280 else
3281 schedstat_inc(sd, alb_failed);
3282 }
Nick Piggin39507452005-06-25 14:57:09 -07003283 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284}
3285
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003286#ifdef CONFIG_NO_HZ
3287static struct {
3288 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003289 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003290} nohz ____cacheline_aligned = {
3291 .load_balancer = ATOMIC_INIT(-1),
3292 .cpu_mask = CPU_MASK_NONE,
3293};
3294
Christoph Lameter7835b982006-12-10 02:20:22 -08003295/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003296 * This routine will try to nominate the ilb (idle load balancing)
3297 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3298 * load balancing on behalf of all those cpus. If all the cpus in the system
3299 * go into this tickless mode, then there will be no ilb owner (as there is
3300 * no need for one) and all the cpus will sleep till the next wakeup event
3301 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003302 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003303 * For the ilb owner, tick is not stopped. And this tick will be used
3304 * for idle load balancing. ilb owner will still be part of
3305 * nohz.cpu_mask..
3306 *
3307 * While stopping the tick, this cpu will become the ilb owner if there
3308 * is no other owner. And will be the owner till that cpu becomes busy
3309 * or if all cpus in the system stop their ticks at which point
3310 * there is no need for ilb owner.
3311 *
3312 * When the ilb owner becomes busy, it nominates another owner, during the
3313 * next busy scheduler_tick()
3314 */
3315int select_nohz_load_balancer(int stop_tick)
3316{
3317 int cpu = smp_processor_id();
3318
3319 if (stop_tick) {
3320 cpu_set(cpu, nohz.cpu_mask);
3321 cpu_rq(cpu)->in_nohz_recently = 1;
3322
3323 /*
3324 * If we are going offline and still the leader, give up!
3325 */
3326 if (cpu_is_offline(cpu) &&
3327 atomic_read(&nohz.load_balancer) == cpu) {
3328 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3329 BUG();
3330 return 0;
3331 }
3332
3333 /* time for ilb owner also to sleep */
3334 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3335 if (atomic_read(&nohz.load_balancer) == cpu)
3336 atomic_set(&nohz.load_balancer, -1);
3337 return 0;
3338 }
3339
3340 if (atomic_read(&nohz.load_balancer) == -1) {
3341 /* make me the ilb owner */
3342 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3343 return 1;
3344 } else if (atomic_read(&nohz.load_balancer) == cpu)
3345 return 1;
3346 } else {
3347 if (!cpu_isset(cpu, nohz.cpu_mask))
3348 return 0;
3349
3350 cpu_clear(cpu, nohz.cpu_mask);
3351
3352 if (atomic_read(&nohz.load_balancer) == cpu)
3353 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3354 BUG();
3355 }
3356 return 0;
3357}
3358#endif
3359
3360static DEFINE_SPINLOCK(balancing);
3361
3362/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003363 * It checks each scheduling domain to see if it is due to be balanced,
3364 * and initiates a balancing operation if so.
3365 *
3366 * Balancing parameters are set up in arch_init_sched_domains.
3367 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003368static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003369{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003370 int balance = 1;
3371 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003372 unsigned long interval;
3373 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003374 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003375 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003376 int update_next_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003378 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 if (!(sd->flags & SD_LOAD_BALANCE))
3380 continue;
3381
3382 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003383 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 interval *= sd->busy_factor;
3385
3386 /* scale ms to jiffies */
3387 interval = msecs_to_jiffies(interval);
3388 if (unlikely(!interval))
3389 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003390 if (interval > HZ*NR_CPUS/10)
3391 interval = HZ*NR_CPUS/10;
3392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
Christoph Lameter08c183f2006-12-10 02:20:29 -08003394 if (sd->flags & SD_SERIALIZE) {
3395 if (!spin_trylock(&balancing))
3396 goto out;
3397 }
3398
Christoph Lameterc9819f42006-12-10 02:20:25 -08003399 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003400 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003401 /*
3402 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003403 * longer idle, or one of our SMT siblings is
3404 * not idle.
3405 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003406 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003408 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003410 if (sd->flags & SD_SERIALIZE)
3411 spin_unlock(&balancing);
3412out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003413 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003414 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003415 update_next_balance = 1;
3416 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003417
3418 /*
3419 * Stop the load balance at this level. There is another
3420 * CPU in our sched group which is doing load balancing more
3421 * actively.
3422 */
3423 if (!balance)
3424 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003426
3427 /*
3428 * next_balance will be updated only when there is a need.
3429 * When the cpu is attached to null domain for ex, it will not be
3430 * updated.
3431 */
3432 if (likely(update_next_balance))
3433 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003434}
3435
3436/*
3437 * run_rebalance_domains is triggered when needed from the scheduler tick.
3438 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3439 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3440 */
3441static void run_rebalance_domains(struct softirq_action *h)
3442{
Ingo Molnardd41f592007-07-09 18:51:59 +02003443 int this_cpu = smp_processor_id();
3444 struct rq *this_rq = cpu_rq(this_cpu);
3445 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3446 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003447
Ingo Molnardd41f592007-07-09 18:51:59 +02003448 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003449
3450#ifdef CONFIG_NO_HZ
3451 /*
3452 * If this cpu is the owner for idle load balancing, then do the
3453 * balancing on behalf of the other idle cpus whose ticks are
3454 * stopped.
3455 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003456 if (this_rq->idle_at_tick &&
3457 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003458 cpumask_t cpus = nohz.cpu_mask;
3459 struct rq *rq;
3460 int balance_cpu;
3461
Ingo Molnardd41f592007-07-09 18:51:59 +02003462 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003463 for_each_cpu_mask(balance_cpu, cpus) {
3464 /*
3465 * If this cpu gets work to do, stop the load balancing
3466 * work being done for other cpus. Next load
3467 * balancing owner will pick it up.
3468 */
3469 if (need_resched())
3470 break;
3471
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003472 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003473
3474 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003475 if (time_after(this_rq->next_balance, rq->next_balance))
3476 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003477 }
3478 }
3479#endif
3480}
3481
3482/*
3483 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3484 *
3485 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3486 * idle load balancing owner or decide to stop the periodic load balancing,
3487 * if the whole system is idle.
3488 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003489static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003490{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003491#ifdef CONFIG_NO_HZ
3492 /*
3493 * If we were in the nohz mode recently and busy at the current
3494 * scheduler tick, then check if we need to nominate new idle
3495 * load balancer.
3496 */
3497 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3498 rq->in_nohz_recently = 0;
3499
3500 if (atomic_read(&nohz.load_balancer) == cpu) {
3501 cpu_clear(cpu, nohz.cpu_mask);
3502 atomic_set(&nohz.load_balancer, -1);
3503 }
3504
3505 if (atomic_read(&nohz.load_balancer) == -1) {
3506 /*
3507 * simple selection for now: Nominate the
3508 * first cpu in the nohz list to be the next
3509 * ilb owner.
3510 *
3511 * TBD: Traverse the sched domains and nominate
3512 * the nearest cpu in the nohz.cpu_mask.
3513 */
3514 int ilb = first_cpu(nohz.cpu_mask);
3515
3516 if (ilb != NR_CPUS)
3517 resched_cpu(ilb);
3518 }
3519 }
3520
3521 /*
3522 * If this cpu is idle and doing idle load balancing for all the
3523 * cpus with ticks stopped, is it time for that to stop?
3524 */
3525 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3526 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3527 resched_cpu(cpu);
3528 return;
3529 }
3530
3531 /*
3532 * If this cpu is idle and the idle load balancing is done by
3533 * someone else, then no need raise the SCHED_SOFTIRQ
3534 */
3535 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3536 cpu_isset(cpu, nohz.cpu_mask))
3537 return;
3538#endif
3539 if (time_after_eq(jiffies, rq->next_balance))
3540 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541}
Ingo Molnardd41f592007-07-09 18:51:59 +02003542
3543#else /* CONFIG_SMP */
3544
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545/*
3546 * on UP we do not need to balance between CPUs:
3547 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003548static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549{
3550}
Ingo Molnardd41f592007-07-09 18:51:59 +02003551
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552#endif
3553
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554DEFINE_PER_CPU(struct kernel_stat, kstat);
3555
3556EXPORT_PER_CPU_SYMBOL(kstat);
3557
3558/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003559 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3560 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003562unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003565 u64 ns, delta_exec;
3566 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003567
Ingo Molnar41b86e92007-07-09 18:51:58 +02003568 rq = task_rq_lock(p, &flags);
3569 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003570 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003571 update_rq_clock(rq);
3572 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003573 if ((s64)delta_exec > 0)
3574 ns += delta_exec;
3575 }
3576 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 return ns;
3579}
3580
3581/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 * Account user cpu time to a process.
3583 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 * @cputime: the cpu time spent in user space since the last update
3585 */
3586void account_user_time(struct task_struct *p, cputime_t cputime)
3587{
3588 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3589 cputime64_t tmp;
3590
3591 p->utime = cputime_add(p->utime, cputime);
3592
3593 /* Add user time to cpustat. */
3594 tmp = cputime_to_cputime64(cputime);
3595 if (TASK_NICE(p) > 0)
3596 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3597 else
3598 cpustat->user = cputime64_add(cpustat->user, tmp);
3599}
3600
3601/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003602 * Account guest cpu time to a process.
3603 * @p: the process that the cpu time gets accounted to
3604 * @cputime: the cpu time spent in virtual machine since the last update
3605 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003606static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003607{
3608 cputime64_t tmp;
3609 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3610
3611 tmp = cputime_to_cputime64(cputime);
3612
3613 p->utime = cputime_add(p->utime, cputime);
3614 p->gtime = cputime_add(p->gtime, cputime);
3615
3616 cpustat->user = cputime64_add(cpustat->user, tmp);
3617 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3618}
3619
3620/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003621 * Account scaled user cpu time to a process.
3622 * @p: the process that the cpu time gets accounted to
3623 * @cputime: the cpu time spent in user space since the last update
3624 */
3625void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3626{
3627 p->utimescaled = cputime_add(p->utimescaled, cputime);
3628}
3629
3630/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 * Account system cpu time to a process.
3632 * @p: the process that the cpu time gets accounted to
3633 * @hardirq_offset: the offset to subtract from hardirq_count()
3634 * @cputime: the cpu time spent in kernel space since the last update
3635 */
3636void account_system_time(struct task_struct *p, int hardirq_offset,
3637 cputime_t cputime)
3638{
3639 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003640 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 cputime64_t tmp;
3642
Christian Borntraeger97783852007-11-15 20:57:39 +01003643 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
3644 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003645
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 p->stime = cputime_add(p->stime, cputime);
3647
3648 /* Add system time to cpustat. */
3649 tmp = cputime_to_cputime64(cputime);
3650 if (hardirq_count() - hardirq_offset)
3651 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3652 else if (softirq_count())
3653 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003654 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003656 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3658 else
3659 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3660 /* Account for system time used */
3661 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662}
3663
3664/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003665 * Account scaled system cpu time to a process.
3666 * @p: the process that the cpu time gets accounted to
3667 * @hardirq_offset: the offset to subtract from hardirq_count()
3668 * @cputime: the cpu time spent in kernel space since the last update
3669 */
3670void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
3671{
3672 p->stimescaled = cputime_add(p->stimescaled, cputime);
3673}
3674
3675/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 * Account for involuntary wait time.
3677 * @p: the process from which the cpu time has been stolen
3678 * @steal: the cpu time spent in involuntary wait
3679 */
3680void account_steal_time(struct task_struct *p, cputime_t steal)
3681{
3682 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3683 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003684 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685
3686 if (p == rq->idle) {
3687 p->stime = cputime_add(p->stime, steal);
3688 if (atomic_read(&rq->nr_iowait) > 0)
3689 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3690 else
3691 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003692 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3694}
3695
Christoph Lameter7835b982006-12-10 02:20:22 -08003696/*
3697 * This function gets called by the timer code, with HZ frequency.
3698 * We call it with interrupts disabled.
3699 *
3700 * It also gets called by the fork code, when changing the parent's
3701 * timeslices.
3702 */
3703void scheduler_tick(void)
3704{
Christoph Lameter7835b982006-12-10 02:20:22 -08003705 int cpu = smp_processor_id();
3706 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003707 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003708 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003709
Ingo Molnardd41f592007-07-09 18:51:59 +02003710 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003711 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003712 /*
3713 * Let rq->clock advance by at least TICK_NSEC:
3714 */
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003715 if (unlikely(rq->clock < next_tick)) {
Ingo Molnar529c7722007-08-10 23:05:11 +02003716 rq->clock = next_tick;
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003717 rq->clock_underflows++;
3718 }
Ingo Molnar529c7722007-08-10 23:05:11 +02003719 rq->tick_timestamp = rq->clock;
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003720 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003721 curr->sched_class->task_tick(rq, curr, 0);
3722 update_sched_rt_period(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003723 spin_unlock(&rq->lock);
3724
Christoph Lametere418e1c2006-12-10 02:20:23 -08003725#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003726 rq->idle_at_tick = idle_cpu(cpu);
3727 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003728#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729}
3730
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3732
Srinivasa Ds43627582008-02-23 15:24:04 -08003733void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734{
3735 /*
3736 * Underflow?
3737 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003738 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3739 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 preempt_count() += val;
3741 /*
3742 * Spinlock count overflowing soon?
3743 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003744 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3745 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746}
3747EXPORT_SYMBOL(add_preempt_count);
3748
Srinivasa Ds43627582008-02-23 15:24:04 -08003749void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750{
3751 /*
3752 * Underflow?
3753 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003754 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3755 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 /*
3757 * Is the spinlock portion underflowing?
3758 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003759 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3760 !(preempt_count() & PREEMPT_MASK)))
3761 return;
3762
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 preempt_count() -= val;
3764}
3765EXPORT_SYMBOL(sub_preempt_count);
3766
3767#endif
3768
3769/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003770 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003772static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773{
Satyam Sharma838225b2007-10-24 18:23:50 +02003774 struct pt_regs *regs = get_irq_regs();
3775
3776 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
3777 prev->comm, prev->pid, preempt_count());
3778
Ingo Molnardd41f592007-07-09 18:51:59 +02003779 debug_show_held_locks(prev);
3780 if (irqs_disabled())
3781 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003782
3783 if (regs)
3784 show_regs(regs);
3785 else
3786 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003787}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788
Ingo Molnardd41f592007-07-09 18:51:59 +02003789/*
3790 * Various schedule()-time debugging checks and statistics:
3791 */
3792static inline void schedule_debug(struct task_struct *prev)
3793{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003795 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 * schedule() atomically, we ignore that path for now.
3797 * Otherwise, whine if we are scheduling when we should not be.
3798 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003799 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3800 __schedule_bug(prev);
3801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3803
Ingo Molnar2d723762007-10-15 17:00:12 +02003804 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003805#ifdef CONFIG_SCHEDSTATS
3806 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003807 schedstat_inc(this_rq(), bkl_count);
3808 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003809 }
3810#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02003811}
3812
3813/*
3814 * Pick up the highest-prio task:
3815 */
3816static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003817pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02003818{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003819 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02003820 struct task_struct *p;
3821
3822 /*
3823 * Optimization: we know that if all tasks are in
3824 * the fair class we can call that function directly:
3825 */
3826 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003827 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003828 if (likely(p))
3829 return p;
3830 }
3831
3832 class = sched_class_highest;
3833 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003834 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003835 if (p)
3836 return p;
3837 /*
3838 * Will never be NULL as the idle class always
3839 * returns a non-NULL p:
3840 */
3841 class = class->next;
3842 }
3843}
3844
3845/*
3846 * schedule() is the main scheduler function.
3847 */
3848asmlinkage void __sched schedule(void)
3849{
3850 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08003851 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02003852 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003853 int cpu;
3854
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855need_resched:
3856 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02003857 cpu = smp_processor_id();
3858 rq = cpu_rq(cpu);
3859 rcu_qsctr_inc(cpu);
3860 prev = rq->curr;
3861 switch_count = &prev->nivcsw;
3862
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 release_kernel_lock(prev);
3864need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
Ingo Molnardd41f592007-07-09 18:51:59 +02003866 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003868 hrtick_clear(rq);
3869
Ingo Molnar1e819952007-10-15 17:00:13 +02003870 /*
3871 * Do the rq-clock update outside the rq lock:
3872 */
3873 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02003874 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02003875 spin_lock(&rq->lock);
3876 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
Ingo Molnardd41f592007-07-09 18:51:59 +02003878 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3879 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3880 unlikely(signal_pending(prev)))) {
3881 prev->state = TASK_RUNNING;
3882 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003883 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02003884 }
3885 switch_count = &prev->nvcsw;
3886 }
3887
Steven Rostedt9a897c52008-01-25 21:08:22 +01003888#ifdef CONFIG_SMP
3889 if (prev->sched_class->pre_schedule)
3890 prev->sched_class->pre_schedule(rq, prev);
3891#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01003892
Ingo Molnardd41f592007-07-09 18:51:59 +02003893 if (unlikely(!rq->nr_running))
3894 idle_balance(cpu, rq);
3895
Ingo Molnar31ee5292007-08-09 11:16:49 +02003896 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003897 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
3899 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02003900
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 rq->nr_switches++;
3903 rq->curr = next;
3904 ++*switch_count;
3905
Ingo Molnardd41f592007-07-09 18:51:59 +02003906 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003907 /*
3908 * the context switch might have flipped the stack from under
3909 * us, hence refresh the local variables.
3910 */
3911 cpu = smp_processor_id();
3912 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 } else
3914 spin_unlock_irq(&rq->lock);
3915
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003916 hrtick_set(rq);
3917
3918 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003920
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 preempt_enable_no_resched();
3922 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3923 goto need_resched;
3924}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925EXPORT_SYMBOL(schedule);
3926
3927#ifdef CONFIG_PREEMPT
3928/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003929 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003930 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 * occur there and call schedule directly.
3932 */
3933asmlinkage void __sched preempt_schedule(void)
3934{
3935 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 struct task_struct *task = current;
3937 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01003938
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 /*
3940 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003941 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003943 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 return;
3945
Andi Kleen3a5c3592007-10-15 17:00:14 +02003946 do {
3947 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Andi Kleen3a5c3592007-10-15 17:00:14 +02003949 /*
3950 * We keep the big kernel semaphore locked, but we
3951 * clear ->lock_depth so that schedule() doesnt
3952 * auto-release the semaphore:
3953 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02003954 saved_lock_depth = task->lock_depth;
3955 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003956 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02003957 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003958 sub_preempt_count(PREEMPT_ACTIVE);
3959
3960 /*
3961 * Check again in case we missed a preemption opportunity
3962 * between schedule and now.
3963 */
3964 barrier();
3965 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967EXPORT_SYMBOL(preempt_schedule);
3968
3969/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003970 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 * off of irq context.
3972 * Note, that this is called and return with irqs disabled. This will
3973 * protect us against recursive calling from irq.
3974 */
3975asmlinkage void __sched preempt_schedule_irq(void)
3976{
3977 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 struct task_struct *task = current;
3979 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01003980
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003981 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 BUG_ON(ti->preempt_count || !irqs_disabled());
3983
Andi Kleen3a5c3592007-10-15 17:00:14 +02003984 do {
3985 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
Andi Kleen3a5c3592007-10-15 17:00:14 +02003987 /*
3988 * We keep the big kernel semaphore locked, but we
3989 * clear ->lock_depth so that schedule() doesnt
3990 * auto-release the semaphore:
3991 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02003992 saved_lock_depth = task->lock_depth;
3993 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003994 local_irq_enable();
3995 schedule();
3996 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02003997 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003998 sub_preempt_count(PREEMPT_ACTIVE);
3999
4000 /*
4001 * Check again in case we missed a preemption opportunity
4002 * between schedule and now.
4003 */
4004 barrier();
4005 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006}
4007
4008#endif /* CONFIG_PREEMPT */
4009
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004010int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4011 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004013 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015EXPORT_SYMBOL(default_wake_function);
4016
4017/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004018 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4019 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 * number) then we wake all the non-exclusive tasks and one exclusive task.
4021 *
4022 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004023 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4025 */
4026static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4027 int nr_exclusive, int sync, void *key)
4028{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004029 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004031 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004032 unsigned flags = curr->flags;
4033
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004035 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 break;
4037 }
4038}
4039
4040/**
4041 * __wake_up - wake up threads blocked on a waitqueue.
4042 * @q: the waitqueue
4043 * @mode: which threads
4044 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004045 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004047void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004048 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049{
4050 unsigned long flags;
4051
4052 spin_lock_irqsave(&q->lock, flags);
4053 __wake_up_common(q, mode, nr_exclusive, 0, key);
4054 spin_unlock_irqrestore(&q->lock, flags);
4055}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056EXPORT_SYMBOL(__wake_up);
4057
4058/*
4059 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4060 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004061void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062{
4063 __wake_up_common(q, mode, 1, 0, NULL);
4064}
4065
4066/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004067 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 * @q: the waitqueue
4069 * @mode: which threads
4070 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4071 *
4072 * The sync wakeup differs that the waker knows that it will schedule
4073 * away soon, so while the target thread will be woken up, it will not
4074 * be migrated to another CPU - ie. the two threads are 'synchronized'
4075 * with each other. This can prevent needless bouncing between CPUs.
4076 *
4077 * On UP it can prevent extra preemption.
4078 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004079void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004080__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081{
4082 unsigned long flags;
4083 int sync = 1;
4084
4085 if (unlikely(!q))
4086 return;
4087
4088 if (unlikely(!nr_exclusive))
4089 sync = 0;
4090
4091 spin_lock_irqsave(&q->lock, flags);
4092 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4093 spin_unlock_irqrestore(&q->lock, flags);
4094}
4095EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4096
Ingo Molnarb15136e2007-10-24 18:23:48 +02004097void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098{
4099 unsigned long flags;
4100
4101 spin_lock_irqsave(&x->wait.lock, flags);
4102 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004103 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 spin_unlock_irqrestore(&x->wait.lock, flags);
4105}
4106EXPORT_SYMBOL(complete);
4107
Ingo Molnarb15136e2007-10-24 18:23:48 +02004108void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109{
4110 unsigned long flags;
4111
4112 spin_lock_irqsave(&x->wait.lock, flags);
4113 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004114 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 spin_unlock_irqrestore(&x->wait.lock, flags);
4116}
4117EXPORT_SYMBOL(complete_all);
4118
Andi Kleen8cbbe862007-10-15 17:00:14 +02004119static inline long __sched
4120do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 if (!x->done) {
4123 DECLARE_WAITQUEUE(wait, current);
4124
4125 wait.flags |= WQ_FLAG_EXCLUSIVE;
4126 __add_wait_queue_tail(&x->wait, &wait);
4127 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004128 if ((state == TASK_INTERRUPTIBLE &&
4129 signal_pending(current)) ||
4130 (state == TASK_KILLABLE &&
4131 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004132 __remove_wait_queue(&x->wait, &wait);
4133 return -ERESTARTSYS;
4134 }
4135 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004137 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004139 if (!timeout) {
4140 __remove_wait_queue(&x->wait, &wait);
4141 return timeout;
4142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 } while (!x->done);
4144 __remove_wait_queue(&x->wait, &wait);
4145 }
4146 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004147 return timeout;
4148}
4149
4150static long __sched
4151wait_for_common(struct completion *x, long timeout, int state)
4152{
4153 might_sleep();
4154
4155 spin_lock_irq(&x->wait.lock);
4156 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004158 return timeout;
4159}
4160
Ingo Molnarb15136e2007-10-24 18:23:48 +02004161void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004162{
4163 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164}
4165EXPORT_SYMBOL(wait_for_completion);
4166
Ingo Molnarb15136e2007-10-24 18:23:48 +02004167unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4169{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004170 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171}
4172EXPORT_SYMBOL(wait_for_completion_timeout);
4173
Andi Kleen8cbbe862007-10-15 17:00:14 +02004174int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175{
Andi Kleen51e97992007-10-18 21:32:55 +02004176 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4177 if (t == -ERESTARTSYS)
4178 return t;
4179 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180}
4181EXPORT_SYMBOL(wait_for_completion_interruptible);
4182
Ingo Molnarb15136e2007-10-24 18:23:48 +02004183unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184wait_for_completion_interruptible_timeout(struct completion *x,
4185 unsigned long timeout)
4186{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004187 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188}
4189EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4190
Matthew Wilcox009e5772007-12-06 12:29:54 -05004191int __sched wait_for_completion_killable(struct completion *x)
4192{
4193 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4194 if (t == -ERESTARTSYS)
4195 return t;
4196 return 0;
4197}
4198EXPORT_SYMBOL(wait_for_completion_killable);
4199
Andi Kleen8cbbe862007-10-15 17:00:14 +02004200static long __sched
4201sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004202{
4203 unsigned long flags;
4204 wait_queue_t wait;
4205
4206 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
Andi Kleen8cbbe862007-10-15 17:00:14 +02004208 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Andi Kleen8cbbe862007-10-15 17:00:14 +02004210 spin_lock_irqsave(&q->lock, flags);
4211 __add_wait_queue(q, &wait);
4212 spin_unlock(&q->lock);
4213 timeout = schedule_timeout(timeout);
4214 spin_lock_irq(&q->lock);
4215 __remove_wait_queue(q, &wait);
4216 spin_unlock_irqrestore(&q->lock, flags);
4217
4218 return timeout;
4219}
4220
4221void __sched interruptible_sleep_on(wait_queue_head_t *q)
4222{
4223 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225EXPORT_SYMBOL(interruptible_sleep_on);
4226
Ingo Molnar0fec1712007-07-09 18:52:01 +02004227long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004228interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004230 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4233
Ingo Molnar0fec1712007-07-09 18:52:01 +02004234void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004236 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238EXPORT_SYMBOL(sleep_on);
4239
Ingo Molnar0fec1712007-07-09 18:52:01 +02004240long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004242 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244EXPORT_SYMBOL(sleep_on_timeout);
4245
Ingo Molnarb29739f2006-06-27 02:54:51 -07004246#ifdef CONFIG_RT_MUTEXES
4247
4248/*
4249 * rt_mutex_setprio - set the current priority of a task
4250 * @p: task
4251 * @prio: prio value (kernel-internal form)
4252 *
4253 * This function changes the 'effective' priority of a task. It does
4254 * not touch ->normal_prio like __setscheduler().
4255 *
4256 * Used by the rt_mutex code to implement priority inheritance logic.
4257 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004258void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004259{
4260 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004261 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004262 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004263 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004264
4265 BUG_ON(prio < 0 || prio > MAX_PRIO);
4266
4267 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004268 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004269
Andrew Mortond5f9f942007-05-08 20:27:06 -07004270 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004271 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004272 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004273 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004274 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004275 if (running)
4276 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004277
4278 if (rt_prio(prio))
4279 p->sched_class = &rt_sched_class;
4280 else
4281 p->sched_class = &fair_sched_class;
4282
Ingo Molnarb29739f2006-06-27 02:54:51 -07004283 p->prio = prio;
4284
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004285 if (running)
4286 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004287 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004288 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004289
4290 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004291 }
4292 task_rq_unlock(rq, &flags);
4293}
4294
4295#endif
4296
Ingo Molnar36c8b582006-07-03 00:25:41 -07004297void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298{
Ingo Molnardd41f592007-07-09 18:51:59 +02004299 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004301 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302
4303 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4304 return;
4305 /*
4306 * We have to be careful, if called from sys_setpriority(),
4307 * the task might be in the middle of scheduling on another CPU.
4308 */
4309 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004310 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 /*
4312 * The RT priorities are set via sched_setscheduler(), but we still
4313 * allow the 'normal' nice value to be set - but as expected
4314 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004315 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004317 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 p->static_prio = NICE_TO_PRIO(nice);
4319 goto out_unlock;
4320 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004321 on_rq = p->se.on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004322 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004323 dequeue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004324 dec_load(rq, p);
4325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004328 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004329 old_prio = p->prio;
4330 p->prio = effective_prio(p);
4331 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332
Ingo Molnardd41f592007-07-09 18:51:59 +02004333 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004334 enqueue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004335 inc_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004337 * If the task increased its priority or is running and
4338 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004340 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 resched_task(rq->curr);
4342 }
4343out_unlock:
4344 task_rq_unlock(rq, &flags);
4345}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346EXPORT_SYMBOL(set_user_nice);
4347
Matt Mackalle43379f2005-05-01 08:59:00 -07004348/*
4349 * can_nice - check if a task can reduce its nice value
4350 * @p: task
4351 * @nice: nice value
4352 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004353int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004354{
Matt Mackall024f4742005-08-18 11:24:19 -07004355 /* convert nice value [19,-20] to rlimit style value [1,40] */
4356 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004357
Matt Mackalle43379f2005-05-01 08:59:00 -07004358 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4359 capable(CAP_SYS_NICE));
4360}
4361
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362#ifdef __ARCH_WANT_SYS_NICE
4363
4364/*
4365 * sys_nice - change the priority of the current process.
4366 * @increment: priority increment
4367 *
4368 * sys_setpriority is a more generic, but much slower function that
4369 * does similar things.
4370 */
4371asmlinkage long sys_nice(int increment)
4372{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004373 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
4375 /*
4376 * Setpriority might change our priority at the same moment.
4377 * We don't have to worry. Conceptually one call occurs first
4378 * and we have a single winner.
4379 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004380 if (increment < -40)
4381 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 if (increment > 40)
4383 increment = 40;
4384
4385 nice = PRIO_TO_NICE(current->static_prio) + increment;
4386 if (nice < -20)
4387 nice = -20;
4388 if (nice > 19)
4389 nice = 19;
4390
Matt Mackalle43379f2005-05-01 08:59:00 -07004391 if (increment < 0 && !can_nice(current, nice))
4392 return -EPERM;
4393
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 retval = security_task_setnice(current, nice);
4395 if (retval)
4396 return retval;
4397
4398 set_user_nice(current, nice);
4399 return 0;
4400}
4401
4402#endif
4403
4404/**
4405 * task_prio - return the priority value of a given task.
4406 * @p: the task in question.
4407 *
4408 * This is the priority value as seen by users in /proc.
4409 * RT tasks are offset by -200. Normal tasks are centered
4410 * around 0, value goes from -16 to +15.
4411 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004412int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413{
4414 return p->prio - MAX_RT_PRIO;
4415}
4416
4417/**
4418 * task_nice - return the nice value of a given task.
4419 * @p: the task in question.
4420 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004421int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422{
4423 return TASK_NICE(p);
4424}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004425EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426
4427/**
4428 * idle_cpu - is a given cpu idle currently?
4429 * @cpu: the processor in question.
4430 */
4431int idle_cpu(int cpu)
4432{
4433 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4434}
4435
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436/**
4437 * idle_task - return the idle task for a given cpu.
4438 * @cpu: the processor in question.
4439 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004440struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441{
4442 return cpu_rq(cpu)->idle;
4443}
4444
4445/**
4446 * find_process_by_pid - find a process with a matching PID value.
4447 * @pid: the pid in question.
4448 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004449static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004451 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452}
4453
4454/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004455static void
4456__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457{
Ingo Molnardd41f592007-07-09 18:51:59 +02004458 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004459
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004461 switch (p->policy) {
4462 case SCHED_NORMAL:
4463 case SCHED_BATCH:
4464 case SCHED_IDLE:
4465 p->sched_class = &fair_sched_class;
4466 break;
4467 case SCHED_FIFO:
4468 case SCHED_RR:
4469 p->sched_class = &rt_sched_class;
4470 break;
4471 }
4472
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004474 p->normal_prio = normal_prio(p);
4475 /* we are holding p->pi_lock already */
4476 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004477 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478}
4479
4480/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004481 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 * @p: the task in question.
4483 * @policy: new policy.
4484 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004485 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004486 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004488int sched_setscheduler(struct task_struct *p, int policy,
4489 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004491 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004493 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004494 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495
Steven Rostedt66e53932006-06-27 02:54:44 -07004496 /* may grab non-irq protected spin_locks */
4497 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498recheck:
4499 /* double check policy once rq lock held */
4500 if (policy < 0)
4501 policy = oldpolicy = p->policy;
4502 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004503 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4504 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004505 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 /*
4507 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004508 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4509 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 */
4511 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004512 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004513 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004515 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 return -EINVAL;
4517
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004518 /*
4519 * Allow unprivileged RT tasks to decrease priority:
4520 */
4521 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004522 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004523 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004524
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004525 if (!lock_task_sighand(p, &flags))
4526 return -ESRCH;
4527 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4528 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004529
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004530 /* can't set/change the rt policy */
4531 if (policy != p->policy && !rlim_rtprio)
4532 return -EPERM;
4533
4534 /* can't increase priority */
4535 if (param->sched_priority > p->rt_priority &&
4536 param->sched_priority > rlim_rtprio)
4537 return -EPERM;
4538 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004539 /*
4540 * Like positive nice levels, dont allow tasks to
4541 * move out of SCHED_IDLE either:
4542 */
4543 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4544 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004545
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004546 /* can't change other user's priorities */
4547 if ((current->euid != p->euid) &&
4548 (current->euid != p->uid))
4549 return -EPERM;
4550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004552#ifdef CONFIG_RT_GROUP_SCHED
4553 /*
4554 * Do not allow realtime tasks into groups that have no runtime
4555 * assigned.
4556 */
4557 if (rt_policy(policy) && task_group(p)->rt_runtime == 0)
4558 return -EPERM;
4559#endif
4560
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 retval = security_task_setscheduler(p, policy, param);
4562 if (retval)
4563 return retval;
4564 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004565 * make sure no PI-waiters arrive (or leave) while we are
4566 * changing the priority of the task:
4567 */
4568 spin_lock_irqsave(&p->pi_lock, flags);
4569 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 * To be able to change p->policy safely, the apropriate
4571 * runqueue lock must be held.
4572 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004573 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 /* recheck policy now with rq lock held */
4575 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4576 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004577 __task_rq_unlock(rq);
4578 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 goto recheck;
4580 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004581 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004582 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004583 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004584 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004585 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004586 if (running)
4587 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004588
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004590 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004591
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004592 if (running)
4593 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004594 if (on_rq) {
4595 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004596
4597 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004599 __task_rq_unlock(rq);
4600 spin_unlock_irqrestore(&p->pi_lock, flags);
4601
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004602 rt_mutex_adjust_pi(p);
4603
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 return 0;
4605}
4606EXPORT_SYMBOL_GPL(sched_setscheduler);
4607
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004608static int
4609do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 struct sched_param lparam;
4612 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004613 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614
4615 if (!param || pid < 0)
4616 return -EINVAL;
4617 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4618 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004619
4620 rcu_read_lock();
4621 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004623 if (p != NULL)
4624 retval = sched_setscheduler(p, policy, &lparam);
4625 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004626
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 return retval;
4628}
4629
4630/**
4631 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4632 * @pid: the pid in question.
4633 * @policy: new policy.
4634 * @param: structure containing the new RT priority.
4635 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004636asmlinkage long
4637sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638{
Jason Baronc21761f2006-01-18 17:43:03 -08004639 /* negative values for policy are not valid */
4640 if (policy < 0)
4641 return -EINVAL;
4642
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 return do_sched_setscheduler(pid, policy, param);
4644}
4645
4646/**
4647 * sys_sched_setparam - set/change the RT priority of a thread
4648 * @pid: the pid in question.
4649 * @param: structure containing the new RT priority.
4650 */
4651asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4652{
4653 return do_sched_setscheduler(pid, -1, param);
4654}
4655
4656/**
4657 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4658 * @pid: the pid in question.
4659 */
4660asmlinkage long sys_sched_getscheduler(pid_t pid)
4661{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004662 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004663 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664
4665 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004666 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
4668 retval = -ESRCH;
4669 read_lock(&tasklist_lock);
4670 p = find_process_by_pid(pid);
4671 if (p) {
4672 retval = security_task_getscheduler(p);
4673 if (!retval)
4674 retval = p->policy;
4675 }
4676 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 return retval;
4678}
4679
4680/**
4681 * sys_sched_getscheduler - get the RT priority of a thread
4682 * @pid: the pid in question.
4683 * @param: structure containing the RT priority.
4684 */
4685asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4686{
4687 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004688 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004689 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
4691 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004692 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
4694 read_lock(&tasklist_lock);
4695 p = find_process_by_pid(pid);
4696 retval = -ESRCH;
4697 if (!p)
4698 goto out_unlock;
4699
4700 retval = security_task_getscheduler(p);
4701 if (retval)
4702 goto out_unlock;
4703
4704 lp.sched_priority = p->rt_priority;
4705 read_unlock(&tasklist_lock);
4706
4707 /*
4708 * This one might sleep, we cannot do it with a spinlock held ...
4709 */
4710 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4711
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 return retval;
4713
4714out_unlock:
4715 read_unlock(&tasklist_lock);
4716 return retval;
4717}
4718
4719long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4720{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004722 struct task_struct *p;
4723 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004725 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 read_lock(&tasklist_lock);
4727
4728 p = find_process_by_pid(pid);
4729 if (!p) {
4730 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004731 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 return -ESRCH;
4733 }
4734
4735 /*
4736 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004737 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 * usage count and then drop tasklist_lock.
4739 */
4740 get_task_struct(p);
4741 read_unlock(&tasklist_lock);
4742
4743 retval = -EPERM;
4744 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4745 !capable(CAP_SYS_NICE))
4746 goto out_unlock;
4747
David Quigleye7834f82006-06-23 02:03:59 -07004748 retval = security_task_setscheduler(p, 0, NULL);
4749 if (retval)
4750 goto out_unlock;
4751
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 cpus_allowed = cpuset_cpus_allowed(p);
4753 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004754 again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 retval = set_cpus_allowed(p, new_mask);
4756
Paul Menage8707d8b2007-10-18 23:40:22 -07004757 if (!retval) {
4758 cpus_allowed = cpuset_cpus_allowed(p);
4759 if (!cpus_subset(new_mask, cpus_allowed)) {
4760 /*
4761 * We must have raced with a concurrent cpuset
4762 * update. Just reset the cpus_allowed to the
4763 * cpuset's cpus_allowed
4764 */
4765 new_mask = cpus_allowed;
4766 goto again;
4767 }
4768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769out_unlock:
4770 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004771 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 return retval;
4773}
4774
4775static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4776 cpumask_t *new_mask)
4777{
4778 if (len < sizeof(cpumask_t)) {
4779 memset(new_mask, 0, sizeof(cpumask_t));
4780 } else if (len > sizeof(cpumask_t)) {
4781 len = sizeof(cpumask_t);
4782 }
4783 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4784}
4785
4786/**
4787 * sys_sched_setaffinity - set the cpu affinity of a process
4788 * @pid: pid of the process
4789 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4790 * @user_mask_ptr: user-space pointer to the new cpu mask
4791 */
4792asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4793 unsigned long __user *user_mask_ptr)
4794{
4795 cpumask_t new_mask;
4796 int retval;
4797
4798 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4799 if (retval)
4800 return retval;
4801
4802 return sched_setaffinity(pid, new_mask);
4803}
4804
4805/*
4806 * Represents all cpu's present in the system
4807 * In systems capable of hotplug, this map could dynamically grow
4808 * as new cpu's are detected in the system via any platform specific
4809 * method, such as ACPI for e.g.
4810 */
4811
Andi Kleen4cef0c62006-01-11 22:44:57 +01004812cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813EXPORT_SYMBOL(cpu_present_map);
4814
4815#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004816cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004817EXPORT_SYMBOL(cpu_online_map);
4818
Andi Kleen4cef0c62006-01-11 22:44:57 +01004819cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004820EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821#endif
4822
4823long sched_getaffinity(pid_t pid, cpumask_t *mask)
4824{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004825 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004828 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 read_lock(&tasklist_lock);
4830
4831 retval = -ESRCH;
4832 p = find_process_by_pid(pid);
4833 if (!p)
4834 goto out_unlock;
4835
David Quigleye7834f82006-06-23 02:03:59 -07004836 retval = security_task_getscheduler(p);
4837 if (retval)
4838 goto out_unlock;
4839
Jack Steiner2f7016d2006-02-01 03:05:18 -08004840 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841
4842out_unlock:
4843 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004844 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845
Ulrich Drepper9531b622007-08-09 11:16:46 +02004846 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847}
4848
4849/**
4850 * sys_sched_getaffinity - get the cpu affinity of a process
4851 * @pid: pid of the process
4852 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4853 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4854 */
4855asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4856 unsigned long __user *user_mask_ptr)
4857{
4858 int ret;
4859 cpumask_t mask;
4860
4861 if (len < sizeof(cpumask_t))
4862 return -EINVAL;
4863
4864 ret = sched_getaffinity(pid, &mask);
4865 if (ret < 0)
4866 return ret;
4867
4868 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4869 return -EFAULT;
4870
4871 return sizeof(cpumask_t);
4872}
4873
4874/**
4875 * sys_sched_yield - yield the current processor to other threads.
4876 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004877 * This function yields the current CPU to other tasks. If there are no
4878 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 */
4880asmlinkage long sys_sched_yield(void)
4881{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004882 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
Ingo Molnar2d723762007-10-15 17:00:12 +02004884 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004885 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
4887 /*
4888 * Since we are going to call schedule() anyway, there's
4889 * no need to preempt or enable interrupts:
4890 */
4891 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004892 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 _raw_spin_unlock(&rq->lock);
4894 preempt_enable_no_resched();
4895
4896 schedule();
4897
4898 return 0;
4899}
4900
Andrew Mortone7b38402006-06-30 01:56:00 -07004901static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004903#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4904 __might_sleep(__FILE__, __LINE__);
4905#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004906 /*
4907 * The BKS might be reacquired before we have dropped
4908 * PREEMPT_ACTIVE, which could trigger a second
4909 * cond_resched() call.
4910 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911 do {
4912 add_preempt_count(PREEMPT_ACTIVE);
4913 schedule();
4914 sub_preempt_count(PREEMPT_ACTIVE);
4915 } while (need_resched());
4916}
4917
Herbert Xu02b67cc32008-01-25 21:08:28 +01004918#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
4919int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920{
Ingo Molnar94142322006-12-29 16:48:13 -08004921 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4922 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923 __cond_resched();
4924 return 1;
4925 }
4926 return 0;
4927}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004928EXPORT_SYMBOL(_cond_resched);
4929#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930
4931/*
4932 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4933 * call schedule, and on return reacquire the lock.
4934 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004935 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936 * operations here to prevent schedule() from being called twice (once via
4937 * spin_unlock(), once by hand).
4938 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004939int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940{
Nick Piggin95c354f2008-01-30 13:31:20 +01004941 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07004942 int ret = 0;
4943
Nick Piggin95c354f2008-01-30 13:31:20 +01004944 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01004946 if (resched && need_resched())
4947 __cond_resched();
4948 else
4949 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004950 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004953 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955EXPORT_SYMBOL(cond_resched_lock);
4956
4957int __sched cond_resched_softirq(void)
4958{
4959 BUG_ON(!in_softirq());
4960
Ingo Molnar94142322006-12-29 16:48:13 -08004961 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004962 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 __cond_resched();
4964 local_bh_disable();
4965 return 1;
4966 }
4967 return 0;
4968}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969EXPORT_SYMBOL(cond_resched_softirq);
4970
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971/**
4972 * yield - yield the current processor to other threads.
4973 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004974 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 * thread runnable and calls sys_sched_yield().
4976 */
4977void __sched yield(void)
4978{
4979 set_current_state(TASK_RUNNING);
4980 sys_sched_yield();
4981}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982EXPORT_SYMBOL(yield);
4983
4984/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004985 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 * that process accounting knows that this is a task in IO wait state.
4987 *
4988 * But don't do that if it is a deliberate, throttling IO wait (this task
4989 * has set its backing_dev_info: the queue against which it should throttle)
4990 */
4991void __sched io_schedule(void)
4992{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004993 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004995 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996 atomic_inc(&rq->nr_iowait);
4997 schedule();
4998 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004999 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001EXPORT_SYMBOL(io_schedule);
5002
5003long __sched io_schedule_timeout(long timeout)
5004{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005005 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 long ret;
5007
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005008 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 atomic_inc(&rq->nr_iowait);
5010 ret = schedule_timeout(timeout);
5011 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005012 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 return ret;
5014}
5015
5016/**
5017 * sys_sched_get_priority_max - return maximum RT priority.
5018 * @policy: scheduling class.
5019 *
5020 * this syscall returns the maximum rt_priority that can be used
5021 * by a given scheduling class.
5022 */
5023asmlinkage long sys_sched_get_priority_max(int policy)
5024{
5025 int ret = -EINVAL;
5026
5027 switch (policy) {
5028 case SCHED_FIFO:
5029 case SCHED_RR:
5030 ret = MAX_USER_RT_PRIO-1;
5031 break;
5032 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005033 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005034 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 ret = 0;
5036 break;
5037 }
5038 return ret;
5039}
5040
5041/**
5042 * sys_sched_get_priority_min - return minimum RT priority.
5043 * @policy: scheduling class.
5044 *
5045 * this syscall returns the minimum rt_priority that can be used
5046 * by a given scheduling class.
5047 */
5048asmlinkage long sys_sched_get_priority_min(int policy)
5049{
5050 int ret = -EINVAL;
5051
5052 switch (policy) {
5053 case SCHED_FIFO:
5054 case SCHED_RR:
5055 ret = 1;
5056 break;
5057 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005058 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005059 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060 ret = 0;
5061 }
5062 return ret;
5063}
5064
5065/**
5066 * sys_sched_rr_get_interval - return the default timeslice of a process.
5067 * @pid: pid of the process.
5068 * @interval: userspace pointer to the timeslice value.
5069 *
5070 * this syscall writes the default timeslice value of a given process
5071 * into the user-space timespec buffer. A value of '0' means infinity.
5072 */
5073asmlinkage
5074long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5075{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005076 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005077 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005078 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080
5081 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005082 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083
5084 retval = -ESRCH;
5085 read_lock(&tasklist_lock);
5086 p = find_process_by_pid(pid);
5087 if (!p)
5088 goto out_unlock;
5089
5090 retval = security_task_getscheduler(p);
5091 if (retval)
5092 goto out_unlock;
5093
Ingo Molnar77034932007-12-04 17:04:39 +01005094 /*
5095 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5096 * tasks that are on an otherwise idle runqueue:
5097 */
5098 time_slice = 0;
5099 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005100 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005101 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005102 struct sched_entity *se = &p->se;
5103 unsigned long flags;
5104 struct rq *rq;
5105
5106 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005107 if (rq->cfs.load.weight)
5108 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005109 task_rq_unlock(rq, &flags);
5110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005112 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005115
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116out_unlock:
5117 read_unlock(&tasklist_lock);
5118 return retval;
5119}
5120
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005121static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005122
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005123void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005126 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005129 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005130 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005131#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005133 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005135 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136#else
5137 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005138 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005140 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141#endif
5142#ifdef CONFIG_DEBUG_STACK_USAGE
5143 {
Al Viro10ebffd2005-11-13 16:06:56 -08005144 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 while (!*n)
5146 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005147 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 }
5149#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005150 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005151 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005153 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154}
5155
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005156void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005158 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159
Ingo Molnar4bd77322007-07-11 21:21:47 +02005160#if BITS_PER_LONG == 32
5161 printk(KERN_INFO
5162 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005164 printk(KERN_INFO
5165 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166#endif
5167 read_lock(&tasklist_lock);
5168 do_each_thread(g, p) {
5169 /*
5170 * reset the NMI-timeout, listing all files on a slow
5171 * console might take alot of time:
5172 */
5173 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005174 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005175 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176 } while_each_thread(g, p);
5177
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005178 touch_all_softlockup_watchdogs();
5179
Ingo Molnardd41f592007-07-09 18:51:59 +02005180#ifdef CONFIG_SCHED_DEBUG
5181 sysrq_sched_debug_show();
5182#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005184 /*
5185 * Only show locks if all tasks are dumped:
5186 */
5187 if (state_filter == -1)
5188 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189}
5190
Ingo Molnar1df21052007-07-09 18:51:58 +02005191void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5192{
Ingo Molnardd41f592007-07-09 18:51:59 +02005193 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005194}
5195
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005196/**
5197 * init_idle - set up an idle thread for a given CPU
5198 * @idle: task in question
5199 * @cpu: cpu the idle task belongs to
5200 *
5201 * NOTE: this function does not set the idle thread's NEED_RESCHED
5202 * flag, to make booting more robust.
5203 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005204void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005206 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 unsigned long flags;
5208
Ingo Molnardd41f592007-07-09 18:51:59 +02005209 __sched_fork(idle);
5210 idle->se.exec_start = sched_clock();
5211
Ingo Molnarb29739f2006-06-27 02:54:51 -07005212 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005214 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215
5216 spin_lock_irqsave(&rq->lock, flags);
5217 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005218#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5219 idle->oncpu = 1;
5220#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 spin_unlock_irqrestore(&rq->lock, flags);
5222
5223 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f52005-11-13 16:06:55 -08005224 task_thread_info(idle)->preempt_count = 0;
Ingo Molnar6478d882008-01-25 21:08:33 +01005225
Ingo Molnardd41f592007-07-09 18:51:59 +02005226 /*
5227 * The idle tasks have their own, simple scheduling class:
5228 */
5229 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230}
5231
5232/*
5233 * In a system that switches off the HZ timer nohz_cpu_mask
5234 * indicates which cpus entered this state. This is used
5235 * in the rcu update to wait only for active cpus. For system
5236 * which do not switch off the HZ timer nohz_cpu_mask should
5237 * always be CPU_MASK_NONE.
5238 */
5239cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5240
Ingo Molnar19978ca2007-11-09 22:39:38 +01005241/*
5242 * Increase the granularity value when there are more CPUs,
5243 * because with more CPUs the 'effective latency' as visible
5244 * to users decreases. But the relationship is not linear,
5245 * so pick a second-best guess by going with the log2 of the
5246 * number of CPUs.
5247 *
5248 * This idea comes from the SD scheduler of Con Kolivas:
5249 */
5250static inline void sched_init_granularity(void)
5251{
5252 unsigned int factor = 1 + ilog2(num_online_cpus());
5253 const unsigned long limit = 200000000;
5254
5255 sysctl_sched_min_granularity *= factor;
5256 if (sysctl_sched_min_granularity > limit)
5257 sysctl_sched_min_granularity = limit;
5258
5259 sysctl_sched_latency *= factor;
5260 if (sysctl_sched_latency > limit)
5261 sysctl_sched_latency = limit;
5262
5263 sysctl_sched_wakeup_granularity *= factor;
5264 sysctl_sched_batch_wakeup_granularity *= factor;
5265}
5266
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267#ifdef CONFIG_SMP
5268/*
5269 * This is how migration works:
5270 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005271 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 * runqueue and wake up that CPU's migration thread.
5273 * 2) we down() the locked semaphore => thread blocks.
5274 * 3) migration thread wakes up (implicitly it forces the migrated
5275 * thread off the CPU)
5276 * 4) it gets the migration request and checks whether the migrated
5277 * task is still in the wrong runqueue.
5278 * 5) if it's in the wrong runqueue then the migration thread removes
5279 * it and puts it into the right queue.
5280 * 6) migration thread up()s the semaphore.
5281 * 7) we wake up and the migration is done.
5282 */
5283
5284/*
5285 * Change a given task's CPU affinity. Migrate the thread to a
5286 * proper CPU and schedule it away if the CPU it's executing on
5287 * is removed from the allowed bitmask.
5288 *
5289 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005290 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 * call is not atomic; no spinlocks may be held.
5292 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005293int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005295 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005297 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005298 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
5300 rq = task_rq_lock(p, &flags);
5301 if (!cpus_intersects(new_mask, cpu_online_map)) {
5302 ret = -EINVAL;
5303 goto out;
5304 }
5305
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005306 if (p->sched_class->set_cpus_allowed)
5307 p->sched_class->set_cpus_allowed(p, &new_mask);
5308 else {
Ingo Molnar0eab9142008-01-25 21:08:19 +01005309 p->cpus_allowed = new_mask;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01005310 p->rt.nr_cpus_allowed = cpus_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005311 }
5312
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313 /* Can the task run on the task's current CPU? If so, we're done */
5314 if (cpu_isset(task_cpu(p), new_mask))
5315 goto out;
5316
5317 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
5318 /* Need help from migration thread: drop lock and wait. */
5319 task_rq_unlock(rq, &flags);
5320 wake_up_process(rq->migration_thread);
5321 wait_for_completion(&req.done);
5322 tlb_migrate_finish(p->mm);
5323 return 0;
5324 }
5325out:
5326 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005327
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328 return ret;
5329}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330EXPORT_SYMBOL_GPL(set_cpus_allowed);
5331
5332/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005333 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334 * this because either it can't run here any more (set_cpus_allowed()
5335 * away from this CPU, or CPU going down), or because we're
5336 * attempting to rebalance this task on exec (sched_exec).
5337 *
5338 * So we race with normal scheduler movements, but that's OK, as long
5339 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005340 *
5341 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005343static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005345 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005346 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347
5348 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005349 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350
5351 rq_src = cpu_rq(src_cpu);
5352 rq_dest = cpu_rq(dest_cpu);
5353
5354 double_rq_lock(rq_src, rq_dest);
5355 /* Already moved. */
5356 if (task_cpu(p) != src_cpu)
5357 goto out;
5358 /* Affinity changed (again). */
5359 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5360 goto out;
5361
Ingo Molnardd41f592007-07-09 18:51:59 +02005362 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005363 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005364 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005365
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005367 if (on_rq) {
5368 activate_task(rq_dest, p, 0);
5369 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005371 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372out:
5373 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005374 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375}
5376
5377/*
5378 * migration_thread - this is a highprio system thread that performs
5379 * thread migration by bumping thread off CPU then 'pushing' onto
5380 * another runqueue.
5381 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005382static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005385 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386
5387 rq = cpu_rq(cpu);
5388 BUG_ON(rq->migration_thread != current);
5389
5390 set_current_state(TASK_INTERRUPTIBLE);
5391 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005392 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395 spin_lock_irq(&rq->lock);
5396
5397 if (cpu_is_offline(cpu)) {
5398 spin_unlock_irq(&rq->lock);
5399 goto wait_to_die;
5400 }
5401
5402 if (rq->active_balance) {
5403 active_load_balance(rq, cpu);
5404 rq->active_balance = 0;
5405 }
5406
5407 head = &rq->migration_queue;
5408
5409 if (list_empty(head)) {
5410 spin_unlock_irq(&rq->lock);
5411 schedule();
5412 set_current_state(TASK_INTERRUPTIBLE);
5413 continue;
5414 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005415 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416 list_del_init(head->next);
5417
Nick Piggin674311d2005-06-25 14:57:27 -07005418 spin_unlock(&rq->lock);
5419 __migrate_task(req->task, cpu, req->dest_cpu);
5420 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421
5422 complete(&req->done);
5423 }
5424 __set_current_state(TASK_RUNNING);
5425 return 0;
5426
5427wait_to_die:
5428 /* Wait for kthread_stop */
5429 set_current_state(TASK_INTERRUPTIBLE);
5430 while (!kthread_should_stop()) {
5431 schedule();
5432 set_current_state(TASK_INTERRUPTIBLE);
5433 }
5434 __set_current_state(TASK_RUNNING);
5435 return 0;
5436}
5437
5438#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005439
5440static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5441{
5442 int ret;
5443
5444 local_irq_disable();
5445 ret = __migrate_task(p, src_cpu, dest_cpu);
5446 local_irq_enable();
5447 return ret;
5448}
5449
Kirill Korotaev054b9102006-12-10 02:20:11 -08005450/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005451 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005452 * NOTE: interrupts should be disabled by the caller
5453 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005454static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005456 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005458 struct rq *rq;
5459 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460
Andi Kleen3a5c3592007-10-15 17:00:14 +02005461 do {
5462 /* On same node? */
5463 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5464 cpus_and(mask, mask, p->cpus_allowed);
5465 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466
Andi Kleen3a5c3592007-10-15 17:00:14 +02005467 /* On any allowed CPU? */
5468 if (dest_cpu == NR_CPUS)
5469 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470
Andi Kleen3a5c3592007-10-15 17:00:14 +02005471 /* No more Mr. Nice Guy. */
5472 if (dest_cpu == NR_CPUS) {
Cliff Wickman470fd642007-10-18 23:40:46 -07005473 cpumask_t cpus_allowed = cpuset_cpus_allowed_locked(p);
5474 /*
5475 * Try to stay on the same cpuset, where the
5476 * current cpuset may be a subset of all cpus.
5477 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005478 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005479 * called within calls to cpuset_lock/cpuset_unlock.
5480 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005481 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005482 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005483 dest_cpu = any_online_cpu(p->cpus_allowed);
5484 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485
Andi Kleen3a5c3592007-10-15 17:00:14 +02005486 /*
5487 * Don't tell them about moving exiting tasks or
5488 * kernel threads (both mm NULL), since they never
5489 * leave kernel.
5490 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005491 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005492 printk(KERN_INFO "process %d (%s) no "
5493 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005494 task_pid_nr(p), p->comm, dead_cpu);
5495 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005496 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005497 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498}
5499
5500/*
5501 * While a dead CPU has no uninterruptible tasks queued at this point,
5502 * it might still have a nonzero ->nr_uninterruptible counter, because
5503 * for performance reasons the counter is not stricly tracking tasks to
5504 * their home CPUs. So we just add the counter to another CPU's counter,
5505 * to keep the global sum constant after CPU-down:
5506 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005507static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005509 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510 unsigned long flags;
5511
5512 local_irq_save(flags);
5513 double_rq_lock(rq_src, rq_dest);
5514 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5515 rq_src->nr_uninterruptible = 0;
5516 double_rq_unlock(rq_src, rq_dest);
5517 local_irq_restore(flags);
5518}
5519
5520/* Run through task list and migrate tasks from the dead cpu. */
5521static void migrate_live_tasks(int src_cpu)
5522{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005523 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005525 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
Ingo Molnar48f24c42006-07-03 00:25:40 -07005527 do_each_thread(t, p) {
5528 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529 continue;
5530
Ingo Molnar48f24c42006-07-03 00:25:40 -07005531 if (task_cpu(p) == src_cpu)
5532 move_task_off_dead_cpu(src_cpu, p);
5533 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005535 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536}
5537
Ingo Molnardd41f592007-07-09 18:51:59 +02005538/*
5539 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005540 * It does so by boosting its priority to highest possible.
5541 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542 */
5543void sched_idle_next(void)
5544{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005545 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005546 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547 struct task_struct *p = rq->idle;
5548 unsigned long flags;
5549
5550 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005551 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552
Ingo Molnar48f24c42006-07-03 00:25:40 -07005553 /*
5554 * Strictly not necessary since rest of the CPUs are stopped by now
5555 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556 */
5557 spin_lock_irqsave(&rq->lock, flags);
5558
Ingo Molnardd41f592007-07-09 18:51:59 +02005559 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005560
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005561 update_rq_clock(rq);
5562 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563
5564 spin_unlock_irqrestore(&rq->lock, flags);
5565}
5566
Ingo Molnar48f24c42006-07-03 00:25:40 -07005567/*
5568 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569 * offline.
5570 */
5571void idle_task_exit(void)
5572{
5573 struct mm_struct *mm = current->active_mm;
5574
5575 BUG_ON(cpu_online(smp_processor_id()));
5576
5577 if (mm != &init_mm)
5578 switch_mm(mm, &init_mm, current);
5579 mmdrop(mm);
5580}
5581
Kirill Korotaev054b9102006-12-10 02:20:11 -08005582/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005583static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005585 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586
5587 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005588 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589
5590 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005591 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592
Ingo Molnar48f24c42006-07-03 00:25:40 -07005593 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594
5595 /*
5596 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005597 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598 * fine.
5599 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005600 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005601 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005602 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603
Ingo Molnar48f24c42006-07-03 00:25:40 -07005604 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605}
5606
5607/* release_task() removes task from tasklist, so we won't find dead tasks. */
5608static void migrate_dead_tasks(unsigned int dead_cpu)
5609{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005610 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005611 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612
Ingo Molnardd41f592007-07-09 18:51:59 +02005613 for ( ; ; ) {
5614 if (!rq->nr_running)
5615 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005616 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005617 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005618 if (!next)
5619 break;
5620 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005621
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622 }
5623}
5624#endif /* CONFIG_HOTPLUG_CPU */
5625
Nick Piggine692ab52007-07-26 13:40:43 +02005626#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5627
5628static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005629 {
5630 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005631 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005632 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005633 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005634};
5635
5636static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005637 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005638 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005639 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005640 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005641 .child = sd_ctl_dir,
5642 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005643 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005644};
5645
5646static struct ctl_table *sd_alloc_ctl_entry(int n)
5647{
5648 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005649 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005650
Nick Piggine692ab52007-07-26 13:40:43 +02005651 return entry;
5652}
5653
Milton Miller6382bc92007-10-15 17:00:19 +02005654static void sd_free_ctl_entry(struct ctl_table **tablep)
5655{
Milton Millercd7900762007-10-17 16:55:11 +02005656 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005657
Milton Millercd7900762007-10-17 16:55:11 +02005658 /*
5659 * In the intermediate directories, both the child directory and
5660 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005661 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02005662 * static strings and all have proc handlers.
5663 */
5664 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005665 if (entry->child)
5666 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02005667 if (entry->proc_handler == NULL)
5668 kfree(entry->procname);
5669 }
Milton Miller6382bc92007-10-15 17:00:19 +02005670
5671 kfree(*tablep);
5672 *tablep = NULL;
5673}
5674
Nick Piggine692ab52007-07-26 13:40:43 +02005675static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005676set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005677 const char *procname, void *data, int maxlen,
5678 mode_t mode, proc_handler *proc_handler)
5679{
Nick Piggine692ab52007-07-26 13:40:43 +02005680 entry->procname = procname;
5681 entry->data = data;
5682 entry->maxlen = maxlen;
5683 entry->mode = mode;
5684 entry->proc_handler = proc_handler;
5685}
5686
5687static struct ctl_table *
5688sd_alloc_ctl_domain_table(struct sched_domain *sd)
5689{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005690 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005691
Milton Millerad1cdc12007-10-15 17:00:19 +02005692 if (table == NULL)
5693 return NULL;
5694
Alexey Dobriyane0361852007-08-09 11:16:46 +02005695 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005696 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005697 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005698 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005699 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005700 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005701 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005702 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005703 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005704 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005705 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005706 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005707 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005708 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005709 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005710 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005711 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005712 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005713 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005714 &sd->cache_nice_tries,
5715 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005716 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005717 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005718 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005719
5720 return table;
5721}
5722
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005723static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005724{
5725 struct ctl_table *entry, *table;
5726 struct sched_domain *sd;
5727 int domain_num = 0, i;
5728 char buf[32];
5729
5730 for_each_domain(cpu, sd)
5731 domain_num++;
5732 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005733 if (table == NULL)
5734 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005735
5736 i = 0;
5737 for_each_domain(cpu, sd) {
5738 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005739 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005740 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005741 entry->child = sd_alloc_ctl_domain_table(sd);
5742 entry++;
5743 i++;
5744 }
5745 return table;
5746}
5747
5748static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005749static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005750{
5751 int i, cpu_num = num_online_cpus();
5752 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5753 char buf[32];
5754
Milton Miller73785472007-10-24 18:23:48 +02005755 WARN_ON(sd_ctl_dir[0].child);
5756 sd_ctl_dir[0].child = entry;
5757
Milton Millerad1cdc12007-10-15 17:00:19 +02005758 if (entry == NULL)
5759 return;
5760
Milton Miller97b6ea72007-10-15 17:00:19 +02005761 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005762 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005763 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005764 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005765 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005766 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005767 }
Milton Miller73785472007-10-24 18:23:48 +02005768
5769 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005770 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5771}
Milton Miller6382bc92007-10-15 17:00:19 +02005772
Milton Miller73785472007-10-24 18:23:48 +02005773/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005774static void unregister_sched_domain_sysctl(void)
5775{
Milton Miller73785472007-10-24 18:23:48 +02005776 if (sd_sysctl_header)
5777 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005778 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005779 if (sd_ctl_dir[0].child)
5780 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005781}
Nick Piggine692ab52007-07-26 13:40:43 +02005782#else
Milton Miller6382bc92007-10-15 17:00:19 +02005783static void register_sched_domain_sysctl(void)
5784{
5785}
5786static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005787{
5788}
5789#endif
5790
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791/*
5792 * migration_call - callback that gets triggered when a CPU is added.
5793 * Here we can start up the necessary migration thread for the new CPU.
5794 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005795static int __cpuinit
5796migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005799 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005801 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802
5803 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005804
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005806 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02005807 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808 if (IS_ERR(p))
5809 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810 kthread_bind(p, cpu);
5811 /* Must be high prio: stop_machine expects to yield to it. */
5812 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02005813 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814 task_rq_unlock(rq, &flags);
5815 cpu_rq(cpu)->migration_thread = p;
5816 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005817
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005819 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005820 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005822
5823 /* Update our root-domain */
5824 rq = cpu_rq(cpu);
5825 spin_lock_irqsave(&rq->lock, flags);
5826 if (rq->rd) {
5827 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5828 cpu_set(cpu, rq->rd->online);
5829 }
5830 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005832
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833#ifdef CONFIG_HOTPLUG_CPU
5834 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005835 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005836 if (!cpu_rq(cpu)->migration_thread)
5837 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005838 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005839 kthread_bind(cpu_rq(cpu)->migration_thread,
5840 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841 kthread_stop(cpu_rq(cpu)->migration_thread);
5842 cpu_rq(cpu)->migration_thread = NULL;
5843 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005844
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005846 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07005847 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848 migrate_live_tasks(cpu);
5849 rq = cpu_rq(cpu);
5850 kthread_stop(rq->migration_thread);
5851 rq->migration_thread = NULL;
5852 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005853 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005854 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005855 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02005857 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
5858 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005860 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07005861 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 migrate_nr_uninterruptible(rq);
5863 BUG_ON(rq->nr_running != 0);
5864
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005865 /*
5866 * No need to migrate the tasks: it was best-effort if
5867 * they didn't take sched_hotcpu_mutex. Just wake up
5868 * the requestors.
5869 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870 spin_lock_irq(&rq->lock);
5871 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005872 struct migration_req *req;
5873
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005875 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876 list_del_init(&req->list);
5877 complete(&req->done);
5878 }
5879 spin_unlock_irq(&rq->lock);
5880 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005881
Gregory Haskins08f503b2008-03-10 17:59:11 -04005882 case CPU_DYING:
5883 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01005884 /* Update our root-domain */
5885 rq = cpu_rq(cpu);
5886 spin_lock_irqsave(&rq->lock, flags);
5887 if (rq->rd) {
5888 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5889 cpu_clear(cpu, rq->rd->online);
5890 }
5891 spin_unlock_irqrestore(&rq->lock, flags);
5892 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893#endif
5894 }
5895 return NOTIFY_OK;
5896}
5897
5898/* Register at highest priority so that task migration (migrate_all_tasks)
5899 * happens before everything else.
5900 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005901static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902 .notifier_call = migration_call,
5903 .priority = 10
5904};
5905
Adrian Bunke6fe6642007-11-09 22:39:39 +01005906void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907{
5908 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005909 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005910
5911 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005912 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5913 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5915 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916}
5917#endif
5918
5919#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005920
5921/* Number of possible processor ids */
5922int nr_cpu_ids __read_mostly = NR_CPUS;
5923EXPORT_SYMBOL(nr_cpu_ids);
5924
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005925#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005926
5927static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level)
5928{
5929 struct sched_group *group = sd->groups;
5930 cpumask_t groupmask;
5931 char str[NR_CPUS];
5932
5933 cpumask_scnprintf(str, NR_CPUS, sd->span);
5934 cpus_clear(groupmask);
5935
5936 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5937
5938 if (!(sd->flags & SD_LOAD_BALANCE)) {
5939 printk("does not load-balance\n");
5940 if (sd->parent)
5941 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5942 " has parent");
5943 return -1;
5944 }
5945
5946 printk(KERN_CONT "span %s\n", str);
5947
5948 if (!cpu_isset(cpu, sd->span)) {
5949 printk(KERN_ERR "ERROR: domain->span does not contain "
5950 "CPU%d\n", cpu);
5951 }
5952 if (!cpu_isset(cpu, group->cpumask)) {
5953 printk(KERN_ERR "ERROR: domain->groups does not contain"
5954 " CPU%d\n", cpu);
5955 }
5956
5957 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5958 do {
5959 if (!group) {
5960 printk("\n");
5961 printk(KERN_ERR "ERROR: group is NULL\n");
5962 break;
5963 }
5964
5965 if (!group->__cpu_power) {
5966 printk(KERN_CONT "\n");
5967 printk(KERN_ERR "ERROR: domain->cpu_power not "
5968 "set\n");
5969 break;
5970 }
5971
5972 if (!cpus_weight(group->cpumask)) {
5973 printk(KERN_CONT "\n");
5974 printk(KERN_ERR "ERROR: empty group\n");
5975 break;
5976 }
5977
5978 if (cpus_intersects(groupmask, group->cpumask)) {
5979 printk(KERN_CONT "\n");
5980 printk(KERN_ERR "ERROR: repeated CPUs\n");
5981 break;
5982 }
5983
5984 cpus_or(groupmask, groupmask, group->cpumask);
5985
5986 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5987 printk(KERN_CONT " %s", str);
5988
5989 group = group->next;
5990 } while (group != sd->groups);
5991 printk(KERN_CONT "\n");
5992
5993 if (!cpus_equal(sd->span, groupmask))
5994 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
5995
5996 if (sd->parent && !cpus_subset(groupmask, sd->parent->span))
5997 printk(KERN_ERR "ERROR: parent span is not a superset "
5998 "of domain->span\n");
5999 return 0;
6000}
6001
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002static void sched_domain_debug(struct sched_domain *sd, int cpu)
6003{
6004 int level = 0;
6005
Nick Piggin41c7ce92005-06-25 14:57:24 -07006006 if (!sd) {
6007 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6008 return;
6009 }
6010
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6012
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006013 for (;;) {
6014 if (sched_domain_debug_one(sd, cpu, level))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016 level++;
6017 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006018 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006019 break;
6020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021}
6022#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006023# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024#endif
6025
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006026static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006027{
6028 if (cpus_weight(sd->span) == 1)
6029 return 1;
6030
6031 /* Following flags need at least 2 groups */
6032 if (sd->flags & (SD_LOAD_BALANCE |
6033 SD_BALANCE_NEWIDLE |
6034 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006035 SD_BALANCE_EXEC |
6036 SD_SHARE_CPUPOWER |
6037 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006038 if (sd->groups != sd->groups->next)
6039 return 0;
6040 }
6041
6042 /* Following flags don't use groups */
6043 if (sd->flags & (SD_WAKE_IDLE |
6044 SD_WAKE_AFFINE |
6045 SD_WAKE_BALANCE))
6046 return 0;
6047
6048 return 1;
6049}
6050
Ingo Molnar48f24c42006-07-03 00:25:40 -07006051static int
6052sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006053{
6054 unsigned long cflags = sd->flags, pflags = parent->flags;
6055
6056 if (sd_degenerate(parent))
6057 return 1;
6058
6059 if (!cpus_equal(sd->span, parent->span))
6060 return 0;
6061
6062 /* Does parent contain flags not in child? */
6063 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6064 if (cflags & SD_WAKE_AFFINE)
6065 pflags &= ~SD_WAKE_BALANCE;
6066 /* Flags needing groups don't count if only 1 group in parent */
6067 if (parent->groups == parent->groups->next) {
6068 pflags &= ~(SD_LOAD_BALANCE |
6069 SD_BALANCE_NEWIDLE |
6070 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006071 SD_BALANCE_EXEC |
6072 SD_SHARE_CPUPOWER |
6073 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006074 }
6075 if (~cflags & pflags)
6076 return 0;
6077
6078 return 1;
6079}
6080
Gregory Haskins57d885f2008-01-25 21:08:18 +01006081static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6082{
6083 unsigned long flags;
6084 const struct sched_class *class;
6085
6086 spin_lock_irqsave(&rq->lock, flags);
6087
6088 if (rq->rd) {
6089 struct root_domain *old_rd = rq->rd;
6090
Ingo Molnar0eab9142008-01-25 21:08:19 +01006091 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006092 if (class->leave_domain)
6093 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006094 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006095
Gregory Haskinsdc938522008-01-25 21:08:26 +01006096 cpu_clear(rq->cpu, old_rd->span);
6097 cpu_clear(rq->cpu, old_rd->online);
6098
Gregory Haskins57d885f2008-01-25 21:08:18 +01006099 if (atomic_dec_and_test(&old_rd->refcount))
6100 kfree(old_rd);
6101 }
6102
6103 atomic_inc(&rd->refcount);
6104 rq->rd = rd;
6105
Gregory Haskinsdc938522008-01-25 21:08:26 +01006106 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006107 if (cpu_isset(rq->cpu, cpu_online_map))
6108 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006109
Ingo Molnar0eab9142008-01-25 21:08:19 +01006110 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006111 if (class->join_domain)
6112 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006113 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006114
6115 spin_unlock_irqrestore(&rq->lock, flags);
6116}
6117
Gregory Haskinsdc938522008-01-25 21:08:26 +01006118static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006119{
6120 memset(rd, 0, sizeof(*rd));
6121
Gregory Haskinsdc938522008-01-25 21:08:26 +01006122 cpus_clear(rd->span);
6123 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006124}
6125
6126static void init_defrootdomain(void)
6127{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006128 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006129 atomic_set(&def_root_domain.refcount, 1);
6130}
6131
Gregory Haskinsdc938522008-01-25 21:08:26 +01006132static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006133{
6134 struct root_domain *rd;
6135
6136 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6137 if (!rd)
6138 return NULL;
6139
Gregory Haskinsdc938522008-01-25 21:08:26 +01006140 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006141
6142 return rd;
6143}
6144
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006146 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147 * hold the hotplug lock.
6148 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006149static void
6150cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006152 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006153 struct sched_domain *tmp;
6154
6155 /* Remove the sched domains which do not contribute to scheduling. */
6156 for (tmp = sd; tmp; tmp = tmp->parent) {
6157 struct sched_domain *parent = tmp->parent;
6158 if (!parent)
6159 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006160 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006161 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006162 if (parent->parent)
6163 parent->parent->child = tmp;
6164 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006165 }
6166
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006167 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006168 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006169 if (sd)
6170 sd->child = NULL;
6171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172
6173 sched_domain_debug(sd, cpu);
6174
Gregory Haskins57d885f2008-01-25 21:08:18 +01006175 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006176 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006177}
6178
6179/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006180static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181
6182/* Setup the mask of cpus configured for isolated domains */
6183static int __init isolated_cpu_setup(char *str)
6184{
6185 int ints[NR_CPUS], i;
6186
6187 str = get_options(str, ARRAY_SIZE(ints), ints);
6188 cpus_clear(cpu_isolated_map);
6189 for (i = 1; i <= ints[0]; i++)
6190 if (ints[i] < NR_CPUS)
6191 cpu_set(ints[i], cpu_isolated_map);
6192 return 1;
6193}
6194
Ingo Molnar8927f492007-10-15 17:00:13 +02006195__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196
6197/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006198 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6199 * to a function which identifies what group(along with sched group) a CPU
6200 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6201 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202 *
6203 * init_sched_build_groups will build a circular linked list of the groups
6204 * covered by the given span, and will set each group's ->cpumask correctly,
6205 * and ->cpu_power to 0.
6206 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006207static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006208init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
6209 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
6210 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211{
6212 struct sched_group *first = NULL, *last = NULL;
6213 cpumask_t covered = CPU_MASK_NONE;
6214 int i;
6215
6216 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006217 struct sched_group *sg;
6218 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219 int j;
6220
6221 if (cpu_isset(i, covered))
6222 continue;
6223
6224 sg->cpumask = CPU_MASK_NONE;
Eric Dumazet5517d862007-05-08 00:32:57 -07006225 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226
6227 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006228 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229 continue;
6230
6231 cpu_set(j, covered);
6232 cpu_set(j, sg->cpumask);
6233 }
6234 if (!first)
6235 first = sg;
6236 if (last)
6237 last->next = sg;
6238 last = sg;
6239 }
6240 last->next = first;
6241}
6242
John Hawkes9c1cfda2005-09-06 15:18:14 -07006243#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244
John Hawkes9c1cfda2005-09-06 15:18:14 -07006245#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006246
John Hawkes9c1cfda2005-09-06 15:18:14 -07006247/**
6248 * find_next_best_node - find the next node to include in a sched_domain
6249 * @node: node whose sched_domain we're building
6250 * @used_nodes: nodes already in the sched_domain
6251 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006252 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006253 * finds the closest node not already in the @used_nodes map.
6254 *
6255 * Should use nodemask_t.
6256 */
6257static int find_next_best_node(int node, unsigned long *used_nodes)
6258{
6259 int i, n, val, min_val, best_node = 0;
6260
6261 min_val = INT_MAX;
6262
6263 for (i = 0; i < MAX_NUMNODES; i++) {
6264 /* Start at @node */
6265 n = (node + i) % MAX_NUMNODES;
6266
6267 if (!nr_cpus_node(n))
6268 continue;
6269
6270 /* Skip already used nodes */
6271 if (test_bit(n, used_nodes))
6272 continue;
6273
6274 /* Simple min distance search */
6275 val = node_distance(node, n);
6276
6277 if (val < min_val) {
6278 min_val = val;
6279 best_node = n;
6280 }
6281 }
6282
6283 set_bit(best_node, used_nodes);
6284 return best_node;
6285}
6286
6287/**
6288 * sched_domain_node_span - get a cpumask for a node's sched_domain
6289 * @node: node whose cpumask we're constructing
6290 * @size: number of nodes to include in this span
6291 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006292 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006293 * should be one that prevents unnecessary balancing, but also spreads tasks
6294 * out optimally.
6295 */
6296static cpumask_t sched_domain_node_span(int node)
6297{
John Hawkes9c1cfda2005-09-06 15:18:14 -07006298 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006299 cpumask_t span, nodemask;
6300 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006301
6302 cpus_clear(span);
6303 bitmap_zero(used_nodes, MAX_NUMNODES);
6304
6305 nodemask = node_to_cpumask(node);
6306 cpus_or(span, span, nodemask);
6307 set_bit(node, used_nodes);
6308
6309 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6310 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006311
John Hawkes9c1cfda2005-09-06 15:18:14 -07006312 nodemask = node_to_cpumask(next_node);
6313 cpus_or(span, span, nodemask);
6314 }
6315
6316 return span;
6317}
6318#endif
6319
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006320int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006321
John Hawkes9c1cfda2005-09-06 15:18:14 -07006322/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006323 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006324 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325#ifdef CONFIG_SCHED_SMT
6326static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006327static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006328
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006329static int
6330cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006332 if (sg)
6333 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334 return cpu;
6335}
6336#endif
6337
Ingo Molnar48f24c42006-07-03 00:25:40 -07006338/*
6339 * multi-core sched-domains:
6340 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006341#ifdef CONFIG_SCHED_MC
6342static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006343static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006344#endif
6345
6346#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006347static int
6348cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006349{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006350 int group;
Mike Travisd5a74302007-10-16 01:24:05 -07006351 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006352 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006353 group = first_cpu(mask);
6354 if (sg)
6355 *sg = &per_cpu(sched_group_core, group);
6356 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006357}
6358#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006359static int
6360cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006361{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006362 if (sg)
6363 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006364 return cpu;
6365}
6366#endif
6367
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006369static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006370
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006371static int
6372cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006374 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006375#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006376 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006377 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006378 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006379#elif defined(CONFIG_SCHED_SMT)
Mike Travisd5a74302007-10-16 01:24:05 -07006380 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006381 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006382 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006384 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006386 if (sg)
6387 *sg = &per_cpu(sched_group_phys, group);
6388 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389}
6390
6391#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006392/*
6393 * The init_sched_build_groups can't handle what we want to do with node
6394 * groups, so roll our own. Now each node has its own list of groups which
6395 * gets dynamically allocated.
6396 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07006398static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07006399
6400static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006401static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006402
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006403static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
6404 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006406 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
6407 int group;
6408
6409 cpus_and(nodemask, nodemask, *cpu_map);
6410 group = first_cpu(nodemask);
6411
6412 if (sg)
6413 *sg = &per_cpu(sched_group_allnodes, group);
6414 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006416
Siddha, Suresh B08069032006-03-27 01:15:23 -08006417static void init_numa_sched_groups_power(struct sched_group *group_head)
6418{
6419 struct sched_group *sg = group_head;
6420 int j;
6421
6422 if (!sg)
6423 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006424 do {
6425 for_each_cpu_mask(j, sg->cpumask) {
6426 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006427
Andi Kleen3a5c3592007-10-15 17:00:14 +02006428 sd = &per_cpu(phys_domains, j);
6429 if (j != first_cpu(sd->groups->cpumask)) {
6430 /*
6431 * Only add "power" once for each
6432 * physical package.
6433 */
6434 continue;
6435 }
6436
6437 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006438 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006439 sg = sg->next;
6440 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006441}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442#endif
6443
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006444#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006445/* Free memory allocated for various sched_group structures */
6446static void free_sched_groups(const cpumask_t *cpu_map)
6447{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006448 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006449
6450 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006451 struct sched_group **sched_group_nodes
6452 = sched_group_nodes_bycpu[cpu];
6453
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006454 if (!sched_group_nodes)
6455 continue;
6456
6457 for (i = 0; i < MAX_NUMNODES; i++) {
6458 cpumask_t nodemask = node_to_cpumask(i);
6459 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6460
6461 cpus_and(nodemask, nodemask, *cpu_map);
6462 if (cpus_empty(nodemask))
6463 continue;
6464
6465 if (sg == NULL)
6466 continue;
6467 sg = sg->next;
6468next_sg:
6469 oldsg = sg;
6470 sg = sg->next;
6471 kfree(oldsg);
6472 if (oldsg != sched_group_nodes[i])
6473 goto next_sg;
6474 }
6475 kfree(sched_group_nodes);
6476 sched_group_nodes_bycpu[cpu] = NULL;
6477 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006478}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006479#else
6480static void free_sched_groups(const cpumask_t *cpu_map)
6481{
6482}
6483#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006484
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006486 * Initialize sched groups cpu_power.
6487 *
6488 * cpu_power indicates the capacity of sched group, which is used while
6489 * distributing the load between different sched groups in a sched domain.
6490 * Typically cpu_power for all the groups in a sched domain will be same unless
6491 * there are asymmetries in the topology. If there are asymmetries, group
6492 * having more cpu_power will pickup more load compared to the group having
6493 * less cpu_power.
6494 *
6495 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6496 * the maximum number of tasks a group can handle in the presence of other idle
6497 * or lightly loaded groups in the same sched domain.
6498 */
6499static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6500{
6501 struct sched_domain *child;
6502 struct sched_group *group;
6503
6504 WARN_ON(!sd || !sd->groups);
6505
6506 if (cpu != first_cpu(sd->groups->cpumask))
6507 return;
6508
6509 child = sd->child;
6510
Eric Dumazet5517d862007-05-08 00:32:57 -07006511 sd->groups->__cpu_power = 0;
6512
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006513 /*
6514 * For perf policy, if the groups in child domain share resources
6515 * (for example cores sharing some portions of the cache hierarchy
6516 * or SMT), then set this domain groups cpu_power such that each group
6517 * can handle only one task, when there are other idle groups in the
6518 * same sched domain.
6519 */
6520 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6521 (child->flags &
6522 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006523 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006524 return;
6525 }
6526
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006527 /*
6528 * add cpu_power of each child group to this groups cpu_power
6529 */
6530 group = child->groups;
6531 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006532 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006533 group = group->next;
6534 } while (group != child->groups);
6535}
6536
6537/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006538 * Build sched domains for a given set of cpus and attach the sched domains
6539 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006541static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542{
6543 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006544 struct root_domain *rd;
John Hawkesd1b55132005-09-06 15:18:14 -07006545#ifdef CONFIG_NUMA
6546 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006547 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006548
6549 /*
6550 * Allocate the per-node list of sched groups
6551 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006552 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006553 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006554 if (!sched_group_nodes) {
6555 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006556 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006557 }
6558 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6559#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560
Gregory Haskinsdc938522008-01-25 21:08:26 +01006561 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006562 if (!rd) {
6563 printk(KERN_WARNING "Cannot alloc root domain\n");
6564 return -ENOMEM;
6565 }
6566
Linus Torvalds1da177e2005-04-16 15:20:36 -07006567 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006568 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006570 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571 struct sched_domain *sd = NULL, *p;
6572 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6573
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006574 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006575
6576#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006577 if (cpus_weight(*cpu_map) >
6578 SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006579 sd = &per_cpu(allnodes_domains, i);
6580 *sd = SD_ALLNODES_INIT;
6581 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006582 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006583 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006584 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006585 } else
6586 p = NULL;
6587
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006590 sd->span = sched_domain_node_span(cpu_to_node(i));
6591 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006592 if (p)
6593 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006594 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595#endif
6596
6597 p = sd;
6598 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599 *sd = SD_CPU_INIT;
6600 sd->span = nodemask;
6601 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006602 if (p)
6603 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006604 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006606#ifdef CONFIG_SCHED_MC
6607 p = sd;
6608 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006609 *sd = SD_MC_INIT;
6610 sd->span = cpu_coregroup_map(i);
6611 cpus_and(sd->span, sd->span, *cpu_map);
6612 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006613 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006614 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006615#endif
6616
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617#ifdef CONFIG_SCHED_SMT
6618 p = sd;
6619 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620 *sd = SD_SIBLING_INIT;
Mike Travisd5a74302007-10-16 01:24:05 -07006621 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006622 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006624 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006625 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626#endif
6627 }
6628
6629#ifdef CONFIG_SCHED_SMT
6630 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006631 for_each_cpu_mask(i, *cpu_map) {
Mike Travisd5a74302007-10-16 01:24:05 -07006632 cpumask_t this_sibling_map = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006633 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634 if (i != first_cpu(this_sibling_map))
6635 continue;
6636
Ingo Molnardd41f592007-07-09 18:51:59 +02006637 init_sched_build_groups(this_sibling_map, cpu_map,
6638 &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639 }
6640#endif
6641
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006642#ifdef CONFIG_SCHED_MC
6643 /* Set up multi-core groups */
6644 for_each_cpu_mask(i, *cpu_map) {
6645 cpumask_t this_core_map = cpu_coregroup_map(i);
6646 cpus_and(this_core_map, this_core_map, *cpu_map);
6647 if (i != first_cpu(this_core_map))
6648 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006649 init_sched_build_groups(this_core_map, cpu_map,
6650 &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006651 }
6652#endif
6653
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654 /* Set up physical groups */
6655 for (i = 0; i < MAX_NUMNODES; i++) {
6656 cpumask_t nodemask = node_to_cpumask(i);
6657
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006658 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659 if (cpus_empty(nodemask))
6660 continue;
6661
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006662 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663 }
6664
6665#ifdef CONFIG_NUMA
6666 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006667 if (sd_allnodes)
Ingo Molnardd41f592007-07-09 18:51:59 +02006668 init_sched_build_groups(*cpu_map, cpu_map,
6669 &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006670
6671 for (i = 0; i < MAX_NUMNODES; i++) {
6672 /* Set up node groups */
6673 struct sched_group *sg, *prev;
6674 cpumask_t nodemask = node_to_cpumask(i);
6675 cpumask_t domainspan;
6676 cpumask_t covered = CPU_MASK_NONE;
6677 int j;
6678
6679 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006680 if (cpus_empty(nodemask)) {
6681 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006682 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006683 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006684
6685 domainspan = sched_domain_node_span(i);
6686 cpus_and(domainspan, domainspan, *cpu_map);
6687
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006688 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006689 if (!sg) {
6690 printk(KERN_WARNING "Can not alloc domain group for "
6691 "node %d\n", i);
6692 goto error;
6693 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006694 sched_group_nodes[i] = sg;
6695 for_each_cpu_mask(j, nodemask) {
6696 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02006697
John Hawkes9c1cfda2005-09-06 15:18:14 -07006698 sd = &per_cpu(node_domains, j);
6699 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006700 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006701 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006702 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006703 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006704 cpus_or(covered, covered, nodemask);
6705 prev = sg;
6706
6707 for (j = 0; j < MAX_NUMNODES; j++) {
6708 cpumask_t tmp, notcovered;
6709 int n = (i + j) % MAX_NUMNODES;
6710
6711 cpus_complement(notcovered, covered);
6712 cpus_and(tmp, notcovered, *cpu_map);
6713 cpus_and(tmp, tmp, domainspan);
6714 if (cpus_empty(tmp))
6715 break;
6716
6717 nodemask = node_to_cpumask(n);
6718 cpus_and(tmp, tmp, nodemask);
6719 if (cpus_empty(tmp))
6720 continue;
6721
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006722 sg = kmalloc_node(sizeof(struct sched_group),
6723 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006724 if (!sg) {
6725 printk(KERN_WARNING
6726 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006727 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006728 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006729 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006730 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006731 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006732 cpus_or(covered, covered, tmp);
6733 prev->next = sg;
6734 prev = sg;
6735 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737#endif
6738
6739 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006740#ifdef CONFIG_SCHED_SMT
6741 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006742 struct sched_domain *sd = &per_cpu(cpu_domains, i);
6743
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006744 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006745 }
6746#endif
6747#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006748 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006749 struct sched_domain *sd = &per_cpu(core_domains, i);
6750
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006751 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006752 }
6753#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006755 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006756 struct sched_domain *sd = &per_cpu(phys_domains, i);
6757
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006758 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759 }
6760
John Hawkes9c1cfda2005-09-06 15:18:14 -07006761#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006762 for (i = 0; i < MAX_NUMNODES; i++)
6763 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006764
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006765 if (sd_allnodes) {
6766 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006767
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006768 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006769 init_numa_sched_groups_power(sg);
6770 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006771#endif
6772
Linus Torvalds1da177e2005-04-16 15:20:36 -07006773 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006774 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775 struct sched_domain *sd;
6776#ifdef CONFIG_SCHED_SMT
6777 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006778#elif defined(CONFIG_SCHED_MC)
6779 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780#else
6781 sd = &per_cpu(phys_domains, i);
6782#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006783 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006784 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006785
6786 return 0;
6787
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006788#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006789error:
6790 free_sched_groups(cpu_map);
6791 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006792#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793}
Paul Jackson029190c2007-10-18 23:40:20 -07006794
6795static cpumask_t *doms_cur; /* current sched domains */
6796static int ndoms_cur; /* number of sched domains in 'doms_cur' */
6797
6798/*
6799 * Special case: If a kmalloc of a doms_cur partition (array of
6800 * cpumask_t) fails, then fallback to a single sched domain,
6801 * as determined by the single cpumask_t fallback_doms.
6802 */
6803static cpumask_t fallback_doms;
6804
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006805/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006806 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006807 * For now this just excludes isolated cpus, but could be used to
6808 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006809 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006810static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006811{
Milton Miller73785472007-10-24 18:23:48 +02006812 int err;
6813
Paul Jackson029190c2007-10-18 23:40:20 -07006814 ndoms_cur = 1;
6815 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6816 if (!doms_cur)
6817 doms_cur = &fallback_doms;
6818 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Milton Miller73785472007-10-24 18:23:48 +02006819 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02006820 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006821
6822 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006823}
6824
6825static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006827 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006828}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006830/*
6831 * Detach sched domains from a group of cpus specified in cpu_map
6832 * These cpus will now be attached to the NULL domain
6833 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006834static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006835{
6836 int i;
6837
Milton Miller6382bc92007-10-15 17:00:19 +02006838 unregister_sched_domain_sysctl();
6839
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006840 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006841 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006842 synchronize_sched();
6843 arch_destroy_sched_domains(cpu_map);
6844}
6845
Paul Jackson029190c2007-10-18 23:40:20 -07006846/*
6847 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006848 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006849 * doms_new[] to the current sched domain partitioning, doms_cur[].
6850 * It destroys each deleted domain and builds each new domain.
6851 *
6852 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006853 * The masks don't intersect (don't overlap.) We should setup one
6854 * sched domain for each mask. CPUs not in any of the cpumasks will
6855 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006856 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6857 * it as it is.
6858 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006859 * The passed in 'doms_new' should be kmalloc'd. This routine takes
6860 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07006861 * failed the kmalloc call, then it can pass in doms_new == NULL,
6862 * and partition_sched_domains() will fallback to the single partition
6863 * 'fallback_doms'.
6864 *
6865 * Call with hotplug lock held
6866 */
6867void partition_sched_domains(int ndoms_new, cpumask_t *doms_new)
6868{
6869 int i, j;
6870
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006871 lock_doms_cur();
6872
Milton Miller73785472007-10-24 18:23:48 +02006873 /* always unregister in case we don't destroy any domains */
6874 unregister_sched_domain_sysctl();
6875
Paul Jackson029190c2007-10-18 23:40:20 -07006876 if (doms_new == NULL) {
6877 ndoms_new = 1;
6878 doms_new = &fallback_doms;
6879 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
6880 }
6881
6882 /* Destroy deleted domains */
6883 for (i = 0; i < ndoms_cur; i++) {
6884 for (j = 0; j < ndoms_new; j++) {
6885 if (cpus_equal(doms_cur[i], doms_new[j]))
6886 goto match1;
6887 }
6888 /* no match - a current sched domain not in new doms_new[] */
6889 detach_destroy_domains(doms_cur + i);
6890match1:
6891 ;
6892 }
6893
6894 /* Build new domains */
6895 for (i = 0; i < ndoms_new; i++) {
6896 for (j = 0; j < ndoms_cur; j++) {
6897 if (cpus_equal(doms_new[i], doms_cur[j]))
6898 goto match2;
6899 }
6900 /* no match - add a new doms_new */
6901 build_sched_domains(doms_new + i);
6902match2:
6903 ;
6904 }
6905
6906 /* Remember the new sched domains */
6907 if (doms_cur != &fallback_doms)
6908 kfree(doms_cur);
6909 doms_cur = doms_new;
6910 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006911
6912 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006913
6914 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07006915}
6916
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006917#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Adrian Bunk6707de002007-08-12 18:08:19 +02006918static int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006919{
6920 int err;
6921
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006922 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006923 detach_destroy_domains(&cpu_online_map);
6924 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006925 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006926
6927 return err;
6928}
6929
6930static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6931{
6932 int ret;
6933
6934 if (buf[0] != '0' && buf[0] != '1')
6935 return -EINVAL;
6936
6937 if (smt)
6938 sched_smt_power_savings = (buf[0] == '1');
6939 else
6940 sched_mc_power_savings = (buf[0] == '1');
6941
6942 ret = arch_reinit_sched_domains();
6943
6944 return ret ? ret : count;
6945}
6946
Adrian Bunk6707de002007-08-12 18:08:19 +02006947#ifdef CONFIG_SCHED_MC
6948static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6949{
6950 return sprintf(page, "%u\n", sched_mc_power_savings);
6951}
6952static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6953 const char *buf, size_t count)
6954{
6955 return sched_power_savings_store(buf, count, 0);
6956}
6957static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6958 sched_mc_power_savings_store);
6959#endif
6960
6961#ifdef CONFIG_SCHED_SMT
6962static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6963{
6964 return sprintf(page, "%u\n", sched_smt_power_savings);
6965}
6966static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6967 const char *buf, size_t count)
6968{
6969 return sched_power_savings_store(buf, count, 1);
6970}
6971static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6972 sched_smt_power_savings_store);
6973#endif
6974
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006975int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6976{
6977 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006978
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006979#ifdef CONFIG_SCHED_SMT
6980 if (smt_capable())
6981 err = sysfs_create_file(&cls->kset.kobj,
6982 &attr_sched_smt_power_savings.attr);
6983#endif
6984#ifdef CONFIG_SCHED_MC
6985 if (!err && mc_capable())
6986 err = sysfs_create_file(&cls->kset.kobj,
6987 &attr_sched_mc_power_savings.attr);
6988#endif
6989 return err;
6990}
6991#endif
6992
Linus Torvalds1da177e2005-04-16 15:20:36 -07006993/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006994 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07006996 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997 * which will prevent rebalancing while the sched domains are recalculated.
6998 */
6999static int update_sched_domains(struct notifier_block *nfb,
7000 unsigned long action, void *hcpu)
7001{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002 switch (action) {
7003 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007004 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007006 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007007 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008 return NOTIFY_OK;
7009
7010 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007011 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007013 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007014 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007015 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007016 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007017 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018 /*
7019 * Fall through and re-initialise the domains.
7020 */
7021 break;
7022 default:
7023 return NOTIFY_DONE;
7024 }
7025
7026 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007027 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007028
7029 return NOTIFY_OK;
7030}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031
7032void __init sched_init_smp(void)
7033{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007034 cpumask_t non_isolated_cpus;
7035
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007036 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007037 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007038 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007039 if (cpus_empty(non_isolated_cpus))
7040 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007041 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007042 /* XXX: Theoretical race here - CPU may be hotplugged now */
7043 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007044
7045 /* Move init over to a non-isolated CPU */
7046 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
7047 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007048 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049}
7050#else
7051void __init sched_init_smp(void)
7052{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007053 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054}
7055#endif /* CONFIG_SMP */
7056
7057int in_sched_functions(unsigned long addr)
7058{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059 return in_lock_functions(addr) ||
7060 (addr >= (unsigned long)__sched_text_start
7061 && addr < (unsigned long)__sched_text_end);
7062}
7063
Alexey Dobriyana9957442007-10-15 17:00:13 +02007064static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007065{
7066 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02007067#ifdef CONFIG_FAIR_GROUP_SCHED
7068 cfs_rq->rq = rq;
7069#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007070 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007071}
7072
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007073static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7074{
7075 struct rt_prio_array *array;
7076 int i;
7077
7078 array = &rt_rq->active;
7079 for (i = 0; i < MAX_RT_PRIO; i++) {
7080 INIT_LIST_HEAD(array->queue + i);
7081 __clear_bit(i, array->bitmap);
7082 }
7083 /* delimiter for bitsearch: */
7084 __set_bit(MAX_RT_PRIO, array->bitmap);
7085
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007086#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007087 rt_rq->highest_prio = MAX_RT_PRIO;
7088#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007089#ifdef CONFIG_SMP
7090 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007091 rt_rq->overloaded = 0;
7092#endif
7093
7094 rt_rq->rt_time = 0;
7095 rt_rq->rt_throttled = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007096
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007097#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007098 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007099 rt_rq->rq = rq;
7100#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007101}
7102
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007103#ifdef CONFIG_FAIR_GROUP_SCHED
7104static void init_tg_cfs_entry(struct rq *rq, struct task_group *tg,
7105 struct cfs_rq *cfs_rq, struct sched_entity *se,
7106 int cpu, int add)
7107{
7108 tg->cfs_rq[cpu] = cfs_rq;
7109 init_cfs_rq(cfs_rq, rq);
7110 cfs_rq->tg = tg;
7111 if (add)
7112 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7113
7114 tg->se[cpu] = se;
7115 se->cfs_rq = &rq->cfs;
7116 se->my_q = cfs_rq;
7117 se->load.weight = tg->shares;
7118 se->load.inv_weight = div64_64(1ULL<<32, se->load.weight);
7119 se->parent = NULL;
7120}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007121#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007122
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007123#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007124static void init_tg_rt_entry(struct rq *rq, struct task_group *tg,
7125 struct rt_rq *rt_rq, struct sched_rt_entity *rt_se,
7126 int cpu, int add)
7127{
7128 tg->rt_rq[cpu] = rt_rq;
7129 init_rt_rq(rt_rq, rq);
7130 rt_rq->tg = tg;
7131 rt_rq->rt_se = rt_se;
7132 if (add)
7133 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7134
7135 tg->rt_se[cpu] = rt_se;
7136 rt_se->rt_rq = &rq->rt;
7137 rt_se->my_q = rt_rq;
7138 rt_se->parent = NULL;
7139 INIT_LIST_HEAD(&rt_se->run_list);
7140}
7141#endif
7142
Linus Torvalds1da177e2005-04-16 15:20:36 -07007143void __init sched_init(void)
7144{
Christoph Lameter476f3532007-05-06 14:48:58 -07007145 int highest_cpu = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007146 int i, j;
7147
Gregory Haskins57d885f2008-01-25 21:08:18 +01007148#ifdef CONFIG_SMP
7149 init_defrootdomain();
7150#endif
7151
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007152#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007153 list_add(&init_task_group.list, &task_groups);
7154#endif
7155
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007156 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007157 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007158
7159 rq = cpu_rq(i);
7160 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007161 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007162 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007163 rq->clock = 1;
7164 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007165 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007166#ifdef CONFIG_FAIR_GROUP_SCHED
7167 init_task_group.shares = init_task_group_load;
7168 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
7169 init_tg_cfs_entry(rq, &init_task_group,
7170 &per_cpu(init_cfs_rq, i),
7171 &per_cpu(init_sched_entity, i), i, 1);
7172
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007173#endif
7174#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007175 init_task_group.rt_runtime =
7176 sysctl_sched_rt_runtime * NSEC_PER_USEC;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007177 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
7178 init_tg_rt_entry(rq, &init_task_group,
7179 &per_cpu(init_rt_rq, i),
7180 &per_cpu(init_sched_rt_entity, i), i, 1);
7181#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007182 rq->rt_period_expire = 0;
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007183 rq->rt_throttled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007184
Ingo Molnardd41f592007-07-09 18:51:59 +02007185 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7186 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007187#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007188 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007189 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007190 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007191 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007192 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007193 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194 rq->migration_thread = NULL;
7195 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007196 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007197#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007198 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199 atomic_set(&rq->nr_iowait, 0);
Christoph Lameter476f3532007-05-06 14:48:58 -07007200 highest_cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007201 }
7202
Peter Williams2dd73a42006-06-27 02:54:34 -07007203 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007204
Avi Kivitye107be32007-07-26 13:40:43 +02007205#ifdef CONFIG_PREEMPT_NOTIFIERS
7206 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7207#endif
7208
Christoph Lameterc9819f42006-12-10 02:20:25 -08007209#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07007210 nr_cpu_ids = highest_cpu + 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08007211 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7212#endif
7213
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007214#ifdef CONFIG_RT_MUTEXES
7215 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7216#endif
7217
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218 /*
7219 * The boot idle thread does lazy MMU switching as well:
7220 */
7221 atomic_inc(&init_mm.mm_count);
7222 enter_lazy_tlb(&init_mm, current);
7223
7224 /*
7225 * Make us the idle thread. Technically, schedule() should not be
7226 * called from this thread, however somewhere below it might be,
7227 * but because we are the idle thread, we just pick up running again
7228 * when this runqueue becomes "idle".
7229 */
7230 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02007231 /*
7232 * During early bootup we pretend to be a normal task:
7233 */
7234 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007235
7236 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237}
7238
7239#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7240void __might_sleep(char *file, int line)
7241{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007242#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243 static unsigned long prev_jiffy; /* ratelimiting */
7244
7245 if ((in_atomic() || irqs_disabled()) &&
7246 system_state == SYSTEM_RUNNING && !oops_in_progress) {
7247 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7248 return;
7249 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08007250 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007251 " context at %s:%d\n", file, line);
7252 printk("in_atomic():%d, irqs_disabled():%d\n",
7253 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007254 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007255 if (irqs_disabled())
7256 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007257 dump_stack();
7258 }
7259#endif
7260}
7261EXPORT_SYMBOL(__might_sleep);
7262#endif
7263
7264#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007265static void normalize_task(struct rq *rq, struct task_struct *p)
7266{
7267 int on_rq;
7268 update_rq_clock(rq);
7269 on_rq = p->se.on_rq;
7270 if (on_rq)
7271 deactivate_task(rq, p, 0);
7272 __setscheduler(rq, p, SCHED_NORMAL, 0);
7273 if (on_rq) {
7274 activate_task(rq, p, 0);
7275 resched_task(rq->curr);
7276 }
7277}
7278
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279void normalize_rt_tasks(void)
7280{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007281 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007283 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007284
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007285 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007286 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007287 /*
7288 * Only normalize user tasks:
7289 */
7290 if (!p->mm)
7291 continue;
7292
Ingo Molnardd41f592007-07-09 18:51:59 +02007293 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007294#ifdef CONFIG_SCHEDSTATS
7295 p->se.wait_start = 0;
7296 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007297 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007298#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007299 task_rq(p)->clock = 0;
7300
7301 if (!rt_task(p)) {
7302 /*
7303 * Renice negative nice level userspace
7304 * tasks back to 0:
7305 */
7306 if (TASK_NICE(p) < 0 && p->mm)
7307 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007310
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007311 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007312 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313
Ingo Molnar178be792007-10-15 17:00:18 +02007314 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007315
Ingo Molnarb29739f2006-06-27 02:54:51 -07007316 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007317 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007318 } while_each_thread(g, p);
7319
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007320 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007321}
7322
7323#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007324
7325#ifdef CONFIG_IA64
7326/*
7327 * These functions are only useful for the IA64 MCA handling.
7328 *
7329 * They can only be called when the whole system has been
7330 * stopped - every CPU needs to be quiescent, and no scheduling
7331 * activity can take place. Using them for anything else would
7332 * be a serious bug, and as a result, they aren't even visible
7333 * under any other configuration.
7334 */
7335
7336/**
7337 * curr_task - return the current task for a given cpu.
7338 * @cpu: the processor in question.
7339 *
7340 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7341 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007342struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007343{
7344 return cpu_curr(cpu);
7345}
7346
7347/**
7348 * set_curr_task - set the current task for a given cpu.
7349 * @cpu: the processor in question.
7350 * @p: the task pointer to set.
7351 *
7352 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007353 * are serviced on a separate stack. It allows the architecture to switch the
7354 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007355 * must be called with all CPU's synchronized, and interrupts disabled, the
7356 * and caller must save the original value of the current task (see
7357 * curr_task() above) and restore that value before reenabling interrupts and
7358 * re-starting the system.
7359 *
7360 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7361 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007362void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007363{
7364 cpu_curr(cpu) = p;
7365}
7366
7367#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007368
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007369#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007370
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007371#ifdef CONFIG_FAIR_GROUP_SCHED
7372static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007373{
7374 int i;
7375
7376 for_each_possible_cpu(i) {
7377 if (tg->cfs_rq)
7378 kfree(tg->cfs_rq[i]);
7379 if (tg->se)
7380 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007381 }
7382
7383 kfree(tg->cfs_rq);
7384 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007385}
7386
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007387static int alloc_fair_sched_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007388{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007389 struct cfs_rq *cfs_rq;
7390 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007391 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007392 int i;
7393
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007394 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007395 if (!tg->cfs_rq)
7396 goto err;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007397 tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007398 if (!tg->se)
7399 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007400
7401 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007402
7403 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007404 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007405
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007406 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
7407 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007408 if (!cfs_rq)
7409 goto err;
7410
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007411 se = kmalloc_node(sizeof(struct sched_entity),
7412 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007413 if (!se)
7414 goto err;
7415
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007416 init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007417 }
7418
7419 return 1;
7420
7421 err:
7422 return 0;
7423}
7424
7425static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7426{
7427 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
7428 &cpu_rq(cpu)->leaf_cfs_rq_list);
7429}
7430
7431static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7432{
7433 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
7434}
7435#else
7436static inline void free_fair_sched_group(struct task_group *tg)
7437{
7438}
7439
7440static inline int alloc_fair_sched_group(struct task_group *tg)
7441{
7442 return 1;
7443}
7444
7445static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7446{
7447}
7448
7449static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7450{
7451}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007452#endif
7453
7454#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007455static void free_rt_sched_group(struct task_group *tg)
7456{
7457 int i;
7458
7459 for_each_possible_cpu(i) {
7460 if (tg->rt_rq)
7461 kfree(tg->rt_rq[i]);
7462 if (tg->rt_se)
7463 kfree(tg->rt_se[i]);
7464 }
7465
7466 kfree(tg->rt_rq);
7467 kfree(tg->rt_se);
7468}
7469
7470static int alloc_rt_sched_group(struct task_group *tg)
7471{
7472 struct rt_rq *rt_rq;
7473 struct sched_rt_entity *rt_se;
7474 struct rq *rq;
7475 int i;
7476
7477 tg->rt_rq = kzalloc(sizeof(rt_rq) * NR_CPUS, GFP_KERNEL);
7478 if (!tg->rt_rq)
7479 goto err;
7480 tg->rt_se = kzalloc(sizeof(rt_se) * NR_CPUS, GFP_KERNEL);
7481 if (!tg->rt_se)
7482 goto err;
7483
7484 tg->rt_runtime = 0;
7485
7486 for_each_possible_cpu(i) {
7487 rq = cpu_rq(i);
7488
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007489 rt_rq = kmalloc_node(sizeof(struct rt_rq),
7490 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7491 if (!rt_rq)
7492 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007493
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007494 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
7495 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7496 if (!rt_se)
7497 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007498
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007499 init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007500 }
7501
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007502 return 1;
7503
7504 err:
7505 return 0;
7506}
7507
7508static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7509{
7510 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
7511 &cpu_rq(cpu)->leaf_rt_rq_list);
7512}
7513
7514static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7515{
7516 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
7517}
7518#else
7519static inline void free_rt_sched_group(struct task_group *tg)
7520{
7521}
7522
7523static inline int alloc_rt_sched_group(struct task_group *tg)
7524{
7525 return 1;
7526}
7527
7528static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7529{
7530}
7531
7532static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7533{
7534}
7535#endif
7536
7537static void free_sched_group(struct task_group *tg)
7538{
7539 free_fair_sched_group(tg);
7540 free_rt_sched_group(tg);
7541 kfree(tg);
7542}
7543
7544/* allocate runqueue etc for a new task group */
7545struct task_group *sched_create_group(void)
7546{
7547 struct task_group *tg;
7548 unsigned long flags;
7549 int i;
7550
7551 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7552 if (!tg)
7553 return ERR_PTR(-ENOMEM);
7554
7555 if (!alloc_fair_sched_group(tg))
7556 goto err;
7557
7558 if (!alloc_rt_sched_group(tg))
7559 goto err;
7560
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007561 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007562 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007563 register_fair_sched_group(tg, i);
7564 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007565 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007566 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007567 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007568
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007569 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007570
7571err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007572 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007573 return ERR_PTR(-ENOMEM);
7574}
7575
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007576/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007577static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007578{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007579 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007580 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007581}
7582
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007583/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007584void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007585{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007586 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007587 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007588
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007589 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007590 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007591 unregister_fair_sched_group(tg, i);
7592 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007593 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007594 list_del_rcu(&tg->list);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007595 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007596
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007597 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007598 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007599}
7600
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007601/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007602 * The caller of this function should have put the task in its new group
7603 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7604 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007605 */
7606void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007607{
7608 int on_rq, running;
7609 unsigned long flags;
7610 struct rq *rq;
7611
7612 rq = task_rq_lock(tsk, &flags);
7613
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007614 update_rq_clock(rq);
7615
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007616 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007617 on_rq = tsk->se.on_rq;
7618
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007619 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007620 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007621 if (unlikely(running))
7622 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007623
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007624 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007625
Peter Zijlstra810b3812008-02-29 15:21:01 -05007626#ifdef CONFIG_FAIR_GROUP_SCHED
7627 if (tsk->sched_class->moved_group)
7628 tsk->sched_class->moved_group(tsk);
7629#endif
7630
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007631 if (unlikely(running))
7632 tsk->sched_class->set_curr_task(rq);
7633 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02007634 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007635
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007636 task_rq_unlock(rq, &flags);
7637}
7638
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007639#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007640static void set_se_shares(struct sched_entity *se, unsigned long shares)
7641{
7642 struct cfs_rq *cfs_rq = se->cfs_rq;
7643 struct rq *rq = cfs_rq->rq;
7644 int on_rq;
7645
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007646 spin_lock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007647
7648 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007649 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007650 dequeue_entity(cfs_rq, se, 0);
7651
7652 se->load.weight = shares;
7653 se->load.inv_weight = div64_64((1ULL<<32), shares);
7654
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007655 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007656 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007657
7658 spin_unlock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007659}
7660
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007661static DEFINE_MUTEX(shares_mutex);
7662
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007663int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007664{
7665 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007666 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01007667
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007668 /*
7669 * A weight of 0 or 1 can cause arithmetics problems.
7670 * (The default weight is 1024 - so there's no practical
7671 * limitation from this.)
7672 */
7673 if (shares < 2)
7674 shares = 2;
7675
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007676 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007677 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007678 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007679
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007680 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007681 for_each_possible_cpu(i)
7682 unregister_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007683 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007684
7685 /* wait for any ongoing reference to this group to finish */
7686 synchronize_sched();
7687
7688 /*
7689 * Now we are free to modify the group's share on each cpu
7690 * w/o tripping rebalance_share or load_balance_fair.
7691 */
7692 tg->shares = shares;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007693 for_each_possible_cpu(i)
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007694 set_se_shares(tg->se[i], shares);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007695
7696 /*
7697 * Enable load balance activity on this group, by inserting it back on
7698 * each cpu's rq->leaf_cfs_rq_list.
7699 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007700 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007701 for_each_possible_cpu(i)
7702 register_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007703 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007704done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007705 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007706 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007707}
7708
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007709unsigned long sched_group_shares(struct task_group *tg)
7710{
7711 return tg->shares;
7712}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007713#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007714
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007715#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007716/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007717 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007718 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007719static DEFINE_MUTEX(rt_constraints_mutex);
7720
7721static unsigned long to_ratio(u64 period, u64 runtime)
7722{
7723 if (runtime == RUNTIME_INF)
7724 return 1ULL << 16;
7725
Peter Zijlstra2692a242008-02-27 12:00:46 +01007726 return div64_64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007727}
7728
7729static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007730{
7731 struct task_group *tgi;
7732 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007733 unsigned long global_ratio =
7734 to_ratio(sysctl_sched_rt_period,
7735 sysctl_sched_rt_runtime < 0 ?
7736 RUNTIME_INF : sysctl_sched_rt_runtime);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007737
7738 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007739 list_for_each_entry_rcu(tgi, &task_groups, list) {
7740 if (tgi == tg)
7741 continue;
7742
7743 total += to_ratio(period, tgi->rt_runtime);
7744 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007745 rcu_read_unlock();
7746
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007747 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007748}
7749
Dhaval Giani521f1a242008-02-28 15:21:56 +05307750/* Must be called with tasklist_lock held */
7751static inline int tg_has_rt_tasks(struct task_group *tg)
7752{
7753 struct task_struct *g, *p;
7754 do_each_thread(g, p) {
7755 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
7756 return 1;
7757 } while_each_thread(g, p);
7758 return 0;
7759}
7760
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007761int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007762{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007763 u64 rt_runtime, rt_period;
7764 int err = 0;
7765
Peter Zijlstra2692a242008-02-27 12:00:46 +01007766 rt_period = (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007767 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7768 if (rt_runtime_us == -1)
Peter Zijlstra2692a242008-02-27 12:00:46 +01007769 rt_runtime = RUNTIME_INF;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007770
7771 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05307772 read_lock(&tasklist_lock);
7773 if (rt_runtime_us == 0 && tg_has_rt_tasks(tg)) {
7774 err = -EBUSY;
7775 goto unlock;
7776 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007777 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
7778 err = -EINVAL;
7779 goto unlock;
7780 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007781 tg->rt_runtime = rt_runtime;
7782 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05307783 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007784 mutex_unlock(&rt_constraints_mutex);
7785
7786 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007787}
7788
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007789long sched_group_rt_runtime(struct task_group *tg)
7790{
7791 u64 rt_runtime_us;
7792
7793 if (tg->rt_runtime == RUNTIME_INF)
7794 return -1;
7795
7796 rt_runtime_us = tg->rt_runtime;
7797 do_div(rt_runtime_us, NSEC_PER_USEC);
7798 return rt_runtime_us;
7799}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007800#endif
7801#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007802
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007803#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007804
7805/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007806static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007807{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007808 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
7809 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007810}
7811
7812static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02007813cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007814{
7815 struct task_group *tg;
7816
Paul Menage2b01dfe2007-10-24 18:23:50 +02007817 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007818 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007819 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007820 return &init_task_group.css;
7821 }
7822
7823 /* we support only 1-level deep hierarchical scheduler atm */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007824 if (cgrp->parent->parent)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007825 return ERR_PTR(-EINVAL);
7826
7827 tg = sched_create_group();
7828 if (IS_ERR(tg))
7829 return ERR_PTR(-ENOMEM);
7830
7831 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007832 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007833
7834 return &tg->css;
7835}
7836
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007837static void
7838cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007839{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007840 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007841
7842 sched_destroy_group(tg);
7843}
7844
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007845static int
7846cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
7847 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007848{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007849#ifdef CONFIG_RT_GROUP_SCHED
7850 /* Don't accept realtime tasks when there is no way for them to run */
7851 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_runtime == 0)
7852 return -EINVAL;
7853#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007854 /* We don't support RT-tasks being in separate groups */
7855 if (tsk->sched_class != &fair_sched_class)
7856 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007857#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007858
7859 return 0;
7860}
7861
7862static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02007863cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007864 struct cgroup *old_cont, struct task_struct *tsk)
7865{
7866 sched_move_task(tsk);
7867}
7868
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007869#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menage2b01dfe2007-10-24 18:23:50 +02007870static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
7871 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007872{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007873 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007874}
7875
Paul Menage2b01dfe2007-10-24 18:23:50 +02007876static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007877{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007878 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007879
7880 return (u64) tg->shares;
7881}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007882#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007883
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007884#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007885static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
7886 struct file *file,
7887 const char __user *userbuf,
7888 size_t nbytes, loff_t *unused_ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007889{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007890 char buffer[64];
7891 int retval = 0;
7892 s64 val;
7893 char *end;
7894
7895 if (!nbytes)
7896 return -EINVAL;
7897 if (nbytes >= sizeof(buffer))
7898 return -E2BIG;
7899 if (copy_from_user(buffer, userbuf, nbytes))
7900 return -EFAULT;
7901
7902 buffer[nbytes] = 0; /* nul-terminate */
7903
7904 /* strip newline if necessary */
7905 if (nbytes && (buffer[nbytes-1] == '\n'))
7906 buffer[nbytes-1] = 0;
7907 val = simple_strtoll(buffer, &end, 0);
7908 if (*end)
7909 return -EINVAL;
7910
7911 /* Pass to subsystem */
7912 retval = sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
7913 if (!retval)
7914 retval = nbytes;
7915 return retval;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007916}
7917
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007918static ssize_t cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft,
7919 struct file *file,
7920 char __user *buf, size_t nbytes,
7921 loff_t *ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007922{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007923 char tmp[64];
7924 long val = sched_group_rt_runtime(cgroup_tg(cgrp));
7925 int len = sprintf(tmp, "%ld\n", val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007926
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007927 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007928}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007929#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007930
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007931static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007932#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007933 {
7934 .name = "shares",
7935 .read_uint = cpu_shares_read_uint,
7936 .write_uint = cpu_shares_write_uint,
7937 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007938#endif
7939#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007940 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007941 .name = "rt_runtime_us",
7942 .read = cpu_rt_runtime_read,
7943 .write = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007944 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007945#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007946};
7947
7948static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
7949{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007950 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007951}
7952
7953struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01007954 .name = "cpu",
7955 .create = cpu_cgroup_create,
7956 .destroy = cpu_cgroup_destroy,
7957 .can_attach = cpu_cgroup_can_attach,
7958 .attach = cpu_cgroup_attach,
7959 .populate = cpu_cgroup_populate,
7960 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007961 .early_init = 1,
7962};
7963
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007964#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01007965
7966#ifdef CONFIG_CGROUP_CPUACCT
7967
7968/*
7969 * CPU accounting code for task groups.
7970 *
7971 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
7972 * (balbir@in.ibm.com).
7973 */
7974
7975/* track cpu usage of a group of tasks */
7976struct cpuacct {
7977 struct cgroup_subsys_state css;
7978 /* cpuusage holds pointer to a u64-type object on every cpu */
7979 u64 *cpuusage;
7980};
7981
7982struct cgroup_subsys cpuacct_subsys;
7983
7984/* return cpu accounting group corresponding to this container */
7985static inline struct cpuacct *cgroup_ca(struct cgroup *cont)
7986{
7987 return container_of(cgroup_subsys_state(cont, cpuacct_subsys_id),
7988 struct cpuacct, css);
7989}
7990
7991/* return cpu accounting group to which this task belongs */
7992static inline struct cpuacct *task_ca(struct task_struct *tsk)
7993{
7994 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
7995 struct cpuacct, css);
7996}
7997
7998/* create a new cpu accounting group */
7999static struct cgroup_subsys_state *cpuacct_create(
8000 struct cgroup_subsys *ss, struct cgroup *cont)
8001{
8002 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
8003
8004 if (!ca)
8005 return ERR_PTR(-ENOMEM);
8006
8007 ca->cpuusage = alloc_percpu(u64);
8008 if (!ca->cpuusage) {
8009 kfree(ca);
8010 return ERR_PTR(-ENOMEM);
8011 }
8012
8013 return &ca->css;
8014}
8015
8016/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008017static void
8018cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008019{
8020 struct cpuacct *ca = cgroup_ca(cont);
8021
8022 free_percpu(ca->cpuusage);
8023 kfree(ca);
8024}
8025
8026/* return total cpu usage (in nanoseconds) of a group */
8027static u64 cpuusage_read(struct cgroup *cont, struct cftype *cft)
8028{
8029 struct cpuacct *ca = cgroup_ca(cont);
8030 u64 totalcpuusage = 0;
8031 int i;
8032
8033 for_each_possible_cpu(i) {
8034 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8035
8036 /*
8037 * Take rq->lock to make 64-bit addition safe on 32-bit
8038 * platforms.
8039 */
8040 spin_lock_irq(&cpu_rq(i)->lock);
8041 totalcpuusage += *cpuusage;
8042 spin_unlock_irq(&cpu_rq(i)->lock);
8043 }
8044
8045 return totalcpuusage;
8046}
8047
8048static struct cftype files[] = {
8049 {
8050 .name = "usage",
8051 .read_uint = cpuusage_read,
8052 },
8053};
8054
8055static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8056{
8057 return cgroup_add_files(cont, ss, files, ARRAY_SIZE(files));
8058}
8059
8060/*
8061 * charge this task's execution time to its accounting group.
8062 *
8063 * called with rq->lock held.
8064 */
8065static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
8066{
8067 struct cpuacct *ca;
8068
8069 if (!cpuacct_subsys.active)
8070 return;
8071
8072 ca = task_ca(tsk);
8073 if (ca) {
8074 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
8075
8076 *cpuusage += cputime;
8077 }
8078}
8079
8080struct cgroup_subsys cpuacct_subsys = {
8081 .name = "cpuacct",
8082 .create = cpuacct_create,
8083 .destroy = cpuacct_destroy,
8084 .populate = cpuacct_populate,
8085 .subsys_id = cpuacct_subsys_id,
8086};
8087#endif /* CONFIG_CGROUP_CPUACCT */