blob: adbd475cfd2556e5c28591cb103de399111c64a6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * kernel/sched.c
3 *
4 * Kernel scheduler and related syscalls
5 *
6 * Copyright (C) 1991-2002 Linus Torvalds
7 *
8 * 1996-12-23 Modified by Dave Grothe to fix bugs in semaphores and
9 * make semaphores SMP safe
10 * 1998-11-19 Implemented schedule_timeout() and related stuff
11 * by Andrea Arcangeli
12 * 2002-01-04 New ultra-scalable O(1) scheduler by Ingo Molnar:
13 * hybrid priority-list and round-robin design with
14 * an array-switch method of distributing timeslices
15 * and per-CPU runqueues. Cleanups and useful suggestions
16 * by Davide Libenzi, preemptible kernel bits by Robert Love.
17 * 2003-09-03 Interactivity tuning by Con Kolivas.
18 * 2004-04-02 Scheduler domains code by Nick Piggin
Ingo Molnarc31f2e82007-07-09 18:52:01 +020019 * 2007-04-15 Work begun on replacing all interactivity tuning with a
20 * fair scheduling design by Con Kolivas.
21 * 2007-05-05 Load balancing (smp-nice) and other improvements
22 * by Peter Williams
23 * 2007-05-06 Interactivity improvements to CFS by Mike Galbraith
24 * 2007-07-01 Group scheduling enhancements by Srivatsa Vaddagiri
Ingo Molnarb9131762008-01-25 21:08:19 +010025 * 2007-11-29 RT balancing improvements by Steven Rostedt, Gregory Haskins,
26 * Thomas Gleixner, Mike Kravetz
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
29#include <linux/mm.h>
30#include <linux/module.h>
31#include <linux/nmi.h>
32#include <linux/init.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020033#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/highmem.h>
35#include <linux/smp_lock.h>
36#include <asm/mmu_context.h>
37#include <linux/interrupt.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080038#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/completion.h>
40#include <linux/kernel_stat.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070041#include <linux/debug_locks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/security.h>
43#include <linux/notifier.h>
44#include <linux/profile.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080045#include <linux/freezer.h>
akpm@osdl.org198e2f12006-01-12 01:05:30 -080046#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/blkdev.h>
48#include <linux/delay.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070049#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/smp.h>
51#include <linux/threads.h>
52#include <linux/timer.h>
53#include <linux/rcupdate.h>
54#include <linux/cpu.h>
55#include <linux/cpuset.h>
56#include <linux/percpu.h>
57#include <linux/kthread.h>
58#include <linux/seq_file.h>
Nick Piggine692ab52007-07-26 13:40:43 +020059#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/syscalls.h>
61#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070062#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080063#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070064#include <linux/delayacct.h>
Eric Dumazet5517d862007-05-08 00:32:57 -070065#include <linux/reciprocal_div.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020066#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020067#include <linux/pagemap.h>
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010068#include <linux/hrtimer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Eric Dumazet5517d862007-05-08 00:32:57 -070070#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020071#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080074 * Scheduler clock - returns current time in nanosec units.
75 * This is default implementation.
76 * Architectures and sub-architectures can override this.
77 */
78unsigned long long __attribute__((weak)) sched_clock(void)
79{
Eric Dumazetd6322fa2007-11-09 22:39:38 +010080 return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080081}
82
83/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * Convert user-nice values [ -20 ... 0 ... 19 ]
85 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
86 * and back.
87 */
88#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
89#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
90#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
91
92/*
93 * 'User priority' is the nice value converted to something we
94 * can work with better when scaling various scheduler parameters,
95 * it's a [ 0 ... 39 ] range.
96 */
97#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
98#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
99#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
100
101/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100102 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100104#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200106#define NICE_0_LOAD SCHED_LOAD_SCALE
107#define NICE_0_SHIFT SCHED_LOAD_SHIFT
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * These are the 'tuning knobs' of the scheduler:
111 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200112 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * Timeslices get refilled after they expire.
114 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700116
Eric Dumazet5517d862007-05-08 00:32:57 -0700117#ifdef CONFIG_SMP
118/*
119 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
120 * Since cpu_power is a 'constant', we can use a reciprocal divide.
121 */
122static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
123{
124 return reciprocal_divide(load, sg->reciprocal_cpu_power);
125}
126
127/*
128 * Each time a sched group cpu_power is changed,
129 * we must compute its reciprocal value
130 */
131static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
132{
133 sg->__cpu_power += val;
134 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
135}
136#endif
137
Ingo Molnare05606d2007-07-09 18:51:59 +0200138static inline int rt_policy(int policy)
139{
140 if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR))
141 return 1;
142 return 0;
143}
144
145static inline int task_has_rt_policy(struct task_struct *p)
146{
147 return rt_policy(p->policy);
148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200151 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200153struct rt_prio_array {
154 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
155 struct list_head queue[MAX_RT_PRIO];
156};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100158#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200159
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700160#include <linux/cgroup.h>
161
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200162struct cfs_rq;
163
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100164static LIST_HEAD(task_groups);
165
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200166/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200167struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100168#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700169 struct cgroup_subsys_state css;
170#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100171
172#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200173 /* schedulable entities of this group on each cpu */
174 struct sched_entity **se;
175 /* runqueue "owned" by this group on each cpu */
176 struct cfs_rq **cfs_rq;
177 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100178#endif
179
180#ifdef CONFIG_RT_GROUP_SCHED
181 struct sched_rt_entity **rt_se;
182 struct rt_rq **rt_rq;
183
184 u64 rt_runtime;
185#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100186
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100187 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100188 struct list_head list;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200189};
190
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100191#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200192/* Default task group's sched entity on each cpu */
193static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
194/* Default task group's cfs_rq on each cpu */
195static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
196
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100197static struct sched_entity *init_sched_entity_p[NR_CPUS];
198static struct cfs_rq *init_cfs_rq_p[NR_CPUS];
199#endif
200
201#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100202static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
203static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
204
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100205static struct sched_rt_entity *init_sched_rt_entity_p[NR_CPUS];
206static struct rt_rq *init_rt_rq_p[NR_CPUS];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100207#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100208
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100209/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100210 * a task group's cpu shares.
211 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100212static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100213
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100214/* doms_cur_mutex serializes access to doms_cur[] array */
215static DEFINE_MUTEX(doms_cur_mutex);
216
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100217#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100218#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100219# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200220#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100221# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200222#endif
223
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100224static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100225#endif
226
227/* Default task group.
228 * Every task in system belong to this group at bootup.
229 */
230struct task_group init_task_group = {
231#ifdef CONFIG_FAIR_GROUP_SCHED
232 .se = init_sched_entity_p,
233 .cfs_rq = init_cfs_rq_p,
234#endif
235
236#ifdef CONFIG_RT_GROUP_SCHED
237 .rt_se = init_sched_rt_entity_p,
238 .rt_rq = init_rt_rq_p,
239#endif
240};
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200241
242/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200243static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200244{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200245 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200246
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100247#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200248 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100249#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700250 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
251 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200252#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100253 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200254#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200255 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200256}
257
258/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100259static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200260{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100261#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100262 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
263 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100264#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100265
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100266#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100267 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
268 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100269#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200270}
271
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100272static inline void lock_doms_cur(void)
273{
274 mutex_lock(&doms_cur_mutex);
275}
276
277static inline void unlock_doms_cur(void)
278{
279 mutex_unlock(&doms_cur_mutex);
280}
281
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200282#else
283
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100284static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100285static inline void lock_doms_cur(void) { }
286static inline void unlock_doms_cur(void) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200287
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100288#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200289
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200290/* CFS-related fields in a runqueue */
291struct cfs_rq {
292 struct load_weight load;
293 unsigned long nr_running;
294
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200295 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200296 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200297
298 struct rb_root tasks_timeline;
299 struct rb_node *rb_leftmost;
300 struct rb_node *rb_load_balance_curr;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200301 /* 'curr' points to currently running entity on this cfs_rq.
302 * It is set to NULL otherwise (i.e when none are currently running).
303 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100304 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200305
306 unsigned long nr_spread_over;
307
Ingo Molnar62160e3f2007-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 Haskinsa22d7fc12008-01-25 21:08:12 +0100333 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100334#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100335 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100336 u64 rt_time;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100337
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100338#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100339 unsigned long rt_nr_boosted;
340
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100341 struct rq *rq;
342 struct list_head leaf_rt_rq_list;
343 struct task_group *tg;
344 struct sched_rt_entity *rt_se;
345#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200346};
347
Gregory Haskins57d885f2008-01-25 21:08:18 +0100348#ifdef CONFIG_SMP
349
350/*
351 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100352 * variables. Each exclusive cpuset essentially defines an island domain by
353 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100354 * exclusive cpuset is created, we also create and attach a new root-domain
355 * object.
356 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100357 */
358struct root_domain {
359 atomic_t refcount;
360 cpumask_t span;
361 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100362
Ingo Molnar0eab9142008-01-25 21:08:19 +0100363 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100364 * The "RT overload" flag: it gets set if a CPU has more than
365 * one runnable RT task.
366 */
367 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100368 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100369};
370
Gregory Haskinsdc938522008-01-25 21:08:26 +0100371/*
372 * By default the system creates a single root-domain with all cpus as
373 * members (mimicking the global state we have today).
374 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100375static struct root_domain def_root_domain;
376
377#endif
378
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200379/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * This is the main, per-CPU runqueue data structure.
381 *
382 * Locking rule: those places that want to lock multiple runqueues
383 * (such as the load balancing or the thread migration code), lock
384 * acquire operations must be ordered by ascending &runqueue.
385 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700386struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200387 /* runqueue lock: */
388 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 /*
391 * nr_running and cpu_load should be in the same cacheline because
392 * remote CPUs use both these fields when doing load calculation.
393 */
394 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200395 #define CPU_LOAD_IDX_MAX 5
396 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700397 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700398#ifdef CONFIG_NO_HZ
399 unsigned char in_nohz_recently;
400#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200401 /* capture load from *all* tasks on this cpu: */
402 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200403 unsigned long nr_load_updates;
404 u64 nr_switches;
405
406 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100407 struct rt_rq rt;
408 u64 rt_period_expire;
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100409 int rt_throttled;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100410
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200411#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200412 /* list of leaf cfs_rq on this cpu: */
413 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100414#endif
415#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100416 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 /*
420 * This is part of a global counter where only the total sum
421 * over all CPUs matters. A task can increase this counter on
422 * one CPU and if it got migrated afterwards it may decrease
423 * it on another CPU. Always updated under the runqueue lock:
424 */
425 unsigned long nr_uninterruptible;
426
Ingo Molnar36c8b582006-07-03 00:25:41 -0700427 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800428 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200430
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200431 u64 clock, prev_clock_raw;
432 s64 clock_max_delta;
433
Guillaume Chazaraincc203d22008-01-25 21:08:34 +0100434 unsigned int clock_warps, clock_overflows, clock_underflows;
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200435 u64 idle_clock;
436 unsigned int clock_deep_idle_events;
Ingo Molnar529c7722007-08-10 23:05:11 +0200437 u64 tick_timestamp;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 atomic_t nr_iowait;
440
441#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100442 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 struct sched_domain *sd;
444
445 /* For active balancing */
446 int active_balance;
447 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200448 /* cpu of this runqueue: */
449 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Ingo Molnar36c8b582006-07-03 00:25:41 -0700451 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct list_head migration_queue;
453#endif
454
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100455#ifdef CONFIG_SCHED_HRTICK
456 unsigned long hrtick_flags;
457 ktime_t hrtick_expire;
458 struct hrtimer hrtick_timer;
459#endif
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461#ifdef CONFIG_SCHEDSTATS
462 /* latency stats */
463 struct sched_info rq_sched_info;
464
465 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200466 unsigned int yld_exp_empty;
467 unsigned int yld_act_empty;
468 unsigned int yld_both_empty;
469 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200472 unsigned int sched_switch;
473 unsigned int sched_count;
474 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200477 unsigned int ttwu_count;
478 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200479
480 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200481 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700483 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484};
485
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700486static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Ingo Molnardd41f592007-07-09 18:51:59 +0200488static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
489{
490 rq->curr->sched_class->check_preempt_curr(rq, p);
491}
492
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700493static inline int cpu_of(struct rq *rq)
494{
495#ifdef CONFIG_SMP
496 return rq->cpu;
497#else
498 return 0;
499#endif
500}
501
Nick Piggin674311d2005-06-25 14:57:27 -0700502/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200503 * Update the per-runqueue clock, as finegrained as the platform can give
504 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200505 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200506static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200507{
508 u64 prev_raw = rq->prev_clock_raw;
509 u64 now = sched_clock();
510 s64 delta = now - prev_raw;
511 u64 clock = rq->clock;
512
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200513#ifdef CONFIG_SCHED_DEBUG
514 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
515#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200516 /*
517 * Protect against sched_clock() occasionally going backwards:
518 */
519 if (unlikely(delta < 0)) {
520 clock++;
521 rq->clock_warps++;
522 } else {
523 /*
524 * Catch too large forward jumps too:
525 */
Ingo Molnar529c7722007-08-10 23:05:11 +0200526 if (unlikely(clock + delta > rq->tick_timestamp + TICK_NSEC)) {
527 if (clock < rq->tick_timestamp + TICK_NSEC)
528 clock = rq->tick_timestamp + TICK_NSEC;
529 else
530 clock++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200531 rq->clock_overflows++;
532 } else {
533 if (unlikely(delta > rq->clock_max_delta))
534 rq->clock_max_delta = delta;
535 clock += delta;
536 }
537 }
538
539 rq->prev_clock_raw = now;
540 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200541}
542
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200543static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200544{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200545 if (likely(smp_processor_id() == cpu_of(rq)))
546 __update_rq_clock(rq);
547}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200548
Ingo Molnar20d315d2007-07-09 18:51:58 +0200549/*
Nick Piggin674311d2005-06-25 14:57:27 -0700550 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700551 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700552 *
553 * The domain tree of any CPU may only be accessed from within
554 * preempt-disabled sections.
555 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700556#define for_each_domain(cpu, __sd) \
557 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
560#define this_rq() (&__get_cpu_var(runqueues))
561#define task_rq(p) cpu_rq(task_cpu(p))
562#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
563
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100564unsigned long rt_needs_cpu(int cpu)
565{
566 struct rq *rq = cpu_rq(cpu);
567 u64 delta;
568
569 if (!rq->rt_throttled)
570 return 0;
571
572 if (rq->clock > rq->rt_period_expire)
573 return 1;
574
575 delta = rq->rt_period_expire - rq->clock;
576 do_div(delta, NSEC_PER_SEC / HZ);
577
578 return (unsigned long)delta;
579}
580
Ingo Molnare436d802007-07-19 21:28:35 +0200581/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200582 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
583 */
584#ifdef CONFIG_SCHED_DEBUG
585# define const_debug __read_mostly
586#else
587# define const_debug static const
588#endif
589
590/*
591 * Debugging: various feature bits
592 */
593enum {
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200594 SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
Ingo Molnar96126332007-11-15 20:57:40 +0100595 SCHED_FEAT_WAKEUP_PREEMPT = 2,
596 SCHED_FEAT_START_DEBIT = 4,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100597 SCHED_FEAT_TREE_AVG = 8,
598 SCHED_FEAT_APPROX_AVG = 16,
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100599 SCHED_FEAT_HRTICK = 32,
600 SCHED_FEAT_DOUBLE_TICK = 64,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200601};
602
603const_debug unsigned int sysctl_sched_features =
Ingo Molnar8401f772007-10-18 21:32:55 +0200604 SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 |
Ingo Molnar96126332007-11-15 20:57:40 +0100605 SCHED_FEAT_WAKEUP_PREEMPT * 1 |
Ingo Molnar8401f772007-10-18 21:32:55 +0200606 SCHED_FEAT_START_DEBIT * 1 |
607 SCHED_FEAT_TREE_AVG * 0 |
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100608 SCHED_FEAT_APPROX_AVG * 0 |
609 SCHED_FEAT_HRTICK * 1 |
610 SCHED_FEAT_DOUBLE_TICK * 0;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200611
612#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
613
614/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100615 * Number of tasks to iterate in a single balance run.
616 * Limited because this is done with IRQs disabled.
617 */
618const_debug unsigned int sysctl_sched_nr_migrate = 32;
619
620/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100621 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100622 * default: 1s
623 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100624unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100625
Ingo Molnar6892b752008-02-13 14:02:36 +0100626static __read_mostly int scheduler_running;
627
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100628/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100629 * part of the period that we allow rt tasks to run in us.
630 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100631 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100632int sysctl_sched_rt_runtime = 950000;
633
634/*
635 * single value that denotes runtime == period, ie unlimited time.
636 */
637#define RUNTIME_INF ((u64)~0ULL)
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100638
639/*
Ingo Molnare436d802007-07-19 21:28:35 +0200640 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
641 * clock constructed from sched_clock():
642 */
643unsigned long long cpu_clock(int cpu)
644{
Ingo Molnare436d802007-07-19 21:28:35 +0200645 unsigned long long now;
646 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200647 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200648
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100649 /*
650 * Only call sched_clock() if the scheduler has already been
651 * initialized (some code might call cpu_clock() very early):
652 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100653 if (unlikely(!scheduler_running))
654 return 0;
655
656 local_irq_save(flags);
657 rq = cpu_rq(cpu);
658 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200659 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200660 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200661
662 return now;
663}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200664EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700667# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700669#ifndef finish_arch_switch
670# define finish_arch_switch(prev) do { } while (0)
671#endif
672
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100673static inline int task_current(struct rq *rq, struct task_struct *p)
674{
675 return rq->curr == p;
676}
677
Nick Piggin4866cde2005-06-25 14:57:23 -0700678#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700679static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700680{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100681 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700682}
683
Ingo Molnar70b97a72006-07-03 00:25:42 -0700684static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700685{
686}
687
Ingo Molnar70b97a72006-07-03 00:25:42 -0700688static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700689{
Ingo Molnarda04c032005-09-13 11:17:59 +0200690#ifdef CONFIG_DEBUG_SPINLOCK
691 /* this is a valid case when another task releases the spinlock */
692 rq->lock.owner = current;
693#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700694 /*
695 * If we are tracking spinlock dependencies then we have to
696 * fix up the runqueue lock - which gets 'carried over' from
697 * prev into current:
698 */
699 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
700
Nick Piggin4866cde2005-06-25 14:57:23 -0700701 spin_unlock_irq(&rq->lock);
702}
703
704#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700705static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700706{
707#ifdef CONFIG_SMP
708 return p->oncpu;
709#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100710 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700711#endif
712}
713
Ingo Molnar70b97a72006-07-03 00:25:42 -0700714static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700715{
716#ifdef CONFIG_SMP
717 /*
718 * We can optimise this out completely for !SMP, because the
719 * SMP rebalancing from interrupt is the only thing that cares
720 * here.
721 */
722 next->oncpu = 1;
723#endif
724#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
725 spin_unlock_irq(&rq->lock);
726#else
727 spin_unlock(&rq->lock);
728#endif
729}
730
Ingo Molnar70b97a72006-07-03 00:25:42 -0700731static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700732{
733#ifdef CONFIG_SMP
734 /*
735 * After ->oncpu is cleared, the task can be moved to a different CPU.
736 * We must ensure this doesn't happen until the switch is completely
737 * finished.
738 */
739 smp_wmb();
740 prev->oncpu = 0;
741#endif
742#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
743 local_irq_enable();
744#endif
745}
746#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700749 * __task_rq_lock - lock the runqueue a given task resides on.
750 * Must be called interrupts disabled.
751 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700752static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700753 __acquires(rq->lock)
754{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200755 for (;;) {
756 struct rq *rq = task_rq(p);
757 spin_lock(&rq->lock);
758 if (likely(rq == task_rq(p)))
759 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700760 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700761 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700762}
763
764/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100766 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 * explicitly disabling preemption.
768 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700769static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 __acquires(rq->lock)
771{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700772 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Andi Kleen3a5c3592007-10-15 17:00:14 +0200774 for (;;) {
775 local_irq_save(*flags);
776 rq = task_rq(p);
777 spin_lock(&rq->lock);
778 if (likely(rq == task_rq(p)))
779 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Alexey Dobriyana9957442007-10-15 17:00:13 +0200784static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700785 __releases(rq->lock)
786{
787 spin_unlock(&rq->lock);
788}
789
Ingo Molnar70b97a72006-07-03 00:25:42 -0700790static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 __releases(rq->lock)
792{
793 spin_unlock_irqrestore(&rq->lock, *flags);
794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800797 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200799static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 __acquires(rq->lock)
801{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700802 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 local_irq_disable();
805 rq = this_rq();
806 spin_lock(&rq->lock);
807
808 return rq;
809}
810
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200811/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200812 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200813 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200814void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200815{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200816 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200817
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200818 spin_lock(&rq->lock);
819 __update_rq_clock(rq);
820 spin_unlock(&rq->lock);
821 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200822}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200823EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
824
825/*
826 * We just idled delta nanoseconds (called with irqs disabled):
827 */
828void sched_clock_idle_wakeup_event(u64 delta_ns)
829{
830 struct rq *rq = cpu_rq(smp_processor_id());
831 u64 now = sched_clock();
832
833 rq->idle_clock += delta_ns;
834 /*
835 * Override the previous timestamp and ignore all
836 * sched_clock() deltas that occured while we idled,
837 * and use the PM-provided delta_ns to advance the
838 * rq clock:
839 */
840 spin_lock(&rq->lock);
841 rq->prev_clock_raw = now;
842 rq->clock += delta_ns;
843 spin_unlock(&rq->lock);
Guillaume Chazarain782daee2008-01-25 21:08:33 +0100844 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200845}
846EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200847
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100848static void __resched_task(struct task_struct *p, int tif_bit);
849
850static inline void resched_task(struct task_struct *p)
851{
852 __resched_task(p, TIF_NEED_RESCHED);
853}
854
855#ifdef CONFIG_SCHED_HRTICK
856/*
857 * Use HR-timers to deliver accurate preemption points.
858 *
859 * Its all a bit involved since we cannot program an hrt while holding the
860 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
861 * reschedule event.
862 *
863 * When we get rescheduled we reprogram the hrtick_timer outside of the
864 * rq->lock.
865 */
866static inline void resched_hrt(struct task_struct *p)
867{
868 __resched_task(p, TIF_HRTICK_RESCHED);
869}
870
871static inline void resched_rq(struct rq *rq)
872{
873 unsigned long flags;
874
875 spin_lock_irqsave(&rq->lock, flags);
876 resched_task(rq->curr);
877 spin_unlock_irqrestore(&rq->lock, flags);
878}
879
880enum {
881 HRTICK_SET, /* re-programm hrtick_timer */
882 HRTICK_RESET, /* not a new slice */
883};
884
885/*
886 * Use hrtick when:
887 * - enabled by features
888 * - hrtimer is actually high res
889 */
890static inline int hrtick_enabled(struct rq *rq)
891{
892 if (!sched_feat(HRTICK))
893 return 0;
894 return hrtimer_is_hres_active(&rq->hrtick_timer);
895}
896
897/*
898 * Called to set the hrtick timer state.
899 *
900 * called with rq->lock held and irqs disabled
901 */
902static void hrtick_start(struct rq *rq, u64 delay, int reset)
903{
904 assert_spin_locked(&rq->lock);
905
906 /*
907 * preempt at: now + delay
908 */
909 rq->hrtick_expire =
910 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
911 /*
912 * indicate we need to program the timer
913 */
914 __set_bit(HRTICK_SET, &rq->hrtick_flags);
915 if (reset)
916 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
917
918 /*
919 * New slices are called from the schedule path and don't need a
920 * forced reschedule.
921 */
922 if (reset)
923 resched_hrt(rq->curr);
924}
925
926static void hrtick_clear(struct rq *rq)
927{
928 if (hrtimer_active(&rq->hrtick_timer))
929 hrtimer_cancel(&rq->hrtick_timer);
930}
931
932/*
933 * Update the timer from the possible pending state.
934 */
935static void hrtick_set(struct rq *rq)
936{
937 ktime_t time;
938 int set, reset;
939 unsigned long flags;
940
941 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
942
943 spin_lock_irqsave(&rq->lock, flags);
944 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
945 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
946 time = rq->hrtick_expire;
947 clear_thread_flag(TIF_HRTICK_RESCHED);
948 spin_unlock_irqrestore(&rq->lock, flags);
949
950 if (set) {
951 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
952 if (reset && !hrtimer_active(&rq->hrtick_timer))
953 resched_rq(rq);
954 } else
955 hrtick_clear(rq);
956}
957
958/*
959 * High-resolution timer tick.
960 * Runs from hardirq context with interrupts disabled.
961 */
962static enum hrtimer_restart hrtick(struct hrtimer *timer)
963{
964 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
965
966 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
967
968 spin_lock(&rq->lock);
969 __update_rq_clock(rq);
970 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
971 spin_unlock(&rq->lock);
972
973 return HRTIMER_NORESTART;
974}
975
976static inline void init_rq_hrtick(struct rq *rq)
977{
978 rq->hrtick_flags = 0;
979 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
980 rq->hrtick_timer.function = hrtick;
981 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
982}
983
984void hrtick_resched(void)
985{
986 struct rq *rq;
987 unsigned long flags;
988
989 if (!test_thread_flag(TIF_HRTICK_RESCHED))
990 return;
991
992 local_irq_save(flags);
993 rq = cpu_rq(smp_processor_id());
994 hrtick_set(rq);
995 local_irq_restore(flags);
996}
997#else
998static inline void hrtick_clear(struct rq *rq)
999{
1000}
1001
1002static inline void hrtick_set(struct rq *rq)
1003{
1004}
1005
1006static inline void init_rq_hrtick(struct rq *rq)
1007{
1008}
1009
1010void hrtick_resched(void)
1011{
1012}
1013#endif
1014
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001015/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001016 * resched_task - mark a task 'to be rescheduled now'.
1017 *
1018 * On UP this means the setting of the need_resched flag, on SMP it
1019 * might also involve a cross-CPU call to trigger the scheduler on
1020 * the target CPU.
1021 */
1022#ifdef CONFIG_SMP
1023
1024#ifndef tsk_is_polling
1025#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1026#endif
1027
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001028static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001029{
1030 int cpu;
1031
1032 assert_spin_locked(&task_rq(p)->lock);
1033
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001034 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001035 return;
1036
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001037 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001038
1039 cpu = task_cpu(p);
1040 if (cpu == smp_processor_id())
1041 return;
1042
1043 /* NEED_RESCHED must be visible before we test polling */
1044 smp_mb();
1045 if (!tsk_is_polling(p))
1046 smp_send_reschedule(cpu);
1047}
1048
1049static void resched_cpu(int cpu)
1050{
1051 struct rq *rq = cpu_rq(cpu);
1052 unsigned long flags;
1053
1054 if (!spin_trylock_irqsave(&rq->lock, flags))
1055 return;
1056 resched_task(cpu_curr(cpu));
1057 spin_unlock_irqrestore(&rq->lock, flags);
1058}
1059#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001060static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001061{
1062 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001063 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001064}
1065#endif
1066
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001067#if BITS_PER_LONG == 32
1068# define WMULT_CONST (~0UL)
1069#else
1070# define WMULT_CONST (1UL << 32)
1071#endif
1072
1073#define WMULT_SHIFT 32
1074
Ingo Molnar194081e2007-08-09 11:16:51 +02001075/*
1076 * Shift right and round:
1077 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001078#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001079
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001080static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001081calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1082 struct load_weight *lw)
1083{
1084 u64 tmp;
1085
1086 if (unlikely(!lw->inv_weight))
Ingo Molnar27d11722008-03-14 22:20:01 +01001087 lw->inv_weight = (WMULT_CONST-lw->weight/2) / (lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001088
1089 tmp = (u64)delta_exec * weight;
1090 /*
1091 * Check whether we'd overflow the 64-bit multiplication:
1092 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001093 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001094 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001095 WMULT_SHIFT/2);
1096 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001097 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001098
Ingo Molnarecf691d2007-08-02 17:41:40 +02001099 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001100}
1101
1102static inline unsigned long
1103calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
1104{
1105 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
1106}
1107
Ingo Molnar10919852007-10-15 17:00:04 +02001108static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001109{
1110 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001111 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001112}
1113
Ingo Molnar10919852007-10-15 17:00:04 +02001114static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001115{
1116 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001117 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001118}
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001121 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1122 * of tasks with abnormal "nice" values across CPUs the contribution that
1123 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001124 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001125 * scaled version of the new time slice allocation that they receive on time
1126 * slice expiry etc.
1127 */
1128
Ingo Molnardd41f592007-07-09 18:51:59 +02001129#define WEIGHT_IDLEPRIO 2
1130#define WMULT_IDLEPRIO (1 << 31)
1131
1132/*
1133 * Nice levels are multiplicative, with a gentle 10% change for every
1134 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1135 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1136 * that remained on nice 0.
1137 *
1138 * The "10% effect" is relative and cumulative: from _any_ nice level,
1139 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee62007-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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 success = 1;
1859
1860out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01001861 check_preempt_curr(rq, p);
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01001864#ifdef CONFIG_SMP
1865 if (p->sched_class->task_wake_up)
1866 p->sched_class->task_wake_up(rq, p);
1867#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868out:
1869 task_rq_unlock(rq, &flags);
1870
1871 return success;
1872}
1873
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001874int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001876 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878EXPORT_SYMBOL(wake_up_process);
1879
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001880int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
1882 return try_to_wake_up(p, state, 0);
1883}
1884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885/*
1886 * Perform scheduler related setup for a newly forked process p.
1887 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001888 *
1889 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001891static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
Ingo Molnardd41f592007-07-09 18:51:59 +02001893 p->se.exec_start = 0;
1894 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001895 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01001896 p->se.last_wakeup = 0;
1897 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001898
1899#ifdef CONFIG_SCHEDSTATS
1900 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001901 p->se.sum_sleep_runtime = 0;
1902 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001903 p->se.block_start = 0;
1904 p->se.sleep_max = 0;
1905 p->se.block_max = 0;
1906 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02001907 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001908 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001909#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001910
Peter Zijlstrafa717062008-01-25 21:08:27 +01001911 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02001912 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07001913
Avi Kivitye107be32007-07-26 13:40:43 +02001914#ifdef CONFIG_PREEMPT_NOTIFIERS
1915 INIT_HLIST_HEAD(&p->preempt_notifiers);
1916#endif
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 /*
1919 * We mark the process as running here, but have not actually
1920 * inserted it onto the runqueue yet. This guarantees that
1921 * nobody will actually run it, and a signal or other external
1922 * event cannot wake it up and insert it on the runqueue either.
1923 */
1924 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001925}
1926
1927/*
1928 * fork()/clone()-time setup:
1929 */
1930void sched_fork(struct task_struct *p, int clone_flags)
1931{
1932 int cpu = get_cpu();
1933
1934 __sched_fork(p);
1935
1936#ifdef CONFIG_SMP
1937 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1938#endif
Ingo Molnar02e4bac22007-10-15 17:00:11 +02001939 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001940
1941 /*
1942 * Make sure we do not leak PI boosting priority to the child:
1943 */
1944 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001945 if (!rt_prio(p->prio))
1946 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001947
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001948#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001949 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001950 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001952#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001953 p->oncpu = 0;
1954#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001956 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08001957 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001959 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960}
1961
1962/*
1963 * wake_up_new_task - wake up a newly created task for the first time.
1964 *
1965 * This function will do some initial scheduler statistics housekeeping
1966 * that must be done for every newly created context, then puts the task
1967 * on the runqueue and wakes it.
1968 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001969void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001972 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02001976 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 p->prio = effective_prio(p);
1979
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02001980 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001981 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02001984 * Let the scheduling class do new task startup
1985 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02001987 p->sched_class->task_new(rq, p);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001988 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001990 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01001991#ifdef CONFIG_SMP
1992 if (p->sched_class->task_wake_up)
1993 p->sched_class->task_wake_up(rq, p);
1994#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001995 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997
Avi Kivitye107be32007-07-26 13:40:43 +02001998#ifdef CONFIG_PREEMPT_NOTIFIERS
1999
2000/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002001 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2002 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002003 */
2004void preempt_notifier_register(struct preempt_notifier *notifier)
2005{
2006 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2007}
2008EXPORT_SYMBOL_GPL(preempt_notifier_register);
2009
2010/**
2011 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002012 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002013 *
2014 * This is safe to call from within a preemption notifier.
2015 */
2016void preempt_notifier_unregister(struct preempt_notifier *notifier)
2017{
2018 hlist_del(&notifier->link);
2019}
2020EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2021
2022static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2023{
2024 struct preempt_notifier *notifier;
2025 struct hlist_node *node;
2026
2027 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2028 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2029}
2030
2031static void
2032fire_sched_out_preempt_notifiers(struct task_struct *curr,
2033 struct task_struct *next)
2034{
2035 struct preempt_notifier *notifier;
2036 struct hlist_node *node;
2037
2038 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2039 notifier->ops->sched_out(notifier, next);
2040}
2041
2042#else
2043
2044static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2045{
2046}
2047
2048static void
2049fire_sched_out_preempt_notifiers(struct task_struct *curr,
2050 struct task_struct *next)
2051{
2052}
2053
2054#endif
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002057 * prepare_task_switch - prepare to switch tasks
2058 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002059 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002060 * @next: the task we are going to switch to.
2061 *
2062 * This is called with the rq lock held and interrupts off. It must
2063 * be paired with a subsequent finish_task_switch after the context
2064 * switch.
2065 *
2066 * prepare_task_switch sets up locking and calls architecture specific
2067 * hooks.
2068 */
Avi Kivitye107be32007-07-26 13:40:43 +02002069static inline void
2070prepare_task_switch(struct rq *rq, struct task_struct *prev,
2071 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002072{
Avi Kivitye107be32007-07-26 13:40:43 +02002073 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002074 prepare_lock_switch(rq, next);
2075 prepare_arch_switch(next);
2076}
2077
2078/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002080 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 * @prev: the thread we just switched away from.
2082 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002083 * finish_task_switch must be called after the context switch, paired
2084 * with a prepare_task_switch call before the context switch.
2085 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2086 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 *
2088 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002089 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 * with the lock held can cause deadlocks; see schedule() for
2091 * details.)
2092 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002093static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 __releases(rq->lock)
2095{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002097 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 rq->prev_mm = NULL;
2100
2101 /*
2102 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002103 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002104 * schedule one last time. The schedule call will never return, and
2105 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002106 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 * still held, otherwise prev could be scheduled on another cpu, die
2108 * there before we look at prev->state, and then the reference would
2109 * be dropped twice.
2110 * Manfred Spraul <manfred@colorfullife.com>
2111 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002112 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002113 finish_arch_switch(prev);
2114 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002115#ifdef CONFIG_SMP
2116 if (current->sched_class->post_schedule)
2117 current->sched_class->post_schedule(rq);
2118#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002119
Avi Kivitye107be32007-07-26 13:40:43 +02002120 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 if (mm)
2122 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002123 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002124 /*
2125 * Remove function-return probe instances associated with this
2126 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002127 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002128 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
2132
2133/**
2134 * schedule_tail - first thing a freshly forked thread must call.
2135 * @prev: the thread we just switched away from.
2136 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002137asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 __releases(rq->lock)
2139{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002140 struct rq *rq = this_rq();
2141
Nick Piggin4866cde2005-06-25 14:57:23 -07002142 finish_task_switch(rq, prev);
2143#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2144 /* In this case, finish_task_switch does not reenable preemption */
2145 preempt_enable();
2146#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002148 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149}
2150
2151/*
2152 * context_switch - switch to the new MM and the new
2153 * thread's register state.
2154 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002155static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002156context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002157 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
Ingo Molnardd41f592007-07-09 18:51:59 +02002159 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Avi Kivitye107be32007-07-26 13:40:43 +02002161 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002162 mm = next->mm;
2163 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002164 /*
2165 * For paravirt, this is coupled with an exit in switch_to to
2166 * combine the page table reload and the switch backend into
2167 * one hypercall.
2168 */
2169 arch_enter_lazy_cpu_mode();
2170
Ingo Molnardd41f592007-07-09 18:51:59 +02002171 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 next->active_mm = oldmm;
2173 atomic_inc(&oldmm->mm_count);
2174 enter_lazy_tlb(oldmm, next);
2175 } else
2176 switch_mm(oldmm, mm, next);
2177
Ingo Molnardd41f592007-07-09 18:51:59 +02002178 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 rq->prev_mm = oldmm;
2181 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002182 /*
2183 * Since the runqueue lock will be released by the next
2184 * task (which is an invalid locking op but in the case
2185 * of the scheduler it's an obvious special-case), so we
2186 * do an early lockdep release here:
2187 */
2188#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002189 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002190#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192 /* Here we just switch the register state and the stack. */
2193 switch_to(prev, next, prev);
2194
Ingo Molnardd41f592007-07-09 18:51:59 +02002195 barrier();
2196 /*
2197 * this_rq must be evaluated again because prev may have moved
2198 * CPUs since it called schedule(), thus the 'rq' on its stack
2199 * frame will be invalid.
2200 */
2201 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202}
2203
2204/*
2205 * nr_running, nr_uninterruptible and nr_context_switches:
2206 *
2207 * externally visible scheduler statistics: current number of runnable
2208 * threads, current number of uninterruptible-sleeping threads, total
2209 * number of context switches performed since bootup.
2210 */
2211unsigned long nr_running(void)
2212{
2213 unsigned long i, sum = 0;
2214
2215 for_each_online_cpu(i)
2216 sum += cpu_rq(i)->nr_running;
2217
2218 return sum;
2219}
2220
2221unsigned long nr_uninterruptible(void)
2222{
2223 unsigned long i, sum = 0;
2224
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002225 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 sum += cpu_rq(i)->nr_uninterruptible;
2227
2228 /*
2229 * Since we read the counters lockless, it might be slightly
2230 * inaccurate. Do not allow it to go below zero though:
2231 */
2232 if (unlikely((long)sum < 0))
2233 sum = 0;
2234
2235 return sum;
2236}
2237
2238unsigned long long nr_context_switches(void)
2239{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002240 int i;
2241 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002243 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 sum += cpu_rq(i)->nr_switches;
2245
2246 return sum;
2247}
2248
2249unsigned long nr_iowait(void)
2250{
2251 unsigned long i, sum = 0;
2252
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002253 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2255
2256 return sum;
2257}
2258
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002259unsigned long nr_active(void)
2260{
2261 unsigned long i, running = 0, uninterruptible = 0;
2262
2263 for_each_online_cpu(i) {
2264 running += cpu_rq(i)->nr_running;
2265 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2266 }
2267
2268 if (unlikely((long)uninterruptible < 0))
2269 uninterruptible = 0;
2270
2271 return running + uninterruptible;
2272}
2273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002275 * Update rq->cpu_load[] statistics. This function is usually called every
2276 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002277 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002278static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002279{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002280 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002281 int i, scale;
2282
2283 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002284
2285 /* Update our load: */
2286 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2287 unsigned long old_load, new_load;
2288
2289 /* scale is effectively 1 << i now, and >> i divides by scale */
2290
2291 old_load = this_rq->cpu_load[i];
2292 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002293 /*
2294 * Round up the averaging division if load is increasing. This
2295 * prevents us from getting stuck on 9 if the load is 10, for
2296 * example.
2297 */
2298 if (new_load > old_load)
2299 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002300 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2301 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002302}
2303
Ingo Molnardd41f592007-07-09 18:51:59 +02002304#ifdef CONFIG_SMP
2305
Ingo Molnar48f24c42006-07-03 00:25:40 -07002306/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 * double_rq_lock - safely lock two runqueues
2308 *
2309 * Note this does not disable interrupts like task_rq_lock,
2310 * you need to do so manually before calling.
2311 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002312static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 __acquires(rq1->lock)
2314 __acquires(rq2->lock)
2315{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002316 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 if (rq1 == rq2) {
2318 spin_lock(&rq1->lock);
2319 __acquire(rq2->lock); /* Fake it out ;) */
2320 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002321 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 spin_lock(&rq1->lock);
2323 spin_lock(&rq2->lock);
2324 } else {
2325 spin_lock(&rq2->lock);
2326 spin_lock(&rq1->lock);
2327 }
2328 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002329 update_rq_clock(rq1);
2330 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331}
2332
2333/*
2334 * double_rq_unlock - safely unlock two runqueues
2335 *
2336 * Note this does not restore interrupts like task_rq_unlock,
2337 * you need to do so manually after calling.
2338 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002339static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 __releases(rq1->lock)
2341 __releases(rq2->lock)
2342{
2343 spin_unlock(&rq1->lock);
2344 if (rq1 != rq2)
2345 spin_unlock(&rq2->lock);
2346 else
2347 __release(rq2->lock);
2348}
2349
2350/*
2351 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2352 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002353static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 __releases(this_rq->lock)
2355 __acquires(busiest->lock)
2356 __acquires(this_rq->lock)
2357{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002358 int ret = 0;
2359
Kirill Korotaev054b9102006-12-10 02:20:11 -08002360 if (unlikely(!irqs_disabled())) {
2361 /* printk() doesn't work good under rq->lock */
2362 spin_unlock(&this_rq->lock);
2363 BUG_ON(1);
2364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002366 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 spin_unlock(&this_rq->lock);
2368 spin_lock(&busiest->lock);
2369 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002370 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 } else
2372 spin_lock(&busiest->lock);
2373 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002374 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375}
2376
2377/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 * If dest_cpu is allowed for this process, migrate the task to it.
2379 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002380 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 * the cpu_allowed mask is restored.
2382 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002383static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002385 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002387 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389 rq = task_rq_lock(p, &flags);
2390 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2391 || unlikely(cpu_is_offline(dest_cpu)))
2392 goto out;
2393
2394 /* force the process onto the specified CPU */
2395 if (migrate_task(p, dest_cpu, &req)) {
2396 /* Need to wait for migration thread (might exit: take ref). */
2397 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 get_task_struct(mt);
2400 task_rq_unlock(rq, &flags);
2401 wake_up_process(mt);
2402 put_task_struct(mt);
2403 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 return;
2406 }
2407out:
2408 task_rq_unlock(rq, &flags);
2409}
2410
2411/*
Nick Piggin476d1392005-06-25 14:57:29 -07002412 * sched_exec - execve() is a valuable balancing opportunity, because at
2413 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 */
2415void sched_exec(void)
2416{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002418 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002420 if (new_cpu != this_cpu)
2421 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422}
2423
2424/*
2425 * pull_task - move a task from a remote runqueue to the local runqueue.
2426 * Both runqueues must be locked.
2427 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002428static void pull_task(struct rq *src_rq, struct task_struct *p,
2429 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002431 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002433 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 /*
2435 * Note that idle threads have a prio of MAX_PRIO, for this test
2436 * to be always true for them.
2437 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002438 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439}
2440
2441/*
2442 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2443 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002444static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002445int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002446 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002447 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
2449 /*
2450 * We do not migrate tasks that are:
2451 * 1) running (obviously), or
2452 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2453 * 3) are cache-hot on their current CPU.
2454 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002455 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2456 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002458 }
Nick Piggin81026792005-06-25 14:57:07 -07002459 *all_pinned = 0;
2460
Ingo Molnarcc367732007-10-15 17:00:18 +02002461 if (task_running(rq, p)) {
2462 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002463 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Ingo Molnarda84d962007-10-15 17:00:18 +02002466 /*
2467 * Aggressive migration if:
2468 * 1) task is cache cold, or
2469 * 2) too many balance attempts have failed.
2470 */
2471
Ingo Molnar6bc16652007-10-15 17:00:18 +02002472 if (!task_hot(p, rq->clock, sd) ||
2473 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002474#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002475 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002476 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002477 schedstat_inc(p, se.nr_forced_migrations);
2478 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002479#endif
2480 return 1;
2481 }
2482
Ingo Molnarcc367732007-10-15 17:00:18 +02002483 if (task_hot(p, rq->clock, sd)) {
2484 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002485 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 return 1;
2488}
2489
Peter Williamse1d14842007-10-24 18:23:51 +02002490static unsigned long
2491balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2492 unsigned long max_load_move, struct sched_domain *sd,
2493 enum cpu_idle_type idle, int *all_pinned,
2494 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002495{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002496 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002497 struct task_struct *p;
2498 long rem_load_move = max_load_move;
2499
Peter Williamse1d14842007-10-24 18:23:51 +02002500 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002501 goto out;
2502
2503 pinned = 1;
2504
2505 /*
2506 * Start the load-balancing iterator:
2507 */
2508 p = iterator->start(iterator->arg);
2509next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002510 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002511 goto out;
2512 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002513 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002514 * skip a task if it will be the highest priority task (i.e. smallest
2515 * prio value) on its new queue regardless of its load weight
2516 */
2517 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2518 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002519 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002520 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002521 p = iterator->next(iterator->arg);
2522 goto next;
2523 }
2524
2525 pull_task(busiest, p, this_rq, this_cpu);
2526 pulled++;
2527 rem_load_move -= p->se.load.weight;
2528
2529 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002530 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002531 */
Peter Williamse1d14842007-10-24 18:23:51 +02002532 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002533 if (p->prio < *this_best_prio)
2534 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002535 p = iterator->next(iterator->arg);
2536 goto next;
2537 }
2538out:
2539 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002540 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002541 * so we can safely collect pull_task() stats here rather than
2542 * inside pull_task().
2543 */
2544 schedstat_add(sd, lb_gained[idle], pulled);
2545
2546 if (all_pinned)
2547 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002548
2549 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002550}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552/*
Peter Williams43010652007-08-09 11:16:46 +02002553 * move_tasks tries to move up to max_load_move weighted load from busiest to
2554 * this_rq, as part of a balancing operation within domain "sd".
2555 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 *
2557 * Called with both runqueues locked.
2558 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002559static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002560 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002561 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002562 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002564 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002565 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002566 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Ingo Molnardd41f592007-07-09 18:51:59 +02002568 do {
Peter Williams43010652007-08-09 11:16:46 +02002569 total_load_moved +=
2570 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002571 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002572 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002573 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002574 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
Peter Williams43010652007-08-09 11:16:46 +02002576 return total_load_moved > 0;
2577}
2578
Peter Williamse1d14842007-10-24 18:23:51 +02002579static int
2580iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2581 struct sched_domain *sd, enum cpu_idle_type idle,
2582 struct rq_iterator *iterator)
2583{
2584 struct task_struct *p = iterator->start(iterator->arg);
2585 int pinned = 0;
2586
2587 while (p) {
2588 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2589 pull_task(busiest, p, this_rq, this_cpu);
2590 /*
2591 * Right now, this is only the second place pull_task()
2592 * is called, so we can safely collect pull_task()
2593 * stats here rather than inside pull_task().
2594 */
2595 schedstat_inc(sd, lb_gained[idle]);
2596
2597 return 1;
2598 }
2599 p = iterator->next(iterator->arg);
2600 }
2601
2602 return 0;
2603}
2604
Peter Williams43010652007-08-09 11:16:46 +02002605/*
2606 * move_one_task tries to move exactly one task from busiest to this_rq, as
2607 * part of active balancing operations within "domain".
2608 * Returns 1 if successful and 0 otherwise.
2609 *
2610 * Called with both runqueues locked.
2611 */
2612static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2613 struct sched_domain *sd, enum cpu_idle_type idle)
2614{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002615 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002616
2617 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002618 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002619 return 1;
2620
2621 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622}
2623
2624/*
2625 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002626 * domain. It calculates and returns the amount of weighted load which
2627 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 */
2629static struct sched_group *
2630find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002631 unsigned long *imbalance, enum cpu_idle_type idle,
2632 int *sd_idle, cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633{
2634 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2635 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002636 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002637 unsigned long busiest_load_per_task, busiest_nr_running;
2638 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002639 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002640#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2641 int power_savings_balance = 1;
2642 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2643 unsigned long min_nr_running = ULONG_MAX;
2644 struct sched_group *group_min = NULL, *group_leader = NULL;
2645#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002648 busiest_load_per_task = busiest_nr_running = 0;
2649 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002650 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002651 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002652 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002653 load_idx = sd->newidle_idx;
2654 else
2655 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
2657 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002658 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 int local_group;
2660 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002661 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002662 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002663 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
2665 local_group = cpu_isset(this_cpu, group->cpumask);
2666
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002667 if (local_group)
2668 balance_cpu = first_cpu(group->cpumask);
2669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002671 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002672 max_cpu_load = 0;
2673 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
2675 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002676 struct rq *rq;
2677
2678 if (!cpu_isset(i, *cpus))
2679 continue;
2680
2681 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002682
Suresh Siddha9439aab2007-07-19 21:28:35 +02002683 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002684 *sd_idle = 0;
2685
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002687 if (local_group) {
2688 if (idle_cpu(i) && !first_idle_cpu) {
2689 first_idle_cpu = 1;
2690 balance_cpu = i;
2691 }
2692
Nick Piggina2000572006-02-10 01:51:02 -08002693 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002694 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002695 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002696 if (load > max_cpu_load)
2697 max_cpu_load = load;
2698 if (min_cpu_load > load)
2699 min_cpu_load = load;
2700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
2702 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002703 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002704 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 }
2706
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002707 /*
2708 * First idle cpu or the first cpu(busiest) in this sched group
2709 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002710 * domains. In the newly idle case, we will allow all the cpu's
2711 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002712 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002713 if (idle != CPU_NEWLY_IDLE && local_group &&
2714 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002715 *balance = 0;
2716 goto ret;
2717 }
2718
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002720 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
2722 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002723 avg_load = sg_div_cpu_power(group,
2724 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
Ken Chen908a7c12007-10-17 16:55:11 +02002726 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
2727 __group_imb = 1;
2728
Eric Dumazet5517d862007-05-08 00:32:57 -07002729 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 if (local_group) {
2732 this_load = avg_load;
2733 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002734 this_nr_running = sum_nr_running;
2735 this_load_per_task = sum_weighted_load;
2736 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02002737 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 max_load = avg_load;
2739 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002740 busiest_nr_running = sum_nr_running;
2741 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02002742 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002744
2745#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2746 /*
2747 * Busy processors will not participate in power savings
2748 * balance.
2749 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002750 if (idle == CPU_NOT_IDLE ||
2751 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2752 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002753
2754 /*
2755 * If the local group is idle or completely loaded
2756 * no need to do power savings balance at this domain
2757 */
2758 if (local_group && (this_nr_running >= group_capacity ||
2759 !this_nr_running))
2760 power_savings_balance = 0;
2761
Ingo Molnardd41f592007-07-09 18:51:59 +02002762 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002763 * If a group is already running at full capacity or idle,
2764 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002765 */
2766 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002767 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002768 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002769
Ingo Molnardd41f592007-07-09 18:51:59 +02002770 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002771 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002772 * This is the group from where we need to pick up the load
2773 * for saving power
2774 */
2775 if ((sum_nr_running < min_nr_running) ||
2776 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002777 first_cpu(group->cpumask) <
2778 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002779 group_min = group;
2780 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002781 min_load_per_task = sum_weighted_load /
2782 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002783 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002784
Ingo Molnardd41f592007-07-09 18:51:59 +02002785 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002786 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002787 * capacity but still has some space to pick up some load
2788 * from other group and save more power
2789 */
2790 if (sum_nr_running <= group_capacity - 1) {
2791 if (sum_nr_running > leader_nr_running ||
2792 (sum_nr_running == leader_nr_running &&
2793 first_cpu(group->cpumask) >
2794 first_cpu(group_leader->cpumask))) {
2795 group_leader = group;
2796 leader_nr_running = sum_nr_running;
2797 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002798 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002799group_next:
2800#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 group = group->next;
2802 } while (group != sd->groups);
2803
Peter Williams2dd73a42006-06-27 02:54:34 -07002804 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 goto out_balanced;
2806
2807 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2808
2809 if (this_load >= avg_load ||
2810 100*max_load <= sd->imbalance_pct*this_load)
2811 goto out_balanced;
2812
Peter Williams2dd73a42006-06-27 02:54:34 -07002813 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002814 if (group_imb)
2815 busiest_load_per_task = min(busiest_load_per_task, avg_load);
2816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 /*
2818 * We're trying to get all the cpus to the average_load, so we don't
2819 * want to push ourselves above the average load, nor do we wish to
2820 * reduce the max loaded cpu below the average load, as either of these
2821 * actions would just result in more rebalancing later, and ping-pong
2822 * tasks around. Thus we look for the minimum possible imbalance.
2823 * Negative imbalances (*we* are more loaded than anyone else) will
2824 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002825 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 * appear as very large values with unsigned longs.
2827 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002828 if (max_load <= busiest_load_per_task)
2829 goto out_balanced;
2830
2831 /*
2832 * In the presence of smp nice balancing, certain scenarios can have
2833 * max load less than avg load(as we skip the groups at or below
2834 * its cpu_power, while calculating max_load..)
2835 */
2836 if (max_load < avg_load) {
2837 *imbalance = 0;
2838 goto small_imbalance;
2839 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002840
2841 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002842 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07002845 *imbalance = min(max_pull * busiest->__cpu_power,
2846 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 / SCHED_LOAD_SCALE;
2848
Peter Williams2dd73a42006-06-27 02:54:34 -07002849 /*
2850 * if *imbalance is less than the average load per runnable task
2851 * there is no gaurantee that any tasks will be moved so we'll have
2852 * a think about bumping its value to force at least one task to be
2853 * moved
2854 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002855 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002856 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002857 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Peter Williams2dd73a42006-06-27 02:54:34 -07002859small_imbalance:
2860 pwr_move = pwr_now = 0;
2861 imbn = 2;
2862 if (this_nr_running) {
2863 this_load_per_task /= this_nr_running;
2864 if (busiest_load_per_task > this_load_per_task)
2865 imbn = 1;
2866 } else
2867 this_load_per_task = SCHED_LOAD_SCALE;
2868
Ingo Molnardd41f592007-07-09 18:51:59 +02002869 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
2870 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002871 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 return busiest;
2873 }
2874
2875 /*
2876 * OK, we don't have enough imbalance to justify moving tasks,
2877 * however we may be able to increase total CPU power used by
2878 * moving them.
2879 */
2880
Eric Dumazet5517d862007-05-08 00:32:57 -07002881 pwr_now += busiest->__cpu_power *
2882 min(busiest_load_per_task, max_load);
2883 pwr_now += this->__cpu_power *
2884 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 pwr_now /= SCHED_LOAD_SCALE;
2886
2887 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07002888 tmp = sg_div_cpu_power(busiest,
2889 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07002891 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07002892 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
2894 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07002895 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002896 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07002897 tmp = sg_div_cpu_power(this,
2898 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 else
Eric Dumazet5517d862007-05-08 00:32:57 -07002900 tmp = sg_div_cpu_power(this,
2901 busiest_load_per_task * SCHED_LOAD_SCALE);
2902 pwr_move += this->__cpu_power *
2903 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 pwr_move /= SCHED_LOAD_SCALE;
2905
2906 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002907 if (pwr_move > pwr_now)
2908 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 }
2910
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 return busiest;
2912
2913out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002914#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002915 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002916 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002918 if (this == group_leader && group_leader != group_min) {
2919 *imbalance = min_load_per_task;
2920 return group_min;
2921 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002922#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002923ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 *imbalance = 0;
2925 return NULL;
2926}
2927
2928/*
2929 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2930 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002931static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002932find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002933 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002935 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002936 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 int i;
2938
2939 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002940 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002941
2942 if (!cpu_isset(i, *cpus))
2943 continue;
2944
Ingo Molnar48f24c42006-07-03 00:25:40 -07002945 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02002946 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Ingo Molnardd41f592007-07-09 18:51:59 +02002948 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002949 continue;
2950
Ingo Molnardd41f592007-07-09 18:51:59 +02002951 if (wl > max_load) {
2952 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002953 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 }
2955 }
2956
2957 return busiest;
2958}
2959
2960/*
Nick Piggin77391d72005-06-25 14:57:30 -07002961 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2962 * so long as it is large enough.
2963 */
2964#define MAX_PINNED_INTERVAL 512
2965
2966/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2968 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002970static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002971 struct sched_domain *sd, enum cpu_idle_type idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002972 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973{
Peter Williams43010652007-08-09 11:16:46 +02002974 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002977 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002978 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002979 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002980
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002981 /*
2982 * When power savings policy is enabled for the parent domain, idle
2983 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02002984 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002985 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002986 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002987 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002988 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002989 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Ingo Molnar2d723762007-10-15 17:00:12 +02002991 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002993redo:
2994 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002995 &cpus, balance);
2996
Chen, Kenneth W06066712006-12-10 02:20:35 -08002997 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002998 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 if (!group) {
3001 schedstat_inc(sd, lb_nobusyg[idle]);
3002 goto out_balanced;
3003 }
3004
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003005 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 if (!busiest) {
3007 schedstat_inc(sd, lb_nobusyq[idle]);
3008 goto out_balanced;
3009 }
3010
Nick Piggindb935db2005-06-25 14:57:11 -07003011 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
3013 schedstat_add(sd, lb_imbalance[idle], imbalance);
3014
Peter Williams43010652007-08-09 11:16:46 +02003015 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 if (busiest->nr_running > 1) {
3017 /*
3018 * Attempt to move tasks. If find_busiest_group has found
3019 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003020 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 * correctly treated as an imbalance.
3022 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003023 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003024 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003025 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003026 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003027 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003028 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003029
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003030 /*
3031 * some other cpu did the load balance for us.
3032 */
Peter Williams43010652007-08-09 11:16:46 +02003033 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003034 resched_cpu(this_cpu);
3035
Nick Piggin81026792005-06-25 14:57:07 -07003036 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003037 if (unlikely(all_pinned)) {
3038 cpu_clear(cpu_of(busiest), cpus);
3039 if (!cpus_empty(cpus))
3040 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003041 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 }
Nick Piggin81026792005-06-25 14:57:07 -07003044
Peter Williams43010652007-08-09 11:16:46 +02003045 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 schedstat_inc(sd, lb_failed[idle]);
3047 sd->nr_balance_failed++;
3048
3049 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003051 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003052
3053 /* don't kick the migration_thread, if the curr
3054 * task on busiest cpu can't be moved to this_cpu
3055 */
3056 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003057 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003058 all_pinned = 1;
3059 goto out_one_pinned;
3060 }
3061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 if (!busiest->active_balance) {
3063 busiest->active_balance = 1;
3064 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003065 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003067 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003068 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 wake_up_process(busiest->migration_thread);
3070
3071 /*
3072 * We've kicked active balancing, reset the failure
3073 * counter.
3074 */
Nick Piggin39507452005-06-25 14:57:09 -07003075 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 }
Nick Piggin81026792005-06-25 14:57:07 -07003077 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 sd->nr_balance_failed = 0;
3079
Nick Piggin81026792005-06-25 14:57:07 -07003080 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 /* We were unbalanced, so reset the balancing interval */
3082 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003083 } else {
3084 /*
3085 * If we've begun active balancing, start to back off. This
3086 * case may not be covered by the all_pinned logic if there
3087 * is only 1 task on the busy runqueue (because we don't call
3088 * move_tasks).
3089 */
3090 if (sd->balance_interval < sd->max_interval)
3091 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 }
3093
Peter Williams43010652007-08-09 11:16:46 +02003094 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003095 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003096 return -1;
Peter Williams43010652007-08-09 11:16:46 +02003097 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
3099out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 schedstat_inc(sd, lb_balanced[idle]);
3101
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003102 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003103
3104out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003106 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3107 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 sd->balance_interval *= 2;
3109
Ingo Molnar48f24c42006-07-03 00:25:40 -07003110 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003111 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003112 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 return 0;
3114}
3115
3116/*
3117 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3118 * tasks if there is an imbalance.
3119 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003120 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 * this_rq is locked.
3122 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003123static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003124load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125{
3126 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003127 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003129 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003130 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003131 int all_pinned = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003132 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07003133
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003134 /*
3135 * When power savings policy is enabled for the parent domain, idle
3136 * sibling can pick up load irrespective of busy siblings. In this case,
3137 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003138 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003139 */
3140 if (sd->flags & SD_SHARE_CPUPOWER &&
3141 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003142 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
Ingo Molnar2d723762007-10-15 17:00:12 +02003144 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003145redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003146 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003147 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003149 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003150 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 }
3152
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003153 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003154 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003155 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003156 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003157 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 }
3159
Nick Piggindb935db2005-06-25 14:57:11 -07003160 BUG_ON(busiest == this_rq);
3161
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003162 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003163
Peter Williams43010652007-08-09 11:16:46 +02003164 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003165 if (busiest->nr_running > 1) {
3166 /* Attempt to move tasks */
3167 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003168 /* this_rq->clock is already updated */
3169 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003170 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003171 imbalance, sd, CPU_NEWLY_IDLE,
3172 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003173 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003174
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003175 if (unlikely(all_pinned)) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003176 cpu_clear(cpu_of(busiest), cpus);
3177 if (!cpus_empty(cpus))
3178 goto redo;
3179 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003180 }
3181
Peter Williams43010652007-08-09 11:16:46 +02003182 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003183 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003184 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3185 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003186 return -1;
3187 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003188 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
Peter Williams43010652007-08-09 11:16:46 +02003190 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003191
3192out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003193 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003194 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003195 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003196 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003197 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003198
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003199 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200}
3201
3202/*
3203 * idle_balance is called by schedule() if this_cpu is about to become
3204 * idle. Attempts to pull tasks from other CPUs.
3205 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003206static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207{
3208 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003209 int pulled_task = -1;
3210 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
3212 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003213 unsigned long interval;
3214
3215 if (!(sd->flags & SD_LOAD_BALANCE))
3216 continue;
3217
3218 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003219 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003220 pulled_task = load_balance_newidle(this_cpu,
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003221 this_rq, sd);
3222
3223 interval = msecs_to_jiffies(sd->balance_interval);
3224 if (time_after(next_balance, sd->last_balance + interval))
3225 next_balance = sd->last_balance + interval;
3226 if (pulled_task)
3227 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003229 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003230 /*
3231 * We are going idle. next_balance may be set based on
3232 * a busy processor. So reset next_balance.
3233 */
3234 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236}
3237
3238/*
3239 * active_load_balance is run by migration threads. It pushes running tasks
3240 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3241 * running on each physical CPU where possible, and avoids physical /
3242 * logical imbalances.
3243 *
3244 * Called with busiest_rq locked.
3245 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003246static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247{
Nick Piggin39507452005-06-25 14:57:09 -07003248 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003249 struct sched_domain *sd;
3250 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003251
Ingo Molnar48f24c42006-07-03 00:25:40 -07003252 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003253 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003254 return;
3255
3256 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
3258 /*
Nick Piggin39507452005-06-25 14:57:09 -07003259 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003260 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003261 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 */
Nick Piggin39507452005-06-25 14:57:09 -07003263 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Nick Piggin39507452005-06-25 14:57:09 -07003265 /* move a task from busiest_rq to target_rq */
3266 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003267 update_rq_clock(busiest_rq);
3268 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269
Nick Piggin39507452005-06-25 14:57:09 -07003270 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003271 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003272 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003273 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003274 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276
Ingo Molnar48f24c42006-07-03 00:25:40 -07003277 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003278 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Peter Williams43010652007-08-09 11:16:46 +02003280 if (move_one_task(target_rq, target_cpu, busiest_rq,
3281 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003282 schedstat_inc(sd, alb_pushed);
3283 else
3284 schedstat_inc(sd, alb_failed);
3285 }
Nick Piggin39507452005-06-25 14:57:09 -07003286 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287}
3288
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003289#ifdef CONFIG_NO_HZ
3290static struct {
3291 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003292 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003293} nohz ____cacheline_aligned = {
3294 .load_balancer = ATOMIC_INIT(-1),
3295 .cpu_mask = CPU_MASK_NONE,
3296};
3297
Christoph Lameter7835b982006-12-10 02:20:22 -08003298/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003299 * This routine will try to nominate the ilb (idle load balancing)
3300 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3301 * load balancing on behalf of all those cpus. If all the cpus in the system
3302 * go into this tickless mode, then there will be no ilb owner (as there is
3303 * no need for one) and all the cpus will sleep till the next wakeup event
3304 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003305 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003306 * For the ilb owner, tick is not stopped. And this tick will be used
3307 * for idle load balancing. ilb owner will still be part of
3308 * nohz.cpu_mask..
3309 *
3310 * While stopping the tick, this cpu will become the ilb owner if there
3311 * is no other owner. And will be the owner till that cpu becomes busy
3312 * or if all cpus in the system stop their ticks at which point
3313 * there is no need for ilb owner.
3314 *
3315 * When the ilb owner becomes busy, it nominates another owner, during the
3316 * next busy scheduler_tick()
3317 */
3318int select_nohz_load_balancer(int stop_tick)
3319{
3320 int cpu = smp_processor_id();
3321
3322 if (stop_tick) {
3323 cpu_set(cpu, nohz.cpu_mask);
3324 cpu_rq(cpu)->in_nohz_recently = 1;
3325
3326 /*
3327 * If we are going offline and still the leader, give up!
3328 */
3329 if (cpu_is_offline(cpu) &&
3330 atomic_read(&nohz.load_balancer) == cpu) {
3331 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3332 BUG();
3333 return 0;
3334 }
3335
3336 /* time for ilb owner also to sleep */
3337 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3338 if (atomic_read(&nohz.load_balancer) == cpu)
3339 atomic_set(&nohz.load_balancer, -1);
3340 return 0;
3341 }
3342
3343 if (atomic_read(&nohz.load_balancer) == -1) {
3344 /* make me the ilb owner */
3345 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3346 return 1;
3347 } else if (atomic_read(&nohz.load_balancer) == cpu)
3348 return 1;
3349 } else {
3350 if (!cpu_isset(cpu, nohz.cpu_mask))
3351 return 0;
3352
3353 cpu_clear(cpu, nohz.cpu_mask);
3354
3355 if (atomic_read(&nohz.load_balancer) == cpu)
3356 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3357 BUG();
3358 }
3359 return 0;
3360}
3361#endif
3362
3363static DEFINE_SPINLOCK(balancing);
3364
3365/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003366 * It checks each scheduling domain to see if it is due to be balanced,
3367 * and initiates a balancing operation if so.
3368 *
3369 * Balancing parameters are set up in arch_init_sched_domains.
3370 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003371static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003372{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003373 int balance = 1;
3374 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003375 unsigned long interval;
3376 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003377 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003378 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003379 int update_next_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003381 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 if (!(sd->flags & SD_LOAD_BALANCE))
3383 continue;
3384
3385 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003386 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 interval *= sd->busy_factor;
3388
3389 /* scale ms to jiffies */
3390 interval = msecs_to_jiffies(interval);
3391 if (unlikely(!interval))
3392 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003393 if (interval > HZ*NR_CPUS/10)
3394 interval = HZ*NR_CPUS/10;
3395
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
Christoph Lameter08c183f2006-12-10 02:20:29 -08003397 if (sd->flags & SD_SERIALIZE) {
3398 if (!spin_trylock(&balancing))
3399 goto out;
3400 }
3401
Christoph Lameterc9819f42006-12-10 02:20:25 -08003402 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003403 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003404 /*
3405 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003406 * longer idle, or one of our SMT siblings is
3407 * not idle.
3408 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003409 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003411 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003413 if (sd->flags & SD_SERIALIZE)
3414 spin_unlock(&balancing);
3415out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003416 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003417 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003418 update_next_balance = 1;
3419 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003420
3421 /*
3422 * Stop the load balance at this level. There is another
3423 * CPU in our sched group which is doing load balancing more
3424 * actively.
3425 */
3426 if (!balance)
3427 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003429
3430 /*
3431 * next_balance will be updated only when there is a need.
3432 * When the cpu is attached to null domain for ex, it will not be
3433 * updated.
3434 */
3435 if (likely(update_next_balance))
3436 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003437}
3438
3439/*
3440 * run_rebalance_domains is triggered when needed from the scheduler tick.
3441 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3442 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3443 */
3444static void run_rebalance_domains(struct softirq_action *h)
3445{
Ingo Molnardd41f592007-07-09 18:51:59 +02003446 int this_cpu = smp_processor_id();
3447 struct rq *this_rq = cpu_rq(this_cpu);
3448 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3449 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003450
Ingo Molnardd41f592007-07-09 18:51:59 +02003451 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003452
3453#ifdef CONFIG_NO_HZ
3454 /*
3455 * If this cpu is the owner for idle load balancing, then do the
3456 * balancing on behalf of the other idle cpus whose ticks are
3457 * stopped.
3458 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003459 if (this_rq->idle_at_tick &&
3460 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003461 cpumask_t cpus = nohz.cpu_mask;
3462 struct rq *rq;
3463 int balance_cpu;
3464
Ingo Molnardd41f592007-07-09 18:51:59 +02003465 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003466 for_each_cpu_mask(balance_cpu, cpus) {
3467 /*
3468 * If this cpu gets work to do, stop the load balancing
3469 * work being done for other cpus. Next load
3470 * balancing owner will pick it up.
3471 */
3472 if (need_resched())
3473 break;
3474
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003475 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003476
3477 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003478 if (time_after(this_rq->next_balance, rq->next_balance))
3479 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003480 }
3481 }
3482#endif
3483}
3484
3485/*
3486 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3487 *
3488 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3489 * idle load balancing owner or decide to stop the periodic load balancing,
3490 * if the whole system is idle.
3491 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003492static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003493{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003494#ifdef CONFIG_NO_HZ
3495 /*
3496 * If we were in the nohz mode recently and busy at the current
3497 * scheduler tick, then check if we need to nominate new idle
3498 * load balancer.
3499 */
3500 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3501 rq->in_nohz_recently = 0;
3502
3503 if (atomic_read(&nohz.load_balancer) == cpu) {
3504 cpu_clear(cpu, nohz.cpu_mask);
3505 atomic_set(&nohz.load_balancer, -1);
3506 }
3507
3508 if (atomic_read(&nohz.load_balancer) == -1) {
3509 /*
3510 * simple selection for now: Nominate the
3511 * first cpu in the nohz list to be the next
3512 * ilb owner.
3513 *
3514 * TBD: Traverse the sched domains and nominate
3515 * the nearest cpu in the nohz.cpu_mask.
3516 */
3517 int ilb = first_cpu(nohz.cpu_mask);
3518
3519 if (ilb != NR_CPUS)
3520 resched_cpu(ilb);
3521 }
3522 }
3523
3524 /*
3525 * If this cpu is idle and doing idle load balancing for all the
3526 * cpus with ticks stopped, is it time for that to stop?
3527 */
3528 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3529 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3530 resched_cpu(cpu);
3531 return;
3532 }
3533
3534 /*
3535 * If this cpu is idle and the idle load balancing is done by
3536 * someone else, then no need raise the SCHED_SOFTIRQ
3537 */
3538 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3539 cpu_isset(cpu, nohz.cpu_mask))
3540 return;
3541#endif
3542 if (time_after_eq(jiffies, rq->next_balance))
3543 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544}
Ingo Molnardd41f592007-07-09 18:51:59 +02003545
3546#else /* CONFIG_SMP */
3547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548/*
3549 * on UP we do not need to balance between CPUs:
3550 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003551static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552{
3553}
Ingo Molnardd41f592007-07-09 18:51:59 +02003554
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555#endif
3556
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557DEFINE_PER_CPU(struct kernel_stat, kstat);
3558
3559EXPORT_PER_CPU_SYMBOL(kstat);
3560
3561/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003562 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3563 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003565unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003568 u64 ns, delta_exec;
3569 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003570
Ingo Molnar41b86e92007-07-09 18:51:58 +02003571 rq = task_rq_lock(p, &flags);
3572 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003573 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003574 update_rq_clock(rq);
3575 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003576 if ((s64)delta_exec > 0)
3577 ns += delta_exec;
3578 }
3579 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003580
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 return ns;
3582}
3583
3584/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 * Account user cpu time to a process.
3586 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 * @cputime: the cpu time spent in user space since the last update
3588 */
3589void account_user_time(struct task_struct *p, cputime_t cputime)
3590{
3591 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3592 cputime64_t tmp;
3593
3594 p->utime = cputime_add(p->utime, cputime);
3595
3596 /* Add user time to cpustat. */
3597 tmp = cputime_to_cputime64(cputime);
3598 if (TASK_NICE(p) > 0)
3599 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3600 else
3601 cpustat->user = cputime64_add(cpustat->user, tmp);
3602}
3603
3604/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003605 * Account guest cpu time to a process.
3606 * @p: the process that the cpu time gets accounted to
3607 * @cputime: the cpu time spent in virtual machine since the last update
3608 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003609static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003610{
3611 cputime64_t tmp;
3612 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3613
3614 tmp = cputime_to_cputime64(cputime);
3615
3616 p->utime = cputime_add(p->utime, cputime);
3617 p->gtime = cputime_add(p->gtime, cputime);
3618
3619 cpustat->user = cputime64_add(cpustat->user, tmp);
3620 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3621}
3622
3623/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003624 * Account scaled user cpu time to a process.
3625 * @p: the process that the cpu time gets accounted to
3626 * @cputime: the cpu time spent in user space since the last update
3627 */
3628void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3629{
3630 p->utimescaled = cputime_add(p->utimescaled, cputime);
3631}
3632
3633/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 * Account system cpu time to a process.
3635 * @p: the process that the cpu time gets accounted to
3636 * @hardirq_offset: the offset to subtract from hardirq_count()
3637 * @cputime: the cpu time spent in kernel space since the last update
3638 */
3639void account_system_time(struct task_struct *p, int hardirq_offset,
3640 cputime_t cputime)
3641{
3642 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003643 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 cputime64_t tmp;
3645
Christian Borntraeger97783852007-11-15 20:57:39 +01003646 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
3647 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 p->stime = cputime_add(p->stime, cputime);
3650
3651 /* Add system time to cpustat. */
3652 tmp = cputime_to_cputime64(cputime);
3653 if (hardirq_count() - hardirq_offset)
3654 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3655 else if (softirq_count())
3656 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003657 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003659 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3661 else
3662 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3663 /* Account for system time used */
3664 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665}
3666
3667/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003668 * Account scaled system cpu time to a process.
3669 * @p: the process that the cpu time gets accounted to
3670 * @hardirq_offset: the offset to subtract from hardirq_count()
3671 * @cputime: the cpu time spent in kernel space since the last update
3672 */
3673void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
3674{
3675 p->stimescaled = cputime_add(p->stimescaled, cputime);
3676}
3677
3678/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 * Account for involuntary wait time.
3680 * @p: the process from which the cpu time has been stolen
3681 * @steal: the cpu time spent in involuntary wait
3682 */
3683void account_steal_time(struct task_struct *p, cputime_t steal)
3684{
3685 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3686 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003687 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
3689 if (p == rq->idle) {
3690 p->stime = cputime_add(p->stime, steal);
3691 if (atomic_read(&rq->nr_iowait) > 0)
3692 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3693 else
3694 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003695 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3697}
3698
Christoph Lameter7835b982006-12-10 02:20:22 -08003699/*
3700 * This function gets called by the timer code, with HZ frequency.
3701 * We call it with interrupts disabled.
3702 *
3703 * It also gets called by the fork code, when changing the parent's
3704 * timeslices.
3705 */
3706void scheduler_tick(void)
3707{
Christoph Lameter7835b982006-12-10 02:20:22 -08003708 int cpu = smp_processor_id();
3709 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003710 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003711 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003712
Ingo Molnardd41f592007-07-09 18:51:59 +02003713 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003714 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003715 /*
3716 * Let rq->clock advance by at least TICK_NSEC:
3717 */
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003718 if (unlikely(rq->clock < next_tick)) {
Ingo Molnar529c7722007-08-10 23:05:11 +02003719 rq->clock = next_tick;
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003720 rq->clock_underflows++;
3721 }
Ingo Molnar529c7722007-08-10 23:05:11 +02003722 rq->tick_timestamp = rq->clock;
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003723 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003724 curr->sched_class->task_tick(rq, curr, 0);
3725 update_sched_rt_period(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003726 spin_unlock(&rq->lock);
3727
Christoph Lametere418e1c2006-12-10 02:20:23 -08003728#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003729 rq->idle_at_tick = idle_cpu(cpu);
3730 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003731#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732}
3733
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3735
Srinivasa Ds43627582008-02-23 15:24:04 -08003736void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737{
3738 /*
3739 * Underflow?
3740 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003741 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3742 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 preempt_count() += val;
3744 /*
3745 * Spinlock count overflowing soon?
3746 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003747 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3748 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749}
3750EXPORT_SYMBOL(add_preempt_count);
3751
Srinivasa Ds43627582008-02-23 15:24:04 -08003752void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753{
3754 /*
3755 * Underflow?
3756 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003757 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3758 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 /*
3760 * Is the spinlock portion underflowing?
3761 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003762 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3763 !(preempt_count() & PREEMPT_MASK)))
3764 return;
3765
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 preempt_count() -= val;
3767}
3768EXPORT_SYMBOL(sub_preempt_count);
3769
3770#endif
3771
3772/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003773 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003775static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776{
Satyam Sharma838225b2007-10-24 18:23:50 +02003777 struct pt_regs *regs = get_irq_regs();
3778
3779 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
3780 prev->comm, prev->pid, preempt_count());
3781
Ingo Molnardd41f592007-07-09 18:51:59 +02003782 debug_show_held_locks(prev);
3783 if (irqs_disabled())
3784 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003785
3786 if (regs)
3787 show_regs(regs);
3788 else
3789 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003790}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Ingo Molnardd41f592007-07-09 18:51:59 +02003792/*
3793 * Various schedule()-time debugging checks and statistics:
3794 */
3795static inline void schedule_debug(struct task_struct *prev)
3796{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003798 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 * schedule() atomically, we ignore that path for now.
3800 * Otherwise, whine if we are scheduling when we should not be.
3801 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003802 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3803 __schedule_bug(prev);
3804
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3806
Ingo Molnar2d723762007-10-15 17:00:12 +02003807 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003808#ifdef CONFIG_SCHEDSTATS
3809 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003810 schedstat_inc(this_rq(), bkl_count);
3811 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003812 }
3813#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02003814}
3815
3816/*
3817 * Pick up the highest-prio task:
3818 */
3819static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003820pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02003821{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003822 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02003823 struct task_struct *p;
3824
3825 /*
3826 * Optimization: we know that if all tasks are in
3827 * the fair class we can call that function directly:
3828 */
3829 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003830 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003831 if (likely(p))
3832 return p;
3833 }
3834
3835 class = sched_class_highest;
3836 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003837 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003838 if (p)
3839 return p;
3840 /*
3841 * Will never be NULL as the idle class always
3842 * returns a non-NULL p:
3843 */
3844 class = class->next;
3845 }
3846}
3847
3848/*
3849 * schedule() is the main scheduler function.
3850 */
3851asmlinkage void __sched schedule(void)
3852{
3853 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08003854 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02003855 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003856 int cpu;
3857
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858need_resched:
3859 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02003860 cpu = smp_processor_id();
3861 rq = cpu_rq(cpu);
3862 rcu_qsctr_inc(cpu);
3863 prev = rq->curr;
3864 switch_count = &prev->nivcsw;
3865
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 release_kernel_lock(prev);
3867need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
Ingo Molnardd41f592007-07-09 18:51:59 +02003869 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003871 hrtick_clear(rq);
3872
Ingo Molnar1e819952007-10-15 17:00:13 +02003873 /*
3874 * Do the rq-clock update outside the rq lock:
3875 */
3876 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02003877 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02003878 spin_lock(&rq->lock);
3879 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880
Ingo Molnardd41f592007-07-09 18:51:59 +02003881 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3882 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3883 unlikely(signal_pending(prev)))) {
3884 prev->state = TASK_RUNNING;
3885 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003886 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02003887 }
3888 switch_count = &prev->nvcsw;
3889 }
3890
Steven Rostedt9a897c52008-01-25 21:08:22 +01003891#ifdef CONFIG_SMP
3892 if (prev->sched_class->pre_schedule)
3893 prev->sched_class->pre_schedule(rq, prev);
3894#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01003895
Ingo Molnardd41f592007-07-09 18:51:59 +02003896 if (unlikely(!rq->nr_running))
3897 idle_balance(cpu, rq);
3898
Ingo Molnar31ee5292007-08-09 11:16:49 +02003899 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003900 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
3902 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02003903
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 rq->nr_switches++;
3906 rq->curr = next;
3907 ++*switch_count;
3908
Ingo Molnardd41f592007-07-09 18:51:59 +02003909 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003910 /*
3911 * the context switch might have flipped the stack from under
3912 * us, hence refresh the local variables.
3913 */
3914 cpu = smp_processor_id();
3915 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 } else
3917 spin_unlock_irq(&rq->lock);
3918
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003919 hrtick_set(rq);
3920
3921 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003923
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 preempt_enable_no_resched();
3925 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3926 goto need_resched;
3927}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928EXPORT_SYMBOL(schedule);
3929
3930#ifdef CONFIG_PREEMPT
3931/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003932 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003933 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 * occur there and call schedule directly.
3935 */
3936asmlinkage void __sched preempt_schedule(void)
3937{
3938 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 struct task_struct *task = current;
3940 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01003941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 /*
3943 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003944 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003946 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 return;
3948
Andi Kleen3a5c3592007-10-15 17:00:14 +02003949 do {
3950 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
Andi Kleen3a5c3592007-10-15 17:00:14 +02003952 /*
3953 * We keep the big kernel semaphore locked, but we
3954 * clear ->lock_depth so that schedule() doesnt
3955 * auto-release the semaphore:
3956 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02003957 saved_lock_depth = task->lock_depth;
3958 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003959 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02003960 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003961 sub_preempt_count(PREEMPT_ACTIVE);
3962
3963 /*
3964 * Check again in case we missed a preemption opportunity
3965 * between schedule and now.
3966 */
3967 barrier();
3968 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970EXPORT_SYMBOL(preempt_schedule);
3971
3972/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003973 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 * off of irq context.
3975 * Note, that this is called and return with irqs disabled. This will
3976 * protect us against recursive calling from irq.
3977 */
3978asmlinkage void __sched preempt_schedule_irq(void)
3979{
3980 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 struct task_struct *task = current;
3982 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01003983
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003984 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 BUG_ON(ti->preempt_count || !irqs_disabled());
3986
Andi Kleen3a5c3592007-10-15 17:00:14 +02003987 do {
3988 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989
Andi Kleen3a5c3592007-10-15 17:00:14 +02003990 /*
3991 * We keep the big kernel semaphore locked, but we
3992 * clear ->lock_depth so that schedule() doesnt
3993 * auto-release the semaphore:
3994 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02003995 saved_lock_depth = task->lock_depth;
3996 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003997 local_irq_enable();
3998 schedule();
3999 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004000 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004001 sub_preempt_count(PREEMPT_ACTIVE);
4002
4003 /*
4004 * Check again in case we missed a preemption opportunity
4005 * between schedule and now.
4006 */
4007 barrier();
4008 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009}
4010
4011#endif /* CONFIG_PREEMPT */
4012
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004013int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4014 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004016 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018EXPORT_SYMBOL(default_wake_function);
4019
4020/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004021 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4022 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 * number) then we wake all the non-exclusive tasks and one exclusive task.
4024 *
4025 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004026 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4028 */
4029static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4030 int nr_exclusive, int sync, void *key)
4031{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004032 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004034 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004035 unsigned flags = curr->flags;
4036
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004038 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 break;
4040 }
4041}
4042
4043/**
4044 * __wake_up - wake up threads blocked on a waitqueue.
4045 * @q: the waitqueue
4046 * @mode: which threads
4047 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004048 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004050void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004051 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052{
4053 unsigned long flags;
4054
4055 spin_lock_irqsave(&q->lock, flags);
4056 __wake_up_common(q, mode, nr_exclusive, 0, key);
4057 spin_unlock_irqrestore(&q->lock, flags);
4058}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059EXPORT_SYMBOL(__wake_up);
4060
4061/*
4062 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4063 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004064void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065{
4066 __wake_up_common(q, mode, 1, 0, NULL);
4067}
4068
4069/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004070 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 * @q: the waitqueue
4072 * @mode: which threads
4073 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4074 *
4075 * The sync wakeup differs that the waker knows that it will schedule
4076 * away soon, so while the target thread will be woken up, it will not
4077 * be migrated to another CPU - ie. the two threads are 'synchronized'
4078 * with each other. This can prevent needless bouncing between CPUs.
4079 *
4080 * On UP it can prevent extra preemption.
4081 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004082void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004083__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084{
4085 unsigned long flags;
4086 int sync = 1;
4087
4088 if (unlikely(!q))
4089 return;
4090
4091 if (unlikely(!nr_exclusive))
4092 sync = 0;
4093
4094 spin_lock_irqsave(&q->lock, flags);
4095 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4096 spin_unlock_irqrestore(&q->lock, flags);
4097}
4098EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4099
Ingo Molnarb15136e2007-10-24 18:23:48 +02004100void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101{
4102 unsigned long flags;
4103
4104 spin_lock_irqsave(&x->wait.lock, flags);
4105 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004106 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 spin_unlock_irqrestore(&x->wait.lock, flags);
4108}
4109EXPORT_SYMBOL(complete);
4110
Ingo Molnarb15136e2007-10-24 18:23:48 +02004111void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112{
4113 unsigned long flags;
4114
4115 spin_lock_irqsave(&x->wait.lock, flags);
4116 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004117 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 spin_unlock_irqrestore(&x->wait.lock, flags);
4119}
4120EXPORT_SYMBOL(complete_all);
4121
Andi Kleen8cbbe862007-10-15 17:00:14 +02004122static inline long __sched
4123do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 if (!x->done) {
4126 DECLARE_WAITQUEUE(wait, current);
4127
4128 wait.flags |= WQ_FLAG_EXCLUSIVE;
4129 __add_wait_queue_tail(&x->wait, &wait);
4130 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004131 if ((state == TASK_INTERRUPTIBLE &&
4132 signal_pending(current)) ||
4133 (state == TASK_KILLABLE &&
4134 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004135 __remove_wait_queue(&x->wait, &wait);
4136 return -ERESTARTSYS;
4137 }
4138 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004140 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004142 if (!timeout) {
4143 __remove_wait_queue(&x->wait, &wait);
4144 return timeout;
4145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 } while (!x->done);
4147 __remove_wait_queue(&x->wait, &wait);
4148 }
4149 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004150 return timeout;
4151}
4152
4153static long __sched
4154wait_for_common(struct completion *x, long timeout, int state)
4155{
4156 might_sleep();
4157
4158 spin_lock_irq(&x->wait.lock);
4159 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004161 return timeout;
4162}
4163
Ingo Molnarb15136e2007-10-24 18:23:48 +02004164void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004165{
4166 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167}
4168EXPORT_SYMBOL(wait_for_completion);
4169
Ingo Molnarb15136e2007-10-24 18:23:48 +02004170unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4172{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004173 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174}
4175EXPORT_SYMBOL(wait_for_completion_timeout);
4176
Andi Kleen8cbbe862007-10-15 17:00:14 +02004177int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178{
Andi Kleen51e97992007-10-18 21:32:55 +02004179 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4180 if (t == -ERESTARTSYS)
4181 return t;
4182 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183}
4184EXPORT_SYMBOL(wait_for_completion_interruptible);
4185
Ingo Molnarb15136e2007-10-24 18:23:48 +02004186unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187wait_for_completion_interruptible_timeout(struct completion *x,
4188 unsigned long timeout)
4189{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004190 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191}
4192EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4193
Matthew Wilcox009e5772007-12-06 12:29:54 -05004194int __sched wait_for_completion_killable(struct completion *x)
4195{
4196 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4197 if (t == -ERESTARTSYS)
4198 return t;
4199 return 0;
4200}
4201EXPORT_SYMBOL(wait_for_completion_killable);
4202
Andi Kleen8cbbe862007-10-15 17:00:14 +02004203static long __sched
4204sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004205{
4206 unsigned long flags;
4207 wait_queue_t wait;
4208
4209 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
Andi Kleen8cbbe862007-10-15 17:00:14 +02004211 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Andi Kleen8cbbe862007-10-15 17:00:14 +02004213 spin_lock_irqsave(&q->lock, flags);
4214 __add_wait_queue(q, &wait);
4215 spin_unlock(&q->lock);
4216 timeout = schedule_timeout(timeout);
4217 spin_lock_irq(&q->lock);
4218 __remove_wait_queue(q, &wait);
4219 spin_unlock_irqrestore(&q->lock, flags);
4220
4221 return timeout;
4222}
4223
4224void __sched interruptible_sleep_on(wait_queue_head_t *q)
4225{
4226 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228EXPORT_SYMBOL(interruptible_sleep_on);
4229
Ingo Molnar0fec1712007-07-09 18:52:01 +02004230long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004231interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004233 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4236
Ingo Molnar0fec1712007-07-09 18:52:01 +02004237void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004239 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241EXPORT_SYMBOL(sleep_on);
4242
Ingo Molnar0fec1712007-07-09 18:52:01 +02004243long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004245 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247EXPORT_SYMBOL(sleep_on_timeout);
4248
Ingo Molnarb29739f2006-06-27 02:54:51 -07004249#ifdef CONFIG_RT_MUTEXES
4250
4251/*
4252 * rt_mutex_setprio - set the current priority of a task
4253 * @p: task
4254 * @prio: prio value (kernel-internal form)
4255 *
4256 * This function changes the 'effective' priority of a task. It does
4257 * not touch ->normal_prio like __setscheduler().
4258 *
4259 * Used by the rt_mutex code to implement priority inheritance logic.
4260 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004261void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004262{
4263 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004264 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004265 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004266 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004267
4268 BUG_ON(prio < 0 || prio > MAX_PRIO);
4269
4270 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004271 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004272
Andrew Mortond5f9f942007-05-08 20:27:06 -07004273 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004274 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004275 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004276 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004277 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004278 if (running)
4279 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004280
4281 if (rt_prio(prio))
4282 p->sched_class = &rt_sched_class;
4283 else
4284 p->sched_class = &fair_sched_class;
4285
Ingo Molnarb29739f2006-06-27 02:54:51 -07004286 p->prio = prio;
4287
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004288 if (running)
4289 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004290 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004291 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004292
4293 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004294 }
4295 task_rq_unlock(rq, &flags);
4296}
4297
4298#endif
4299
Ingo Molnar36c8b582006-07-03 00:25:41 -07004300void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301{
Ingo Molnardd41f592007-07-09 18:51:59 +02004302 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004304 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305
4306 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4307 return;
4308 /*
4309 * We have to be careful, if called from sys_setpriority(),
4310 * the task might be in the middle of scheduling on another CPU.
4311 */
4312 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004313 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 /*
4315 * The RT priorities are set via sched_setscheduler(), but we still
4316 * allow the 'normal' nice value to be set - but as expected
4317 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004318 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004320 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 p->static_prio = NICE_TO_PRIO(nice);
4322 goto out_unlock;
4323 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004324 on_rq = p->se.on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004325 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004326 dequeue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004327 dec_load(rq, p);
4328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004331 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004332 old_prio = p->prio;
4333 p->prio = effective_prio(p);
4334 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
Ingo Molnardd41f592007-07-09 18:51:59 +02004336 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004337 enqueue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004338 inc_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004340 * If the task increased its priority or is running and
4341 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004343 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 resched_task(rq->curr);
4345 }
4346out_unlock:
4347 task_rq_unlock(rq, &flags);
4348}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349EXPORT_SYMBOL(set_user_nice);
4350
Matt Mackalle43379f2005-05-01 08:59:00 -07004351/*
4352 * can_nice - check if a task can reduce its nice value
4353 * @p: task
4354 * @nice: nice value
4355 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004356int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004357{
Matt Mackall024f4742005-08-18 11:24:19 -07004358 /* convert nice value [19,-20] to rlimit style value [1,40] */
4359 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004360
Matt Mackalle43379f2005-05-01 08:59:00 -07004361 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4362 capable(CAP_SYS_NICE));
4363}
4364
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365#ifdef __ARCH_WANT_SYS_NICE
4366
4367/*
4368 * sys_nice - change the priority of the current process.
4369 * @increment: priority increment
4370 *
4371 * sys_setpriority is a more generic, but much slower function that
4372 * does similar things.
4373 */
4374asmlinkage long sys_nice(int increment)
4375{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004376 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377
4378 /*
4379 * Setpriority might change our priority at the same moment.
4380 * We don't have to worry. Conceptually one call occurs first
4381 * and we have a single winner.
4382 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004383 if (increment < -40)
4384 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 if (increment > 40)
4386 increment = 40;
4387
4388 nice = PRIO_TO_NICE(current->static_prio) + increment;
4389 if (nice < -20)
4390 nice = -20;
4391 if (nice > 19)
4392 nice = 19;
4393
Matt Mackalle43379f2005-05-01 08:59:00 -07004394 if (increment < 0 && !can_nice(current, nice))
4395 return -EPERM;
4396
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 retval = security_task_setnice(current, nice);
4398 if (retval)
4399 return retval;
4400
4401 set_user_nice(current, nice);
4402 return 0;
4403}
4404
4405#endif
4406
4407/**
4408 * task_prio - return the priority value of a given task.
4409 * @p: the task in question.
4410 *
4411 * This is the priority value as seen by users in /proc.
4412 * RT tasks are offset by -200. Normal tasks are centered
4413 * around 0, value goes from -16 to +15.
4414 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004415int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416{
4417 return p->prio - MAX_RT_PRIO;
4418}
4419
4420/**
4421 * task_nice - return the nice value of a given task.
4422 * @p: the task in question.
4423 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004424int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425{
4426 return TASK_NICE(p);
4427}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004428EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429
4430/**
4431 * idle_cpu - is a given cpu idle currently?
4432 * @cpu: the processor in question.
4433 */
4434int idle_cpu(int cpu)
4435{
4436 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4437}
4438
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439/**
4440 * idle_task - return the idle task for a given cpu.
4441 * @cpu: the processor in question.
4442 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004443struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444{
4445 return cpu_rq(cpu)->idle;
4446}
4447
4448/**
4449 * find_process_by_pid - find a process with a matching PID value.
4450 * @pid: the pid in question.
4451 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004452static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004454 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455}
4456
4457/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004458static void
4459__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460{
Ingo Molnardd41f592007-07-09 18:51:59 +02004461 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004462
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004464 switch (p->policy) {
4465 case SCHED_NORMAL:
4466 case SCHED_BATCH:
4467 case SCHED_IDLE:
4468 p->sched_class = &fair_sched_class;
4469 break;
4470 case SCHED_FIFO:
4471 case SCHED_RR:
4472 p->sched_class = &rt_sched_class;
4473 break;
4474 }
4475
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004477 p->normal_prio = normal_prio(p);
4478 /* we are holding p->pi_lock already */
4479 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004480 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481}
4482
4483/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004484 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 * @p: the task in question.
4486 * @policy: new policy.
4487 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004488 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004489 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004491int sched_setscheduler(struct task_struct *p, int policy,
4492 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004494 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004496 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004497 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498
Steven Rostedt66e53932006-06-27 02:54:44 -07004499 /* may grab non-irq protected spin_locks */
4500 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501recheck:
4502 /* double check policy once rq lock held */
4503 if (policy < 0)
4504 policy = oldpolicy = p->policy;
4505 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004506 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4507 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004508 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 /*
4510 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004511 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4512 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 */
4514 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004515 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004516 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004518 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 return -EINVAL;
4520
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004521 /*
4522 * Allow unprivileged RT tasks to decrease priority:
4523 */
4524 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004525 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004526 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004527
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004528 if (!lock_task_sighand(p, &flags))
4529 return -ESRCH;
4530 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4531 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004532
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004533 /* can't set/change the rt policy */
4534 if (policy != p->policy && !rlim_rtprio)
4535 return -EPERM;
4536
4537 /* can't increase priority */
4538 if (param->sched_priority > p->rt_priority &&
4539 param->sched_priority > rlim_rtprio)
4540 return -EPERM;
4541 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004542 /*
4543 * Like positive nice levels, dont allow tasks to
4544 * move out of SCHED_IDLE either:
4545 */
4546 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4547 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004548
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004549 /* can't change other user's priorities */
4550 if ((current->euid != p->euid) &&
4551 (current->euid != p->uid))
4552 return -EPERM;
4553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004555#ifdef CONFIG_RT_GROUP_SCHED
4556 /*
4557 * Do not allow realtime tasks into groups that have no runtime
4558 * assigned.
4559 */
4560 if (rt_policy(policy) && task_group(p)->rt_runtime == 0)
4561 return -EPERM;
4562#endif
4563
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 retval = security_task_setscheduler(p, policy, param);
4565 if (retval)
4566 return retval;
4567 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004568 * make sure no PI-waiters arrive (or leave) while we are
4569 * changing the priority of the task:
4570 */
4571 spin_lock_irqsave(&p->pi_lock, flags);
4572 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 * To be able to change p->policy safely, the apropriate
4574 * runqueue lock must be held.
4575 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004576 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577 /* recheck policy now with rq lock held */
4578 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4579 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004580 __task_rq_unlock(rq);
4581 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 goto recheck;
4583 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004584 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004585 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004586 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004587 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004588 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004589 if (running)
4590 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004591
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004593 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004594
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004595 if (running)
4596 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004597 if (on_rq) {
4598 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004599
4600 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004602 __task_rq_unlock(rq);
4603 spin_unlock_irqrestore(&p->pi_lock, flags);
4604
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004605 rt_mutex_adjust_pi(p);
4606
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 return 0;
4608}
4609EXPORT_SYMBOL_GPL(sched_setscheduler);
4610
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004611static int
4612do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 struct sched_param lparam;
4615 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004616 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617
4618 if (!param || pid < 0)
4619 return -EINVAL;
4620 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4621 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004622
4623 rcu_read_lock();
4624 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004626 if (p != NULL)
4627 retval = sched_setscheduler(p, policy, &lparam);
4628 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004629
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 return retval;
4631}
4632
4633/**
4634 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4635 * @pid: the pid in question.
4636 * @policy: new policy.
4637 * @param: structure containing the new RT priority.
4638 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004639asmlinkage long
4640sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641{
Jason Baronc21761f2006-01-18 17:43:03 -08004642 /* negative values for policy are not valid */
4643 if (policy < 0)
4644 return -EINVAL;
4645
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 return do_sched_setscheduler(pid, policy, param);
4647}
4648
4649/**
4650 * sys_sched_setparam - set/change the RT priority of a thread
4651 * @pid: the pid in question.
4652 * @param: structure containing the new RT priority.
4653 */
4654asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4655{
4656 return do_sched_setscheduler(pid, -1, param);
4657}
4658
4659/**
4660 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4661 * @pid: the pid in question.
4662 */
4663asmlinkage long sys_sched_getscheduler(pid_t pid)
4664{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004665 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004666 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
4668 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004669 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670
4671 retval = -ESRCH;
4672 read_lock(&tasklist_lock);
4673 p = find_process_by_pid(pid);
4674 if (p) {
4675 retval = security_task_getscheduler(p);
4676 if (!retval)
4677 retval = p->policy;
4678 }
4679 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 return retval;
4681}
4682
4683/**
4684 * sys_sched_getscheduler - get the RT priority of a thread
4685 * @pid: the pid in question.
4686 * @param: structure containing the RT priority.
4687 */
4688asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4689{
4690 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004691 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004692 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
4694 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004695 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696
4697 read_lock(&tasklist_lock);
4698 p = find_process_by_pid(pid);
4699 retval = -ESRCH;
4700 if (!p)
4701 goto out_unlock;
4702
4703 retval = security_task_getscheduler(p);
4704 if (retval)
4705 goto out_unlock;
4706
4707 lp.sched_priority = p->rt_priority;
4708 read_unlock(&tasklist_lock);
4709
4710 /*
4711 * This one might sleep, we cannot do it with a spinlock held ...
4712 */
4713 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4714
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 return retval;
4716
4717out_unlock:
4718 read_unlock(&tasklist_lock);
4719 return retval;
4720}
4721
4722long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4723{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004725 struct task_struct *p;
4726 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004728 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 read_lock(&tasklist_lock);
4730
4731 p = find_process_by_pid(pid);
4732 if (!p) {
4733 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004734 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 return -ESRCH;
4736 }
4737
4738 /*
4739 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004740 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 * usage count and then drop tasklist_lock.
4742 */
4743 get_task_struct(p);
4744 read_unlock(&tasklist_lock);
4745
4746 retval = -EPERM;
4747 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4748 !capable(CAP_SYS_NICE))
4749 goto out_unlock;
4750
David Quigleye7834f82006-06-23 02:03:59 -07004751 retval = security_task_setscheduler(p, 0, NULL);
4752 if (retval)
4753 goto out_unlock;
4754
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 cpus_allowed = cpuset_cpus_allowed(p);
4756 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004757 again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 retval = set_cpus_allowed(p, new_mask);
4759
Paul Menage8707d8b2007-10-18 23:40:22 -07004760 if (!retval) {
4761 cpus_allowed = cpuset_cpus_allowed(p);
4762 if (!cpus_subset(new_mask, cpus_allowed)) {
4763 /*
4764 * We must have raced with a concurrent cpuset
4765 * update. Just reset the cpus_allowed to the
4766 * cpuset's cpus_allowed
4767 */
4768 new_mask = cpus_allowed;
4769 goto again;
4770 }
4771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772out_unlock:
4773 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004774 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775 return retval;
4776}
4777
4778static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4779 cpumask_t *new_mask)
4780{
4781 if (len < sizeof(cpumask_t)) {
4782 memset(new_mask, 0, sizeof(cpumask_t));
4783 } else if (len > sizeof(cpumask_t)) {
4784 len = sizeof(cpumask_t);
4785 }
4786 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4787}
4788
4789/**
4790 * sys_sched_setaffinity - set the cpu affinity of a process
4791 * @pid: pid of the process
4792 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4793 * @user_mask_ptr: user-space pointer to the new cpu mask
4794 */
4795asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4796 unsigned long __user *user_mask_ptr)
4797{
4798 cpumask_t new_mask;
4799 int retval;
4800
4801 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4802 if (retval)
4803 return retval;
4804
4805 return sched_setaffinity(pid, new_mask);
4806}
4807
4808/*
4809 * Represents all cpu's present in the system
4810 * In systems capable of hotplug, this map could dynamically grow
4811 * as new cpu's are detected in the system via any platform specific
4812 * method, such as ACPI for e.g.
4813 */
4814
Andi Kleen4cef0c62006-01-11 22:44:57 +01004815cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816EXPORT_SYMBOL(cpu_present_map);
4817
4818#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004819cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004820EXPORT_SYMBOL(cpu_online_map);
4821
Andi Kleen4cef0c62006-01-11 22:44:57 +01004822cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004823EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824#endif
4825
4826long sched_getaffinity(pid_t pid, cpumask_t *mask)
4827{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004828 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004831 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 read_lock(&tasklist_lock);
4833
4834 retval = -ESRCH;
4835 p = find_process_by_pid(pid);
4836 if (!p)
4837 goto out_unlock;
4838
David Quigleye7834f82006-06-23 02:03:59 -07004839 retval = security_task_getscheduler(p);
4840 if (retval)
4841 goto out_unlock;
4842
Jack Steiner2f7016d2006-02-01 03:05:18 -08004843 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844
4845out_unlock:
4846 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004847 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
Ulrich Drepper9531b622007-08-09 11:16:46 +02004849 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850}
4851
4852/**
4853 * sys_sched_getaffinity - get the cpu affinity of a process
4854 * @pid: pid of the process
4855 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4856 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4857 */
4858asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4859 unsigned long __user *user_mask_ptr)
4860{
4861 int ret;
4862 cpumask_t mask;
4863
4864 if (len < sizeof(cpumask_t))
4865 return -EINVAL;
4866
4867 ret = sched_getaffinity(pid, &mask);
4868 if (ret < 0)
4869 return ret;
4870
4871 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4872 return -EFAULT;
4873
4874 return sizeof(cpumask_t);
4875}
4876
4877/**
4878 * sys_sched_yield - yield the current processor to other threads.
4879 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004880 * This function yields the current CPU to other tasks. If there are no
4881 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 */
4883asmlinkage long sys_sched_yield(void)
4884{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004885 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
Ingo Molnar2d723762007-10-15 17:00:12 +02004887 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004888 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889
4890 /*
4891 * Since we are going to call schedule() anyway, there's
4892 * no need to preempt or enable interrupts:
4893 */
4894 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004895 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 _raw_spin_unlock(&rq->lock);
4897 preempt_enable_no_resched();
4898
4899 schedule();
4900
4901 return 0;
4902}
4903
Andrew Mortone7b38402006-06-30 01:56:00 -07004904static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004906#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4907 __might_sleep(__FILE__, __LINE__);
4908#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004909 /*
4910 * The BKS might be reacquired before we have dropped
4911 * PREEMPT_ACTIVE, which could trigger a second
4912 * cond_resched() call.
4913 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 do {
4915 add_preempt_count(PREEMPT_ACTIVE);
4916 schedule();
4917 sub_preempt_count(PREEMPT_ACTIVE);
4918 } while (need_resched());
4919}
4920
Herbert Xu02b67cc32008-01-25 21:08:28 +01004921#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
4922int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923{
Ingo Molnar94142322006-12-29 16:48:13 -08004924 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4925 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 __cond_resched();
4927 return 1;
4928 }
4929 return 0;
4930}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004931EXPORT_SYMBOL(_cond_resched);
4932#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933
4934/*
4935 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4936 * call schedule, and on return reacquire the lock.
4937 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004938 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 * operations here to prevent schedule() from being called twice (once via
4940 * spin_unlock(), once by hand).
4941 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004942int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943{
Nick Piggin95c354f2008-01-30 13:31:20 +01004944 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07004945 int ret = 0;
4946
Nick Piggin95c354f2008-01-30 13:31:20 +01004947 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01004949 if (resched && need_resched())
4950 __cond_resched();
4951 else
4952 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004953 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004956 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958EXPORT_SYMBOL(cond_resched_lock);
4959
4960int __sched cond_resched_softirq(void)
4961{
4962 BUG_ON(!in_softirq());
4963
Ingo Molnar94142322006-12-29 16:48:13 -08004964 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004965 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966 __cond_resched();
4967 local_bh_disable();
4968 return 1;
4969 }
4970 return 0;
4971}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972EXPORT_SYMBOL(cond_resched_softirq);
4973
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974/**
4975 * yield - yield the current processor to other threads.
4976 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004977 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978 * thread runnable and calls sys_sched_yield().
4979 */
4980void __sched yield(void)
4981{
4982 set_current_state(TASK_RUNNING);
4983 sys_sched_yield();
4984}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985EXPORT_SYMBOL(yield);
4986
4987/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004988 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 * that process accounting knows that this is a task in IO wait state.
4990 *
4991 * But don't do that if it is a deliberate, throttling IO wait (this task
4992 * has set its backing_dev_info: the queue against which it should throttle)
4993 */
4994void __sched io_schedule(void)
4995{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004996 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004998 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 atomic_inc(&rq->nr_iowait);
5000 schedule();
5001 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005002 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004EXPORT_SYMBOL(io_schedule);
5005
5006long __sched io_schedule_timeout(long timeout)
5007{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005008 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 long ret;
5010
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005011 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012 atomic_inc(&rq->nr_iowait);
5013 ret = schedule_timeout(timeout);
5014 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005015 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 return ret;
5017}
5018
5019/**
5020 * sys_sched_get_priority_max - return maximum RT priority.
5021 * @policy: scheduling class.
5022 *
5023 * this syscall returns the maximum rt_priority that can be used
5024 * by a given scheduling class.
5025 */
5026asmlinkage long sys_sched_get_priority_max(int policy)
5027{
5028 int ret = -EINVAL;
5029
5030 switch (policy) {
5031 case SCHED_FIFO:
5032 case SCHED_RR:
5033 ret = MAX_USER_RT_PRIO-1;
5034 break;
5035 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005036 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005037 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038 ret = 0;
5039 break;
5040 }
5041 return ret;
5042}
5043
5044/**
5045 * sys_sched_get_priority_min - return minimum RT priority.
5046 * @policy: scheduling class.
5047 *
5048 * this syscall returns the minimum rt_priority that can be used
5049 * by a given scheduling class.
5050 */
5051asmlinkage long sys_sched_get_priority_min(int policy)
5052{
5053 int ret = -EINVAL;
5054
5055 switch (policy) {
5056 case SCHED_FIFO:
5057 case SCHED_RR:
5058 ret = 1;
5059 break;
5060 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005061 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005062 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 ret = 0;
5064 }
5065 return ret;
5066}
5067
5068/**
5069 * sys_sched_rr_get_interval - return the default timeslice of a process.
5070 * @pid: pid of the process.
5071 * @interval: userspace pointer to the timeslice value.
5072 *
5073 * this syscall writes the default timeslice value of a given process
5074 * into the user-space timespec buffer. A value of '0' means infinity.
5075 */
5076asmlinkage
5077long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5078{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005079 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005080 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005081 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083
5084 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005085 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086
5087 retval = -ESRCH;
5088 read_lock(&tasklist_lock);
5089 p = find_process_by_pid(pid);
5090 if (!p)
5091 goto out_unlock;
5092
5093 retval = security_task_getscheduler(p);
5094 if (retval)
5095 goto out_unlock;
5096
Ingo Molnar77034932007-12-04 17:04:39 +01005097 /*
5098 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5099 * tasks that are on an otherwise idle runqueue:
5100 */
5101 time_slice = 0;
5102 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005103 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005104 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005105 struct sched_entity *se = &p->se;
5106 unsigned long flags;
5107 struct rq *rq;
5108
5109 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005110 if (rq->cfs.load.weight)
5111 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005112 task_rq_unlock(rq, &flags);
5113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005115 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005118
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119out_unlock:
5120 read_unlock(&tasklist_lock);
5121 return retval;
5122}
5123
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005124static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005125
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005126void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005129 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005132 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005133 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005134#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005136 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005138 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139#else
5140 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005141 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005143 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144#endif
5145#ifdef CONFIG_DEBUG_STACK_USAGE
5146 {
Al Viro10ebffd2005-11-13 16:06:56 -08005147 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 while (!*n)
5149 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005150 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 }
5152#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005153 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005154 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005156 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157}
5158
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005159void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005161 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162
Ingo Molnar4bd77322007-07-11 21:21:47 +02005163#if BITS_PER_LONG == 32
5164 printk(KERN_INFO
5165 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005167 printk(KERN_INFO
5168 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169#endif
5170 read_lock(&tasklist_lock);
5171 do_each_thread(g, p) {
5172 /*
5173 * reset the NMI-timeout, listing all files on a slow
5174 * console might take alot of time:
5175 */
5176 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005177 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005178 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179 } while_each_thread(g, p);
5180
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005181 touch_all_softlockup_watchdogs();
5182
Ingo Molnardd41f592007-07-09 18:51:59 +02005183#ifdef CONFIG_SCHED_DEBUG
5184 sysrq_sched_debug_show();
5185#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005187 /*
5188 * Only show locks if all tasks are dumped:
5189 */
5190 if (state_filter == -1)
5191 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192}
5193
Ingo Molnar1df21052007-07-09 18:51:58 +02005194void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5195{
Ingo Molnardd41f592007-07-09 18:51:59 +02005196 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005197}
5198
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005199/**
5200 * init_idle - set up an idle thread for a given CPU
5201 * @idle: task in question
5202 * @cpu: cpu the idle task belongs to
5203 *
5204 * NOTE: this function does not set the idle thread's NEED_RESCHED
5205 * flag, to make booting more robust.
5206 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005207void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005209 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 unsigned long flags;
5211
Ingo Molnardd41f592007-07-09 18:51:59 +02005212 __sched_fork(idle);
5213 idle->se.exec_start = sched_clock();
5214
Ingo Molnarb29739f2006-06-27 02:54:51 -07005215 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005217 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218
5219 spin_lock_irqsave(&rq->lock, flags);
5220 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005221#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5222 idle->oncpu = 1;
5223#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 spin_unlock_irqrestore(&rq->lock, flags);
5225
5226 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f52005-11-13 16:06:55 -08005227 task_thread_info(idle)->preempt_count = 0;
Ingo Molnar6478d882008-01-25 21:08:33 +01005228
Ingo Molnardd41f592007-07-09 18:51:59 +02005229 /*
5230 * The idle tasks have their own, simple scheduling class:
5231 */
5232 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233}
5234
5235/*
5236 * In a system that switches off the HZ timer nohz_cpu_mask
5237 * indicates which cpus entered this state. This is used
5238 * in the rcu update to wait only for active cpus. For system
5239 * which do not switch off the HZ timer nohz_cpu_mask should
5240 * always be CPU_MASK_NONE.
5241 */
5242cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5243
Ingo Molnar19978ca2007-11-09 22:39:38 +01005244/*
5245 * Increase the granularity value when there are more CPUs,
5246 * because with more CPUs the 'effective latency' as visible
5247 * to users decreases. But the relationship is not linear,
5248 * so pick a second-best guess by going with the log2 of the
5249 * number of CPUs.
5250 *
5251 * This idea comes from the SD scheduler of Con Kolivas:
5252 */
5253static inline void sched_init_granularity(void)
5254{
5255 unsigned int factor = 1 + ilog2(num_online_cpus());
5256 const unsigned long limit = 200000000;
5257
5258 sysctl_sched_min_granularity *= factor;
5259 if (sysctl_sched_min_granularity > limit)
5260 sysctl_sched_min_granularity = limit;
5261
5262 sysctl_sched_latency *= factor;
5263 if (sysctl_sched_latency > limit)
5264 sysctl_sched_latency = limit;
5265
5266 sysctl_sched_wakeup_granularity *= factor;
5267 sysctl_sched_batch_wakeup_granularity *= factor;
5268}
5269
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270#ifdef CONFIG_SMP
5271/*
5272 * This is how migration works:
5273 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005274 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275 * runqueue and wake up that CPU's migration thread.
5276 * 2) we down() the locked semaphore => thread blocks.
5277 * 3) migration thread wakes up (implicitly it forces the migrated
5278 * thread off the CPU)
5279 * 4) it gets the migration request and checks whether the migrated
5280 * task is still in the wrong runqueue.
5281 * 5) if it's in the wrong runqueue then the migration thread removes
5282 * it and puts it into the right queue.
5283 * 6) migration thread up()s the semaphore.
5284 * 7) we wake up and the migration is done.
5285 */
5286
5287/*
5288 * Change a given task's CPU affinity. Migrate the thread to a
5289 * proper CPU and schedule it away if the CPU it's executing on
5290 * is removed from the allowed bitmask.
5291 *
5292 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005293 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 * call is not atomic; no spinlocks may be held.
5295 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005296int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005298 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005300 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005301 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
5303 rq = task_rq_lock(p, &flags);
5304 if (!cpus_intersects(new_mask, cpu_online_map)) {
5305 ret = -EINVAL;
5306 goto out;
5307 }
5308
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005309 if (p->sched_class->set_cpus_allowed)
5310 p->sched_class->set_cpus_allowed(p, &new_mask);
5311 else {
Ingo Molnar0eab9142008-01-25 21:08:19 +01005312 p->cpus_allowed = new_mask;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01005313 p->rt.nr_cpus_allowed = cpus_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005314 }
5315
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316 /* Can the task run on the task's current CPU? If so, we're done */
5317 if (cpu_isset(task_cpu(p), new_mask))
5318 goto out;
5319
5320 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
5321 /* Need help from migration thread: drop lock and wait. */
5322 task_rq_unlock(rq, &flags);
5323 wake_up_process(rq->migration_thread);
5324 wait_for_completion(&req.done);
5325 tlb_migrate_finish(p->mm);
5326 return 0;
5327 }
5328out:
5329 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005330
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331 return ret;
5332}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333EXPORT_SYMBOL_GPL(set_cpus_allowed);
5334
5335/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005336 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337 * this because either it can't run here any more (set_cpus_allowed()
5338 * away from this CPU, or CPU going down), or because we're
5339 * attempting to rebalance this task on exec (sched_exec).
5340 *
5341 * So we race with normal scheduler movements, but that's OK, as long
5342 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005343 *
5344 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005346static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005348 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005349 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350
5351 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005352 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353
5354 rq_src = cpu_rq(src_cpu);
5355 rq_dest = cpu_rq(dest_cpu);
5356
5357 double_rq_lock(rq_src, rq_dest);
5358 /* Already moved. */
5359 if (task_cpu(p) != src_cpu)
5360 goto out;
5361 /* Affinity changed (again). */
5362 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5363 goto out;
5364
Ingo Molnardd41f592007-07-09 18:51:59 +02005365 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005366 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005367 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005368
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005370 if (on_rq) {
5371 activate_task(rq_dest, p, 0);
5372 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005374 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375out:
5376 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005377 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378}
5379
5380/*
5381 * migration_thread - this is a highprio system thread that performs
5382 * thread migration by bumping thread off CPU then 'pushing' onto
5383 * another runqueue.
5384 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005385static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005388 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389
5390 rq = cpu_rq(cpu);
5391 BUG_ON(rq->migration_thread != current);
5392
5393 set_current_state(TASK_INTERRUPTIBLE);
5394 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005395 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 spin_lock_irq(&rq->lock);
5399
5400 if (cpu_is_offline(cpu)) {
5401 spin_unlock_irq(&rq->lock);
5402 goto wait_to_die;
5403 }
5404
5405 if (rq->active_balance) {
5406 active_load_balance(rq, cpu);
5407 rq->active_balance = 0;
5408 }
5409
5410 head = &rq->migration_queue;
5411
5412 if (list_empty(head)) {
5413 spin_unlock_irq(&rq->lock);
5414 schedule();
5415 set_current_state(TASK_INTERRUPTIBLE);
5416 continue;
5417 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005418 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419 list_del_init(head->next);
5420
Nick Piggin674311d2005-06-25 14:57:27 -07005421 spin_unlock(&rq->lock);
5422 __migrate_task(req->task, cpu, req->dest_cpu);
5423 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424
5425 complete(&req->done);
5426 }
5427 __set_current_state(TASK_RUNNING);
5428 return 0;
5429
5430wait_to_die:
5431 /* Wait for kthread_stop */
5432 set_current_state(TASK_INTERRUPTIBLE);
5433 while (!kthread_should_stop()) {
5434 schedule();
5435 set_current_state(TASK_INTERRUPTIBLE);
5436 }
5437 __set_current_state(TASK_RUNNING);
5438 return 0;
5439}
5440
5441#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005442
5443static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5444{
5445 int ret;
5446
5447 local_irq_disable();
5448 ret = __migrate_task(p, src_cpu, dest_cpu);
5449 local_irq_enable();
5450 return ret;
5451}
5452
Kirill Korotaev054b9102006-12-10 02:20:11 -08005453/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005454 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005455 * NOTE: interrupts should be disabled by the caller
5456 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005457static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005459 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005461 struct rq *rq;
5462 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463
Andi Kleen3a5c3592007-10-15 17:00:14 +02005464 do {
5465 /* On same node? */
5466 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5467 cpus_and(mask, mask, p->cpus_allowed);
5468 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469
Andi Kleen3a5c3592007-10-15 17:00:14 +02005470 /* On any allowed CPU? */
5471 if (dest_cpu == NR_CPUS)
5472 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473
Andi Kleen3a5c3592007-10-15 17:00:14 +02005474 /* No more Mr. Nice Guy. */
5475 if (dest_cpu == NR_CPUS) {
Cliff Wickman470fd642007-10-18 23:40:46 -07005476 cpumask_t cpus_allowed = cpuset_cpus_allowed_locked(p);
5477 /*
5478 * Try to stay on the same cpuset, where the
5479 * current cpuset may be a subset of all cpus.
5480 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005481 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005482 * called within calls to cpuset_lock/cpuset_unlock.
5483 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005484 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005485 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005486 dest_cpu = any_online_cpu(p->cpus_allowed);
5487 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488
Andi Kleen3a5c3592007-10-15 17:00:14 +02005489 /*
5490 * Don't tell them about moving exiting tasks or
5491 * kernel threads (both mm NULL), since they never
5492 * leave kernel.
5493 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005494 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005495 printk(KERN_INFO "process %d (%s) no "
5496 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005497 task_pid_nr(p), p->comm, dead_cpu);
5498 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005499 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005500 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501}
5502
5503/*
5504 * While a dead CPU has no uninterruptible tasks queued at this point,
5505 * it might still have a nonzero ->nr_uninterruptible counter, because
5506 * for performance reasons the counter is not stricly tracking tasks to
5507 * their home CPUs. So we just add the counter to another CPU's counter,
5508 * to keep the global sum constant after CPU-down:
5509 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005510static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005512 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 unsigned long flags;
5514
5515 local_irq_save(flags);
5516 double_rq_lock(rq_src, rq_dest);
5517 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5518 rq_src->nr_uninterruptible = 0;
5519 double_rq_unlock(rq_src, rq_dest);
5520 local_irq_restore(flags);
5521}
5522
5523/* Run through task list and migrate tasks from the dead cpu. */
5524static void migrate_live_tasks(int src_cpu)
5525{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005526 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005528 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
Ingo Molnar48f24c42006-07-03 00:25:40 -07005530 do_each_thread(t, p) {
5531 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 continue;
5533
Ingo Molnar48f24c42006-07-03 00:25:40 -07005534 if (task_cpu(p) == src_cpu)
5535 move_task_off_dead_cpu(src_cpu, p);
5536 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005538 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539}
5540
Ingo Molnardd41f592007-07-09 18:51:59 +02005541/*
5542 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005543 * It does so by boosting its priority to highest possible.
5544 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545 */
5546void sched_idle_next(void)
5547{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005548 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005549 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550 struct task_struct *p = rq->idle;
5551 unsigned long flags;
5552
5553 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005554 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555
Ingo Molnar48f24c42006-07-03 00:25:40 -07005556 /*
5557 * Strictly not necessary since rest of the CPUs are stopped by now
5558 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559 */
5560 spin_lock_irqsave(&rq->lock, flags);
5561
Ingo Molnardd41f592007-07-09 18:51:59 +02005562 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005563
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005564 update_rq_clock(rq);
5565 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566
5567 spin_unlock_irqrestore(&rq->lock, flags);
5568}
5569
Ingo Molnar48f24c42006-07-03 00:25:40 -07005570/*
5571 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 * offline.
5573 */
5574void idle_task_exit(void)
5575{
5576 struct mm_struct *mm = current->active_mm;
5577
5578 BUG_ON(cpu_online(smp_processor_id()));
5579
5580 if (mm != &init_mm)
5581 switch_mm(mm, &init_mm, current);
5582 mmdrop(mm);
5583}
5584
Kirill Korotaev054b9102006-12-10 02:20:11 -08005585/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005586static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005588 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589
5590 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005591 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592
5593 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005594 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595
Ingo Molnar48f24c42006-07-03 00:25:40 -07005596 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597
5598 /*
5599 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005600 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 * fine.
5602 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005603 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005604 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005605 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606
Ingo Molnar48f24c42006-07-03 00:25:40 -07005607 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608}
5609
5610/* release_task() removes task from tasklist, so we won't find dead tasks. */
5611static void migrate_dead_tasks(unsigned int dead_cpu)
5612{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005613 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005614 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615
Ingo Molnardd41f592007-07-09 18:51:59 +02005616 for ( ; ; ) {
5617 if (!rq->nr_running)
5618 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005619 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005620 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005621 if (!next)
5622 break;
5623 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005624
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625 }
5626}
5627#endif /* CONFIG_HOTPLUG_CPU */
5628
Nick Piggine692ab52007-07-26 13:40:43 +02005629#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5630
5631static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005632 {
5633 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005634 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005635 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005636 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005637};
5638
5639static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005640 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005641 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005642 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005643 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005644 .child = sd_ctl_dir,
5645 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005646 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005647};
5648
5649static struct ctl_table *sd_alloc_ctl_entry(int n)
5650{
5651 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005652 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005653
Nick Piggine692ab52007-07-26 13:40:43 +02005654 return entry;
5655}
5656
Milton Miller6382bc92007-10-15 17:00:19 +02005657static void sd_free_ctl_entry(struct ctl_table **tablep)
5658{
Milton Millercd7900762007-10-17 16:55:11 +02005659 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005660
Milton Millercd7900762007-10-17 16:55:11 +02005661 /*
5662 * In the intermediate directories, both the child directory and
5663 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005664 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02005665 * static strings and all have proc handlers.
5666 */
5667 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005668 if (entry->child)
5669 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02005670 if (entry->proc_handler == NULL)
5671 kfree(entry->procname);
5672 }
Milton Miller6382bc92007-10-15 17:00:19 +02005673
5674 kfree(*tablep);
5675 *tablep = NULL;
5676}
5677
Nick Piggine692ab52007-07-26 13:40:43 +02005678static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005679set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005680 const char *procname, void *data, int maxlen,
5681 mode_t mode, proc_handler *proc_handler)
5682{
Nick Piggine692ab52007-07-26 13:40:43 +02005683 entry->procname = procname;
5684 entry->data = data;
5685 entry->maxlen = maxlen;
5686 entry->mode = mode;
5687 entry->proc_handler = proc_handler;
5688}
5689
5690static struct ctl_table *
5691sd_alloc_ctl_domain_table(struct sched_domain *sd)
5692{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005693 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005694
Milton Millerad1cdc12007-10-15 17:00:19 +02005695 if (table == NULL)
5696 return NULL;
5697
Alexey Dobriyane0361852007-08-09 11:16:46 +02005698 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005699 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005700 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005701 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005702 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005703 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005704 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005705 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005706 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005707 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005708 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005709 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005710 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005711 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005712 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005713 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005714 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005715 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005716 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005717 &sd->cache_nice_tries,
5718 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005719 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005720 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005721 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005722
5723 return table;
5724}
5725
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005726static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005727{
5728 struct ctl_table *entry, *table;
5729 struct sched_domain *sd;
5730 int domain_num = 0, i;
5731 char buf[32];
5732
5733 for_each_domain(cpu, sd)
5734 domain_num++;
5735 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005736 if (table == NULL)
5737 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005738
5739 i = 0;
5740 for_each_domain(cpu, sd) {
5741 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005742 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005743 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005744 entry->child = sd_alloc_ctl_domain_table(sd);
5745 entry++;
5746 i++;
5747 }
5748 return table;
5749}
5750
5751static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005752static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005753{
5754 int i, cpu_num = num_online_cpus();
5755 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5756 char buf[32];
5757
Milton Miller73785472007-10-24 18:23:48 +02005758 WARN_ON(sd_ctl_dir[0].child);
5759 sd_ctl_dir[0].child = entry;
5760
Milton Millerad1cdc12007-10-15 17:00:19 +02005761 if (entry == NULL)
5762 return;
5763
Milton Miller97b6ea72007-10-15 17:00:19 +02005764 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005765 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005766 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005767 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005768 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005769 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005770 }
Milton Miller73785472007-10-24 18:23:48 +02005771
5772 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005773 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5774}
Milton Miller6382bc92007-10-15 17:00:19 +02005775
Milton Miller73785472007-10-24 18:23:48 +02005776/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005777static void unregister_sched_domain_sysctl(void)
5778{
Milton Miller73785472007-10-24 18:23:48 +02005779 if (sd_sysctl_header)
5780 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005781 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005782 if (sd_ctl_dir[0].child)
5783 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005784}
Nick Piggine692ab52007-07-26 13:40:43 +02005785#else
Milton Miller6382bc92007-10-15 17:00:19 +02005786static void register_sched_domain_sysctl(void)
5787{
5788}
5789static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005790{
5791}
5792#endif
5793
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794/*
5795 * migration_call - callback that gets triggered when a CPU is added.
5796 * Here we can start up the necessary migration thread for the new CPU.
5797 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005798static int __cpuinit
5799migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005802 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005804 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805
5806 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005807
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005809 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02005810 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811 if (IS_ERR(p))
5812 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813 kthread_bind(p, cpu);
5814 /* Must be high prio: stop_machine expects to yield to it. */
5815 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02005816 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817 task_rq_unlock(rq, &flags);
5818 cpu_rq(cpu)->migration_thread = p;
5819 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005820
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005822 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005823 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005825
5826 /* Update our root-domain */
5827 rq = cpu_rq(cpu);
5828 spin_lock_irqsave(&rq->lock, flags);
5829 if (rq->rd) {
5830 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5831 cpu_set(cpu, rq->rd->online);
5832 }
5833 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005835
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836#ifdef CONFIG_HOTPLUG_CPU
5837 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005838 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005839 if (!cpu_rq(cpu)->migration_thread)
5840 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005841 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005842 kthread_bind(cpu_rq(cpu)->migration_thread,
5843 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844 kthread_stop(cpu_rq(cpu)->migration_thread);
5845 cpu_rq(cpu)->migration_thread = NULL;
5846 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005847
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005849 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07005850 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851 migrate_live_tasks(cpu);
5852 rq = cpu_rq(cpu);
5853 kthread_stop(rq->migration_thread);
5854 rq->migration_thread = NULL;
5855 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005856 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005857 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005858 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02005860 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
5861 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005863 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07005864 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 migrate_nr_uninterruptible(rq);
5866 BUG_ON(rq->nr_running != 0);
5867
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005868 /*
5869 * No need to migrate the tasks: it was best-effort if
5870 * they didn't take sched_hotcpu_mutex. Just wake up
5871 * the requestors.
5872 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873 spin_lock_irq(&rq->lock);
5874 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005875 struct migration_req *req;
5876
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005878 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879 list_del_init(&req->list);
5880 complete(&req->done);
5881 }
5882 spin_unlock_irq(&rq->lock);
5883 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005884
Gregory Haskins08f503b2008-03-10 17:59:11 -04005885 case CPU_DYING:
5886 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01005887 /* Update our root-domain */
5888 rq = cpu_rq(cpu);
5889 spin_lock_irqsave(&rq->lock, flags);
5890 if (rq->rd) {
5891 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5892 cpu_clear(cpu, rq->rd->online);
5893 }
5894 spin_unlock_irqrestore(&rq->lock, flags);
5895 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896#endif
5897 }
5898 return NOTIFY_OK;
5899}
5900
5901/* Register at highest priority so that task migration (migrate_all_tasks)
5902 * happens before everything else.
5903 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005904static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905 .notifier_call = migration_call,
5906 .priority = 10
5907};
5908
Adrian Bunke6fe6642007-11-09 22:39:39 +01005909void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910{
5911 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005912 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005913
5914 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005915 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5916 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5918 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919}
5920#endif
5921
5922#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005923
5924/* Number of possible processor ids */
5925int nr_cpu_ids __read_mostly = NR_CPUS;
5926EXPORT_SYMBOL(nr_cpu_ids);
5927
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005928#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005929
5930static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level)
5931{
5932 struct sched_group *group = sd->groups;
5933 cpumask_t groupmask;
5934 char str[NR_CPUS];
5935
5936 cpumask_scnprintf(str, NR_CPUS, sd->span);
5937 cpus_clear(groupmask);
5938
5939 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5940
5941 if (!(sd->flags & SD_LOAD_BALANCE)) {
5942 printk("does not load-balance\n");
5943 if (sd->parent)
5944 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5945 " has parent");
5946 return -1;
5947 }
5948
5949 printk(KERN_CONT "span %s\n", str);
5950
5951 if (!cpu_isset(cpu, sd->span)) {
5952 printk(KERN_ERR "ERROR: domain->span does not contain "
5953 "CPU%d\n", cpu);
5954 }
5955 if (!cpu_isset(cpu, group->cpumask)) {
5956 printk(KERN_ERR "ERROR: domain->groups does not contain"
5957 " CPU%d\n", cpu);
5958 }
5959
5960 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5961 do {
5962 if (!group) {
5963 printk("\n");
5964 printk(KERN_ERR "ERROR: group is NULL\n");
5965 break;
5966 }
5967
5968 if (!group->__cpu_power) {
5969 printk(KERN_CONT "\n");
5970 printk(KERN_ERR "ERROR: domain->cpu_power not "
5971 "set\n");
5972 break;
5973 }
5974
5975 if (!cpus_weight(group->cpumask)) {
5976 printk(KERN_CONT "\n");
5977 printk(KERN_ERR "ERROR: empty group\n");
5978 break;
5979 }
5980
5981 if (cpus_intersects(groupmask, group->cpumask)) {
5982 printk(KERN_CONT "\n");
5983 printk(KERN_ERR "ERROR: repeated CPUs\n");
5984 break;
5985 }
5986
5987 cpus_or(groupmask, groupmask, group->cpumask);
5988
5989 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5990 printk(KERN_CONT " %s", str);
5991
5992 group = group->next;
5993 } while (group != sd->groups);
5994 printk(KERN_CONT "\n");
5995
5996 if (!cpus_equal(sd->span, groupmask))
5997 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
5998
5999 if (sd->parent && !cpus_subset(groupmask, sd->parent->span))
6000 printk(KERN_ERR "ERROR: parent span is not a superset "
6001 "of domain->span\n");
6002 return 0;
6003}
6004
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005static void sched_domain_debug(struct sched_domain *sd, int cpu)
6006{
6007 int level = 0;
6008
Nick Piggin41c7ce92005-06-25 14:57:24 -07006009 if (!sd) {
6010 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6011 return;
6012 }
6013
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6015
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006016 for (;;) {
6017 if (sched_domain_debug_one(sd, cpu, level))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019 level++;
6020 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006021 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006022 break;
6023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024}
6025#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006026# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027#endif
6028
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006029static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006030{
6031 if (cpus_weight(sd->span) == 1)
6032 return 1;
6033
6034 /* Following flags need at least 2 groups */
6035 if (sd->flags & (SD_LOAD_BALANCE |
6036 SD_BALANCE_NEWIDLE |
6037 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006038 SD_BALANCE_EXEC |
6039 SD_SHARE_CPUPOWER |
6040 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006041 if (sd->groups != sd->groups->next)
6042 return 0;
6043 }
6044
6045 /* Following flags don't use groups */
6046 if (sd->flags & (SD_WAKE_IDLE |
6047 SD_WAKE_AFFINE |
6048 SD_WAKE_BALANCE))
6049 return 0;
6050
6051 return 1;
6052}
6053
Ingo Molnar48f24c42006-07-03 00:25:40 -07006054static int
6055sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006056{
6057 unsigned long cflags = sd->flags, pflags = parent->flags;
6058
6059 if (sd_degenerate(parent))
6060 return 1;
6061
6062 if (!cpus_equal(sd->span, parent->span))
6063 return 0;
6064
6065 /* Does parent contain flags not in child? */
6066 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6067 if (cflags & SD_WAKE_AFFINE)
6068 pflags &= ~SD_WAKE_BALANCE;
6069 /* Flags needing groups don't count if only 1 group in parent */
6070 if (parent->groups == parent->groups->next) {
6071 pflags &= ~(SD_LOAD_BALANCE |
6072 SD_BALANCE_NEWIDLE |
6073 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006074 SD_BALANCE_EXEC |
6075 SD_SHARE_CPUPOWER |
6076 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006077 }
6078 if (~cflags & pflags)
6079 return 0;
6080
6081 return 1;
6082}
6083
Gregory Haskins57d885f2008-01-25 21:08:18 +01006084static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6085{
6086 unsigned long flags;
6087 const struct sched_class *class;
6088
6089 spin_lock_irqsave(&rq->lock, flags);
6090
6091 if (rq->rd) {
6092 struct root_domain *old_rd = rq->rd;
6093
Ingo Molnar0eab9142008-01-25 21:08:19 +01006094 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006095 if (class->leave_domain)
6096 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006097 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006098
Gregory Haskinsdc938522008-01-25 21:08:26 +01006099 cpu_clear(rq->cpu, old_rd->span);
6100 cpu_clear(rq->cpu, old_rd->online);
6101
Gregory Haskins57d885f2008-01-25 21:08:18 +01006102 if (atomic_dec_and_test(&old_rd->refcount))
6103 kfree(old_rd);
6104 }
6105
6106 atomic_inc(&rd->refcount);
6107 rq->rd = rd;
6108
Gregory Haskinsdc938522008-01-25 21:08:26 +01006109 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006110 if (cpu_isset(rq->cpu, cpu_online_map))
6111 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006112
Ingo Molnar0eab9142008-01-25 21:08:19 +01006113 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006114 if (class->join_domain)
6115 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006116 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006117
6118 spin_unlock_irqrestore(&rq->lock, flags);
6119}
6120
Gregory Haskinsdc938522008-01-25 21:08:26 +01006121static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006122{
6123 memset(rd, 0, sizeof(*rd));
6124
Gregory Haskinsdc938522008-01-25 21:08:26 +01006125 cpus_clear(rd->span);
6126 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006127}
6128
6129static void init_defrootdomain(void)
6130{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006131 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006132 atomic_set(&def_root_domain.refcount, 1);
6133}
6134
Gregory Haskinsdc938522008-01-25 21:08:26 +01006135static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006136{
6137 struct root_domain *rd;
6138
6139 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6140 if (!rd)
6141 return NULL;
6142
Gregory Haskinsdc938522008-01-25 21:08:26 +01006143 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006144
6145 return rd;
6146}
6147
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006149 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150 * hold the hotplug lock.
6151 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006152static void
6153cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006155 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006156 struct sched_domain *tmp;
6157
6158 /* Remove the sched domains which do not contribute to scheduling. */
6159 for (tmp = sd; tmp; tmp = tmp->parent) {
6160 struct sched_domain *parent = tmp->parent;
6161 if (!parent)
6162 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006163 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006164 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006165 if (parent->parent)
6166 parent->parent->child = tmp;
6167 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006168 }
6169
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006170 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006171 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006172 if (sd)
6173 sd->child = NULL;
6174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175
6176 sched_domain_debug(sd, cpu);
6177
Gregory Haskins57d885f2008-01-25 21:08:18 +01006178 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006179 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180}
6181
6182/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006183static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184
6185/* Setup the mask of cpus configured for isolated domains */
6186static int __init isolated_cpu_setup(char *str)
6187{
6188 int ints[NR_CPUS], i;
6189
6190 str = get_options(str, ARRAY_SIZE(ints), ints);
6191 cpus_clear(cpu_isolated_map);
6192 for (i = 1; i <= ints[0]; i++)
6193 if (ints[i] < NR_CPUS)
6194 cpu_set(ints[i], cpu_isolated_map);
6195 return 1;
6196}
6197
Ingo Molnar8927f492007-10-15 17:00:13 +02006198__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199
6200/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006201 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6202 * to a function which identifies what group(along with sched group) a CPU
6203 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6204 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205 *
6206 * init_sched_build_groups will build a circular linked list of the groups
6207 * covered by the given span, and will set each group's ->cpumask correctly,
6208 * and ->cpu_power to 0.
6209 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006210static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006211init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
6212 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
6213 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214{
6215 struct sched_group *first = NULL, *last = NULL;
6216 cpumask_t covered = CPU_MASK_NONE;
6217 int i;
6218
6219 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006220 struct sched_group *sg;
6221 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222 int j;
6223
6224 if (cpu_isset(i, covered))
6225 continue;
6226
6227 sg->cpumask = CPU_MASK_NONE;
Eric Dumazet5517d862007-05-08 00:32:57 -07006228 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229
6230 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006231 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232 continue;
6233
6234 cpu_set(j, covered);
6235 cpu_set(j, sg->cpumask);
6236 }
6237 if (!first)
6238 first = sg;
6239 if (last)
6240 last->next = sg;
6241 last = sg;
6242 }
6243 last->next = first;
6244}
6245
John Hawkes9c1cfda2005-09-06 15:18:14 -07006246#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247
John Hawkes9c1cfda2005-09-06 15:18:14 -07006248#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006249
John Hawkes9c1cfda2005-09-06 15:18:14 -07006250/**
6251 * find_next_best_node - find the next node to include in a sched_domain
6252 * @node: node whose sched_domain we're building
6253 * @used_nodes: nodes already in the sched_domain
6254 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006255 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006256 * finds the closest node not already in the @used_nodes map.
6257 *
6258 * Should use nodemask_t.
6259 */
6260static int find_next_best_node(int node, unsigned long *used_nodes)
6261{
6262 int i, n, val, min_val, best_node = 0;
6263
6264 min_val = INT_MAX;
6265
6266 for (i = 0; i < MAX_NUMNODES; i++) {
6267 /* Start at @node */
6268 n = (node + i) % MAX_NUMNODES;
6269
6270 if (!nr_cpus_node(n))
6271 continue;
6272
6273 /* Skip already used nodes */
6274 if (test_bit(n, used_nodes))
6275 continue;
6276
6277 /* Simple min distance search */
6278 val = node_distance(node, n);
6279
6280 if (val < min_val) {
6281 min_val = val;
6282 best_node = n;
6283 }
6284 }
6285
6286 set_bit(best_node, used_nodes);
6287 return best_node;
6288}
6289
6290/**
6291 * sched_domain_node_span - get a cpumask for a node's sched_domain
6292 * @node: node whose cpumask we're constructing
6293 * @size: number of nodes to include in this span
6294 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006295 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006296 * should be one that prevents unnecessary balancing, but also spreads tasks
6297 * out optimally.
6298 */
6299static cpumask_t sched_domain_node_span(int node)
6300{
John Hawkes9c1cfda2005-09-06 15:18:14 -07006301 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006302 cpumask_t span, nodemask;
6303 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006304
6305 cpus_clear(span);
6306 bitmap_zero(used_nodes, MAX_NUMNODES);
6307
6308 nodemask = node_to_cpumask(node);
6309 cpus_or(span, span, nodemask);
6310 set_bit(node, used_nodes);
6311
6312 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6313 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006314
John Hawkes9c1cfda2005-09-06 15:18:14 -07006315 nodemask = node_to_cpumask(next_node);
6316 cpus_or(span, span, nodemask);
6317 }
6318
6319 return span;
6320}
6321#endif
6322
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006323int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006324
John Hawkes9c1cfda2005-09-06 15:18:14 -07006325/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006326 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006327 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328#ifdef CONFIG_SCHED_SMT
6329static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006330static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006331
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006332static int
6333cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006335 if (sg)
6336 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337 return cpu;
6338}
6339#endif
6340
Ingo Molnar48f24c42006-07-03 00:25:40 -07006341/*
6342 * multi-core sched-domains:
6343 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006344#ifdef CONFIG_SCHED_MC
6345static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006346static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006347#endif
6348
6349#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006350static int
6351cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006352{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006353 int group;
Mike Travisd5a74302007-10-16 01:24:05 -07006354 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006355 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006356 group = first_cpu(mask);
6357 if (sg)
6358 *sg = &per_cpu(sched_group_core, group);
6359 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006360}
6361#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006362static int
6363cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006364{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006365 if (sg)
6366 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006367 return cpu;
6368}
6369#endif
6370
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006372static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006373
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006374static int
6375cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006377 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006378#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006379 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006380 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006381 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006382#elif defined(CONFIG_SCHED_SMT)
Mike Travisd5a74302007-10-16 01:24:05 -07006383 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006384 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006385 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006387 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006389 if (sg)
6390 *sg = &per_cpu(sched_group_phys, group);
6391 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392}
6393
6394#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006395/*
6396 * The init_sched_build_groups can't handle what we want to do with node
6397 * groups, so roll our own. Now each node has its own list of groups which
6398 * gets dynamically allocated.
6399 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07006401static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07006402
6403static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006404static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006405
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006406static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
6407 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006409 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
6410 int group;
6411
6412 cpus_and(nodemask, nodemask, *cpu_map);
6413 group = first_cpu(nodemask);
6414
6415 if (sg)
6416 *sg = &per_cpu(sched_group_allnodes, group);
6417 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006419
Siddha, Suresh B08069032006-03-27 01:15:23 -08006420static void init_numa_sched_groups_power(struct sched_group *group_head)
6421{
6422 struct sched_group *sg = group_head;
6423 int j;
6424
6425 if (!sg)
6426 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006427 do {
6428 for_each_cpu_mask(j, sg->cpumask) {
6429 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006430
Andi Kleen3a5c3592007-10-15 17:00:14 +02006431 sd = &per_cpu(phys_domains, j);
6432 if (j != first_cpu(sd->groups->cpumask)) {
6433 /*
6434 * Only add "power" once for each
6435 * physical package.
6436 */
6437 continue;
6438 }
6439
6440 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006441 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006442 sg = sg->next;
6443 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006444}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445#endif
6446
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006447#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006448/* Free memory allocated for various sched_group structures */
6449static void free_sched_groups(const cpumask_t *cpu_map)
6450{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006451 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006452
6453 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006454 struct sched_group **sched_group_nodes
6455 = sched_group_nodes_bycpu[cpu];
6456
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006457 if (!sched_group_nodes)
6458 continue;
6459
6460 for (i = 0; i < MAX_NUMNODES; i++) {
6461 cpumask_t nodemask = node_to_cpumask(i);
6462 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6463
6464 cpus_and(nodemask, nodemask, *cpu_map);
6465 if (cpus_empty(nodemask))
6466 continue;
6467
6468 if (sg == NULL)
6469 continue;
6470 sg = sg->next;
6471next_sg:
6472 oldsg = sg;
6473 sg = sg->next;
6474 kfree(oldsg);
6475 if (oldsg != sched_group_nodes[i])
6476 goto next_sg;
6477 }
6478 kfree(sched_group_nodes);
6479 sched_group_nodes_bycpu[cpu] = NULL;
6480 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006481}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006482#else
6483static void free_sched_groups(const cpumask_t *cpu_map)
6484{
6485}
6486#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006487
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006489 * Initialize sched groups cpu_power.
6490 *
6491 * cpu_power indicates the capacity of sched group, which is used while
6492 * distributing the load between different sched groups in a sched domain.
6493 * Typically cpu_power for all the groups in a sched domain will be same unless
6494 * there are asymmetries in the topology. If there are asymmetries, group
6495 * having more cpu_power will pickup more load compared to the group having
6496 * less cpu_power.
6497 *
6498 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6499 * the maximum number of tasks a group can handle in the presence of other idle
6500 * or lightly loaded groups in the same sched domain.
6501 */
6502static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6503{
6504 struct sched_domain *child;
6505 struct sched_group *group;
6506
6507 WARN_ON(!sd || !sd->groups);
6508
6509 if (cpu != first_cpu(sd->groups->cpumask))
6510 return;
6511
6512 child = sd->child;
6513
Eric Dumazet5517d862007-05-08 00:32:57 -07006514 sd->groups->__cpu_power = 0;
6515
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006516 /*
6517 * For perf policy, if the groups in child domain share resources
6518 * (for example cores sharing some portions of the cache hierarchy
6519 * or SMT), then set this domain groups cpu_power such that each group
6520 * can handle only one task, when there are other idle groups in the
6521 * same sched domain.
6522 */
6523 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6524 (child->flags &
6525 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006526 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006527 return;
6528 }
6529
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006530 /*
6531 * add cpu_power of each child group to this groups cpu_power
6532 */
6533 group = child->groups;
6534 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006535 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006536 group = group->next;
6537 } while (group != child->groups);
6538}
6539
6540/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006541 * Build sched domains for a given set of cpus and attach the sched domains
6542 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006544static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545{
6546 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006547 struct root_domain *rd;
John Hawkesd1b55132005-09-06 15:18:14 -07006548#ifdef CONFIG_NUMA
6549 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006550 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006551
6552 /*
6553 * Allocate the per-node list of sched groups
6554 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006555 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006556 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006557 if (!sched_group_nodes) {
6558 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006559 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006560 }
6561 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6562#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006563
Gregory Haskinsdc938522008-01-25 21:08:26 +01006564 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006565 if (!rd) {
6566 printk(KERN_WARNING "Cannot alloc root domain\n");
6567 return -ENOMEM;
6568 }
6569
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006571 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006573 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574 struct sched_domain *sd = NULL, *p;
6575 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6576
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006577 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578
6579#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006580 if (cpus_weight(*cpu_map) >
6581 SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006582 sd = &per_cpu(allnodes_domains, i);
6583 *sd = SD_ALLNODES_INIT;
6584 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006585 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006586 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006587 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006588 } else
6589 p = NULL;
6590
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006593 sd->span = sched_domain_node_span(cpu_to_node(i));
6594 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006595 if (p)
6596 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006597 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598#endif
6599
6600 p = sd;
6601 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006602 *sd = SD_CPU_INIT;
6603 sd->span = nodemask;
6604 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006605 if (p)
6606 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006607 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006609#ifdef CONFIG_SCHED_MC
6610 p = sd;
6611 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006612 *sd = SD_MC_INIT;
6613 sd->span = cpu_coregroup_map(i);
6614 cpus_and(sd->span, sd->span, *cpu_map);
6615 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006616 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006617 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006618#endif
6619
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620#ifdef CONFIG_SCHED_SMT
6621 p = sd;
6622 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623 *sd = SD_SIBLING_INIT;
Mike Travisd5a74302007-10-16 01:24:05 -07006624 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006625 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006627 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006628 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629#endif
6630 }
6631
6632#ifdef CONFIG_SCHED_SMT
6633 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006634 for_each_cpu_mask(i, *cpu_map) {
Mike Travisd5a74302007-10-16 01:24:05 -07006635 cpumask_t this_sibling_map = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006636 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637 if (i != first_cpu(this_sibling_map))
6638 continue;
6639
Ingo Molnardd41f592007-07-09 18:51:59 +02006640 init_sched_build_groups(this_sibling_map, cpu_map,
6641 &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642 }
6643#endif
6644
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006645#ifdef CONFIG_SCHED_MC
6646 /* Set up multi-core groups */
6647 for_each_cpu_mask(i, *cpu_map) {
6648 cpumask_t this_core_map = cpu_coregroup_map(i);
6649 cpus_and(this_core_map, this_core_map, *cpu_map);
6650 if (i != first_cpu(this_core_map))
6651 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006652 init_sched_build_groups(this_core_map, cpu_map,
6653 &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006654 }
6655#endif
6656
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657 /* Set up physical groups */
6658 for (i = 0; i < MAX_NUMNODES; i++) {
6659 cpumask_t nodemask = node_to_cpumask(i);
6660
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006661 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662 if (cpus_empty(nodemask))
6663 continue;
6664
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006665 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666 }
6667
6668#ifdef CONFIG_NUMA
6669 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006670 if (sd_allnodes)
Ingo Molnardd41f592007-07-09 18:51:59 +02006671 init_sched_build_groups(*cpu_map, cpu_map,
6672 &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006673
6674 for (i = 0; i < MAX_NUMNODES; i++) {
6675 /* Set up node groups */
6676 struct sched_group *sg, *prev;
6677 cpumask_t nodemask = node_to_cpumask(i);
6678 cpumask_t domainspan;
6679 cpumask_t covered = CPU_MASK_NONE;
6680 int j;
6681
6682 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006683 if (cpus_empty(nodemask)) {
6684 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006685 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006686 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006687
6688 domainspan = sched_domain_node_span(i);
6689 cpus_and(domainspan, domainspan, *cpu_map);
6690
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006691 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006692 if (!sg) {
6693 printk(KERN_WARNING "Can not alloc domain group for "
6694 "node %d\n", i);
6695 goto error;
6696 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006697 sched_group_nodes[i] = sg;
6698 for_each_cpu_mask(j, nodemask) {
6699 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02006700
John Hawkes9c1cfda2005-09-06 15:18:14 -07006701 sd = &per_cpu(node_domains, j);
6702 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006703 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006704 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006705 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006706 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006707 cpus_or(covered, covered, nodemask);
6708 prev = sg;
6709
6710 for (j = 0; j < MAX_NUMNODES; j++) {
6711 cpumask_t tmp, notcovered;
6712 int n = (i + j) % MAX_NUMNODES;
6713
6714 cpus_complement(notcovered, covered);
6715 cpus_and(tmp, notcovered, *cpu_map);
6716 cpus_and(tmp, tmp, domainspan);
6717 if (cpus_empty(tmp))
6718 break;
6719
6720 nodemask = node_to_cpumask(n);
6721 cpus_and(tmp, tmp, nodemask);
6722 if (cpus_empty(tmp))
6723 continue;
6724
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006725 sg = kmalloc_node(sizeof(struct sched_group),
6726 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006727 if (!sg) {
6728 printk(KERN_WARNING
6729 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006730 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006731 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006732 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006733 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006734 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006735 cpus_or(covered, covered, tmp);
6736 prev->next = sg;
6737 prev = sg;
6738 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006740#endif
6741
6742 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006743#ifdef CONFIG_SCHED_SMT
6744 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006745 struct sched_domain *sd = &per_cpu(cpu_domains, i);
6746
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006747 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006748 }
6749#endif
6750#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006751 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006752 struct sched_domain *sd = &per_cpu(core_domains, i);
6753
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006754 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006755 }
6756#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006758 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006759 struct sched_domain *sd = &per_cpu(phys_domains, i);
6760
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006761 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006762 }
6763
John Hawkes9c1cfda2005-09-06 15:18:14 -07006764#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006765 for (i = 0; i < MAX_NUMNODES; i++)
6766 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006767
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006768 if (sd_allnodes) {
6769 struct sched_group *sg;
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006770
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006771 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006772 init_numa_sched_groups_power(sg);
6773 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006774#endif
6775
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006777 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778 struct sched_domain *sd;
6779#ifdef CONFIG_SCHED_SMT
6780 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006781#elif defined(CONFIG_SCHED_MC)
6782 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006783#else
6784 sd = &per_cpu(phys_domains, i);
6785#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006786 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006787 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006788
6789 return 0;
6790
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006791#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006792error:
6793 free_sched_groups(cpu_map);
6794 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006795#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796}
Paul Jackson029190c2007-10-18 23:40:20 -07006797
6798static cpumask_t *doms_cur; /* current sched domains */
6799static int ndoms_cur; /* number of sched domains in 'doms_cur' */
6800
6801/*
6802 * Special case: If a kmalloc of a doms_cur partition (array of
6803 * cpumask_t) fails, then fallback to a single sched domain,
6804 * as determined by the single cpumask_t fallback_doms.
6805 */
6806static cpumask_t fallback_doms;
6807
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006808/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006809 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006810 * For now this just excludes isolated cpus, but could be used to
6811 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006812 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006813static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006814{
Milton Miller73785472007-10-24 18:23:48 +02006815 int err;
6816
Paul Jackson029190c2007-10-18 23:40:20 -07006817 ndoms_cur = 1;
6818 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6819 if (!doms_cur)
6820 doms_cur = &fallback_doms;
6821 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Milton Miller73785472007-10-24 18:23:48 +02006822 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02006823 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006824
6825 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006826}
6827
6828static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006830 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006831}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006832
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006833/*
6834 * Detach sched domains from a group of cpus specified in cpu_map
6835 * These cpus will now be attached to the NULL domain
6836 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006837static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006838{
6839 int i;
6840
Milton Miller6382bc92007-10-15 17:00:19 +02006841 unregister_sched_domain_sysctl();
6842
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006843 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006844 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006845 synchronize_sched();
6846 arch_destroy_sched_domains(cpu_map);
6847}
6848
Paul Jackson029190c2007-10-18 23:40:20 -07006849/*
6850 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006851 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006852 * doms_new[] to the current sched domain partitioning, doms_cur[].
6853 * It destroys each deleted domain and builds each new domain.
6854 *
6855 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006856 * The masks don't intersect (don't overlap.) We should setup one
6857 * sched domain for each mask. CPUs not in any of the cpumasks will
6858 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006859 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6860 * it as it is.
6861 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006862 * The passed in 'doms_new' should be kmalloc'd. This routine takes
6863 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07006864 * failed the kmalloc call, then it can pass in doms_new == NULL,
6865 * and partition_sched_domains() will fallback to the single partition
6866 * 'fallback_doms'.
6867 *
6868 * Call with hotplug lock held
6869 */
6870void partition_sched_domains(int ndoms_new, cpumask_t *doms_new)
6871{
6872 int i, j;
6873
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006874 lock_doms_cur();
6875
Milton Miller73785472007-10-24 18:23:48 +02006876 /* always unregister in case we don't destroy any domains */
6877 unregister_sched_domain_sysctl();
6878
Paul Jackson029190c2007-10-18 23:40:20 -07006879 if (doms_new == NULL) {
6880 ndoms_new = 1;
6881 doms_new = &fallback_doms;
6882 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
6883 }
6884
6885 /* Destroy deleted domains */
6886 for (i = 0; i < ndoms_cur; i++) {
6887 for (j = 0; j < ndoms_new; j++) {
6888 if (cpus_equal(doms_cur[i], doms_new[j]))
6889 goto match1;
6890 }
6891 /* no match - a current sched domain not in new doms_new[] */
6892 detach_destroy_domains(doms_cur + i);
6893match1:
6894 ;
6895 }
6896
6897 /* Build new domains */
6898 for (i = 0; i < ndoms_new; i++) {
6899 for (j = 0; j < ndoms_cur; j++) {
6900 if (cpus_equal(doms_new[i], doms_cur[j]))
6901 goto match2;
6902 }
6903 /* no match - add a new doms_new */
6904 build_sched_domains(doms_new + i);
6905match2:
6906 ;
6907 }
6908
6909 /* Remember the new sched domains */
6910 if (doms_cur != &fallback_doms)
6911 kfree(doms_cur);
6912 doms_cur = doms_new;
6913 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006914
6915 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006916
6917 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07006918}
6919
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006920#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Adrian Bunk6707de002007-08-12 18:08:19 +02006921static int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006922{
6923 int err;
6924
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006925 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006926 detach_destroy_domains(&cpu_online_map);
6927 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006928 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006929
6930 return err;
6931}
6932
6933static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6934{
6935 int ret;
6936
6937 if (buf[0] != '0' && buf[0] != '1')
6938 return -EINVAL;
6939
6940 if (smt)
6941 sched_smt_power_savings = (buf[0] == '1');
6942 else
6943 sched_mc_power_savings = (buf[0] == '1');
6944
6945 ret = arch_reinit_sched_domains();
6946
6947 return ret ? ret : count;
6948}
6949
Adrian Bunk6707de002007-08-12 18:08:19 +02006950#ifdef CONFIG_SCHED_MC
6951static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6952{
6953 return sprintf(page, "%u\n", sched_mc_power_savings);
6954}
6955static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6956 const char *buf, size_t count)
6957{
6958 return sched_power_savings_store(buf, count, 0);
6959}
6960static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6961 sched_mc_power_savings_store);
6962#endif
6963
6964#ifdef CONFIG_SCHED_SMT
6965static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6966{
6967 return sprintf(page, "%u\n", sched_smt_power_savings);
6968}
6969static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6970 const char *buf, size_t count)
6971{
6972 return sched_power_savings_store(buf, count, 1);
6973}
6974static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6975 sched_smt_power_savings_store);
6976#endif
6977
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006978int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6979{
6980 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006981
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006982#ifdef CONFIG_SCHED_SMT
6983 if (smt_capable())
6984 err = sysfs_create_file(&cls->kset.kobj,
6985 &attr_sched_smt_power_savings.attr);
6986#endif
6987#ifdef CONFIG_SCHED_MC
6988 if (!err && mc_capable())
6989 err = sysfs_create_file(&cls->kset.kobj,
6990 &attr_sched_mc_power_savings.attr);
6991#endif
6992 return err;
6993}
6994#endif
6995
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006997 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07006999 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000 * which will prevent rebalancing while the sched domains are recalculated.
7001 */
7002static int update_sched_domains(struct notifier_block *nfb,
7003 unsigned long action, void *hcpu)
7004{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005 switch (action) {
7006 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007007 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007009 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007010 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011 return NOTIFY_OK;
7012
7013 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007014 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007016 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007018 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007019 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007020 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007021 /*
7022 * Fall through and re-initialise the domains.
7023 */
7024 break;
7025 default:
7026 return NOTIFY_DONE;
7027 }
7028
7029 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007030 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031
7032 return NOTIFY_OK;
7033}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034
7035void __init sched_init_smp(void)
7036{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007037 cpumask_t non_isolated_cpus;
7038
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007039 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007040 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007041 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007042 if (cpus_empty(non_isolated_cpus))
7043 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007044 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007045 /* XXX: Theoretical race here - CPU may be hotplugged now */
7046 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007047
7048 /* Move init over to a non-isolated CPU */
7049 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
7050 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007051 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052}
7053#else
7054void __init sched_init_smp(void)
7055{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007056 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057}
7058#endif /* CONFIG_SMP */
7059
7060int in_sched_functions(unsigned long addr)
7061{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062 return in_lock_functions(addr) ||
7063 (addr >= (unsigned long)__sched_text_start
7064 && addr < (unsigned long)__sched_text_end);
7065}
7066
Alexey Dobriyana9957442007-10-15 17:00:13 +02007067static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007068{
7069 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02007070#ifdef CONFIG_FAIR_GROUP_SCHED
7071 cfs_rq->rq = rq;
7072#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007073 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007074}
7075
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007076static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7077{
7078 struct rt_prio_array *array;
7079 int i;
7080
7081 array = &rt_rq->active;
7082 for (i = 0; i < MAX_RT_PRIO; i++) {
7083 INIT_LIST_HEAD(array->queue + i);
7084 __clear_bit(i, array->bitmap);
7085 }
7086 /* delimiter for bitsearch: */
7087 __set_bit(MAX_RT_PRIO, array->bitmap);
7088
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007089#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007090 rt_rq->highest_prio = MAX_RT_PRIO;
7091#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007092#ifdef CONFIG_SMP
7093 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007094 rt_rq->overloaded = 0;
7095#endif
7096
7097 rt_rq->rt_time = 0;
7098 rt_rq->rt_throttled = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007099
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007100#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007101 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007102 rt_rq->rq = rq;
7103#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007104}
7105
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007106#ifdef CONFIG_FAIR_GROUP_SCHED
7107static void init_tg_cfs_entry(struct rq *rq, struct task_group *tg,
7108 struct cfs_rq *cfs_rq, struct sched_entity *se,
7109 int cpu, int add)
7110{
7111 tg->cfs_rq[cpu] = cfs_rq;
7112 init_cfs_rq(cfs_rq, rq);
7113 cfs_rq->tg = tg;
7114 if (add)
7115 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7116
7117 tg->se[cpu] = se;
7118 se->cfs_rq = &rq->cfs;
7119 se->my_q = cfs_rq;
7120 se->load.weight = tg->shares;
7121 se->load.inv_weight = div64_64(1ULL<<32, se->load.weight);
7122 se->parent = NULL;
7123}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007124#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007125
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007126#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007127static void init_tg_rt_entry(struct rq *rq, struct task_group *tg,
7128 struct rt_rq *rt_rq, struct sched_rt_entity *rt_se,
7129 int cpu, int add)
7130{
7131 tg->rt_rq[cpu] = rt_rq;
7132 init_rt_rq(rt_rq, rq);
7133 rt_rq->tg = tg;
7134 rt_rq->rt_se = rt_se;
7135 if (add)
7136 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7137
7138 tg->rt_se[cpu] = rt_se;
7139 rt_se->rt_rq = &rq->rt;
7140 rt_se->my_q = rt_rq;
7141 rt_se->parent = NULL;
7142 INIT_LIST_HEAD(&rt_se->run_list);
7143}
7144#endif
7145
Linus Torvalds1da177e2005-04-16 15:20:36 -07007146void __init sched_init(void)
7147{
Christoph Lameter476f3532007-05-06 14:48:58 -07007148 int highest_cpu = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007149 int i, j;
7150
Gregory Haskins57d885f2008-01-25 21:08:18 +01007151#ifdef CONFIG_SMP
7152 init_defrootdomain();
7153#endif
7154
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007155#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007156 list_add(&init_task_group.list, &task_groups);
7157#endif
7158
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007159 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007160 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161
7162 rq = cpu_rq(i);
7163 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007164 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007165 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007166 rq->clock = 1;
7167 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007168 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007169#ifdef CONFIG_FAIR_GROUP_SCHED
7170 init_task_group.shares = init_task_group_load;
7171 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
7172 init_tg_cfs_entry(rq, &init_task_group,
7173 &per_cpu(init_cfs_rq, i),
7174 &per_cpu(init_sched_entity, i), i, 1);
7175
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007176#endif
7177#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007178 init_task_group.rt_runtime =
7179 sysctl_sched_rt_runtime * NSEC_PER_USEC;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007180 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
7181 init_tg_rt_entry(rq, &init_task_group,
7182 &per_cpu(init_rt_rq, i),
7183 &per_cpu(init_sched_rt_entity, i), i, 1);
7184#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007185 rq->rt_period_expire = 0;
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007186 rq->rt_throttled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007187
Ingo Molnardd41f592007-07-09 18:51:59 +02007188 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7189 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007190#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007191 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007192 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007193 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007194 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007195 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007196 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007197 rq->migration_thread = NULL;
7198 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007199 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007200#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007201 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202 atomic_set(&rq->nr_iowait, 0);
Christoph Lameter476f3532007-05-06 14:48:58 -07007203 highest_cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007204 }
7205
Peter Williams2dd73a42006-06-27 02:54:34 -07007206 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007207
Avi Kivitye107be32007-07-26 13:40:43 +02007208#ifdef CONFIG_PREEMPT_NOTIFIERS
7209 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7210#endif
7211
Christoph Lameterc9819f42006-12-10 02:20:25 -08007212#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07007213 nr_cpu_ids = highest_cpu + 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08007214 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7215#endif
7216
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007217#ifdef CONFIG_RT_MUTEXES
7218 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7219#endif
7220
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221 /*
7222 * The boot idle thread does lazy MMU switching as well:
7223 */
7224 atomic_inc(&init_mm.mm_count);
7225 enter_lazy_tlb(&init_mm, current);
7226
7227 /*
7228 * Make us the idle thread. Technically, schedule() should not be
7229 * called from this thread, however somewhere below it might be,
7230 * but because we are the idle thread, we just pick up running again
7231 * when this runqueue becomes "idle".
7232 */
7233 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02007234 /*
7235 * During early bootup we pretend to be a normal task:
7236 */
7237 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007238
7239 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007240}
7241
7242#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7243void __might_sleep(char *file, int line)
7244{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007245#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007246 static unsigned long prev_jiffy; /* ratelimiting */
7247
7248 if ((in_atomic() || irqs_disabled()) &&
7249 system_state == SYSTEM_RUNNING && !oops_in_progress) {
7250 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7251 return;
7252 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08007253 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254 " context at %s:%d\n", file, line);
7255 printk("in_atomic():%d, irqs_disabled():%d\n",
7256 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007257 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007258 if (irqs_disabled())
7259 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260 dump_stack();
7261 }
7262#endif
7263}
7264EXPORT_SYMBOL(__might_sleep);
7265#endif
7266
7267#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007268static void normalize_task(struct rq *rq, struct task_struct *p)
7269{
7270 int on_rq;
7271 update_rq_clock(rq);
7272 on_rq = p->se.on_rq;
7273 if (on_rq)
7274 deactivate_task(rq, p, 0);
7275 __setscheduler(rq, p, SCHED_NORMAL, 0);
7276 if (on_rq) {
7277 activate_task(rq, p, 0);
7278 resched_task(rq->curr);
7279 }
7280}
7281
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282void normalize_rt_tasks(void)
7283{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007284 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007285 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007286 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007288 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007289 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007290 /*
7291 * Only normalize user tasks:
7292 */
7293 if (!p->mm)
7294 continue;
7295
Ingo Molnardd41f592007-07-09 18:51:59 +02007296 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007297#ifdef CONFIG_SCHEDSTATS
7298 p->se.wait_start = 0;
7299 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007300 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007301#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007302 task_rq(p)->clock = 0;
7303
7304 if (!rt_task(p)) {
7305 /*
7306 * Renice negative nice level userspace
7307 * tasks back to 0:
7308 */
7309 if (TASK_NICE(p) < 0 && p->mm)
7310 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007311 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007314 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007315 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316
Ingo Molnar178be792007-10-15 17:00:18 +02007317 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007318
Ingo Molnarb29739f2006-06-27 02:54:51 -07007319 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007320 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007321 } while_each_thread(g, p);
7322
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007323 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007324}
7325
7326#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007327
7328#ifdef CONFIG_IA64
7329/*
7330 * These functions are only useful for the IA64 MCA handling.
7331 *
7332 * They can only be called when the whole system has been
7333 * stopped - every CPU needs to be quiescent, and no scheduling
7334 * activity can take place. Using them for anything else would
7335 * be a serious bug, and as a result, they aren't even visible
7336 * under any other configuration.
7337 */
7338
7339/**
7340 * curr_task - return the current task for a given cpu.
7341 * @cpu: the processor in question.
7342 *
7343 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7344 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007345struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007346{
7347 return cpu_curr(cpu);
7348}
7349
7350/**
7351 * set_curr_task - set the current task for a given cpu.
7352 * @cpu: the processor in question.
7353 * @p: the task pointer to set.
7354 *
7355 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007356 * are serviced on a separate stack. It allows the architecture to switch the
7357 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007358 * must be called with all CPU's synchronized, and interrupts disabled, the
7359 * and caller must save the original value of the current task (see
7360 * curr_task() above) and restore that value before reenabling interrupts and
7361 * re-starting the system.
7362 *
7363 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7364 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007365void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007366{
7367 cpu_curr(cpu) = p;
7368}
7369
7370#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007371
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007372#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007373
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007374#ifdef CONFIG_FAIR_GROUP_SCHED
7375static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007376{
7377 int i;
7378
7379 for_each_possible_cpu(i) {
7380 if (tg->cfs_rq)
7381 kfree(tg->cfs_rq[i]);
7382 if (tg->se)
7383 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007384 }
7385
7386 kfree(tg->cfs_rq);
7387 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007388}
7389
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007390static int alloc_fair_sched_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007391{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007392 struct cfs_rq *cfs_rq;
7393 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007394 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007395 int i;
7396
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007397 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007398 if (!tg->cfs_rq)
7399 goto err;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007400 tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007401 if (!tg->se)
7402 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007403
7404 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007405
7406 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007407 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007408
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007409 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
7410 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007411 if (!cfs_rq)
7412 goto err;
7413
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007414 se = kmalloc_node(sizeof(struct sched_entity),
7415 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007416 if (!se)
7417 goto err;
7418
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007419 init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007420 }
7421
7422 return 1;
7423
7424 err:
7425 return 0;
7426}
7427
7428static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7429{
7430 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
7431 &cpu_rq(cpu)->leaf_cfs_rq_list);
7432}
7433
7434static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7435{
7436 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
7437}
7438#else
7439static inline void free_fair_sched_group(struct task_group *tg)
7440{
7441}
7442
7443static inline int alloc_fair_sched_group(struct task_group *tg)
7444{
7445 return 1;
7446}
7447
7448static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7449{
7450}
7451
7452static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7453{
7454}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007455#endif
7456
7457#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007458static void free_rt_sched_group(struct task_group *tg)
7459{
7460 int i;
7461
7462 for_each_possible_cpu(i) {
7463 if (tg->rt_rq)
7464 kfree(tg->rt_rq[i]);
7465 if (tg->rt_se)
7466 kfree(tg->rt_se[i]);
7467 }
7468
7469 kfree(tg->rt_rq);
7470 kfree(tg->rt_se);
7471}
7472
7473static int alloc_rt_sched_group(struct task_group *tg)
7474{
7475 struct rt_rq *rt_rq;
7476 struct sched_rt_entity *rt_se;
7477 struct rq *rq;
7478 int i;
7479
7480 tg->rt_rq = kzalloc(sizeof(rt_rq) * NR_CPUS, GFP_KERNEL);
7481 if (!tg->rt_rq)
7482 goto err;
7483 tg->rt_se = kzalloc(sizeof(rt_se) * NR_CPUS, GFP_KERNEL);
7484 if (!tg->rt_se)
7485 goto err;
7486
7487 tg->rt_runtime = 0;
7488
7489 for_each_possible_cpu(i) {
7490 rq = cpu_rq(i);
7491
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007492 rt_rq = kmalloc_node(sizeof(struct rt_rq),
7493 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7494 if (!rt_rq)
7495 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007496
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007497 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
7498 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7499 if (!rt_se)
7500 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007501
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007502 init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007503 }
7504
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007505 return 1;
7506
7507 err:
7508 return 0;
7509}
7510
7511static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7512{
7513 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
7514 &cpu_rq(cpu)->leaf_rt_rq_list);
7515}
7516
7517static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7518{
7519 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
7520}
7521#else
7522static inline void free_rt_sched_group(struct task_group *tg)
7523{
7524}
7525
7526static inline int alloc_rt_sched_group(struct task_group *tg)
7527{
7528 return 1;
7529}
7530
7531static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7532{
7533}
7534
7535static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7536{
7537}
7538#endif
7539
7540static void free_sched_group(struct task_group *tg)
7541{
7542 free_fair_sched_group(tg);
7543 free_rt_sched_group(tg);
7544 kfree(tg);
7545}
7546
7547/* allocate runqueue etc for a new task group */
7548struct task_group *sched_create_group(void)
7549{
7550 struct task_group *tg;
7551 unsigned long flags;
7552 int i;
7553
7554 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7555 if (!tg)
7556 return ERR_PTR(-ENOMEM);
7557
7558 if (!alloc_fair_sched_group(tg))
7559 goto err;
7560
7561 if (!alloc_rt_sched_group(tg))
7562 goto err;
7563
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007564 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007565 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007566 register_fair_sched_group(tg, i);
7567 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007568 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007569 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007570 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007571
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007572 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007573
7574err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007575 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007576 return ERR_PTR(-ENOMEM);
7577}
7578
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007579/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007580static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007581{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007582 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007583 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007584}
7585
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007586/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007587void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007588{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007589 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007590 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007591
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007592 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007593 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007594 unregister_fair_sched_group(tg, i);
7595 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007596 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007597 list_del_rcu(&tg->list);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007598 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007599
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007600 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007601 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007602}
7603
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007604/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007605 * The caller of this function should have put the task in its new group
7606 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7607 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007608 */
7609void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007610{
7611 int on_rq, running;
7612 unsigned long flags;
7613 struct rq *rq;
7614
7615 rq = task_rq_lock(tsk, &flags);
7616
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007617 update_rq_clock(rq);
7618
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007619 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007620 on_rq = tsk->se.on_rq;
7621
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007622 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007623 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007624 if (unlikely(running))
7625 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007626
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007627 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007628
Peter Zijlstra810b3812008-02-29 15:21:01 -05007629#ifdef CONFIG_FAIR_GROUP_SCHED
7630 if (tsk->sched_class->moved_group)
7631 tsk->sched_class->moved_group(tsk);
7632#endif
7633
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007634 if (unlikely(running))
7635 tsk->sched_class->set_curr_task(rq);
7636 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02007637 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007638
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007639 task_rq_unlock(rq, &flags);
7640}
7641
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007642#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007643static void set_se_shares(struct sched_entity *se, unsigned long shares)
7644{
7645 struct cfs_rq *cfs_rq = se->cfs_rq;
7646 struct rq *rq = cfs_rq->rq;
7647 int on_rq;
7648
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007649 spin_lock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007650
7651 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007652 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007653 dequeue_entity(cfs_rq, se, 0);
7654
7655 se->load.weight = shares;
7656 se->load.inv_weight = div64_64((1ULL<<32), shares);
7657
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007658 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007659 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007660
7661 spin_unlock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007662}
7663
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007664static DEFINE_MUTEX(shares_mutex);
7665
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007666int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007667{
7668 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007669 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01007670
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007671 /*
7672 * A weight of 0 or 1 can cause arithmetics problems.
7673 * (The default weight is 1024 - so there's no practical
7674 * limitation from this.)
7675 */
7676 if (shares < 2)
7677 shares = 2;
7678
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007679 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007680 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007681 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007682
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007683 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007684 for_each_possible_cpu(i)
7685 unregister_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007686 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007687
7688 /* wait for any ongoing reference to this group to finish */
7689 synchronize_sched();
7690
7691 /*
7692 * Now we are free to modify the group's share on each cpu
7693 * w/o tripping rebalance_share or load_balance_fair.
7694 */
7695 tg->shares = shares;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01007696 for_each_possible_cpu(i)
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007697 set_se_shares(tg->se[i], shares);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007698
7699 /*
7700 * Enable load balance activity on this group, by inserting it back on
7701 * each cpu's rq->leaf_cfs_rq_list.
7702 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007703 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007704 for_each_possible_cpu(i)
7705 register_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007706 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007707done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007708 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007709 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007710}
7711
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007712unsigned long sched_group_shares(struct task_group *tg)
7713{
7714 return tg->shares;
7715}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007716#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007717
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007718#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007719/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007720 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007721 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007722static DEFINE_MUTEX(rt_constraints_mutex);
7723
7724static unsigned long to_ratio(u64 period, u64 runtime)
7725{
7726 if (runtime == RUNTIME_INF)
7727 return 1ULL << 16;
7728
Peter Zijlstra2692a242008-02-27 12:00:46 +01007729 return div64_64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007730}
7731
7732static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007733{
7734 struct task_group *tgi;
7735 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007736 unsigned long global_ratio =
7737 to_ratio(sysctl_sched_rt_period,
7738 sysctl_sched_rt_runtime < 0 ?
7739 RUNTIME_INF : sysctl_sched_rt_runtime);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007740
7741 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007742 list_for_each_entry_rcu(tgi, &task_groups, list) {
7743 if (tgi == tg)
7744 continue;
7745
7746 total += to_ratio(period, tgi->rt_runtime);
7747 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007748 rcu_read_unlock();
7749
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007750 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007751}
7752
Dhaval Giani521f1a242008-02-28 15:21:56 +05307753/* Must be called with tasklist_lock held */
7754static inline int tg_has_rt_tasks(struct task_group *tg)
7755{
7756 struct task_struct *g, *p;
7757 do_each_thread(g, p) {
7758 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
7759 return 1;
7760 } while_each_thread(g, p);
7761 return 0;
7762}
7763
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007764int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007765{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007766 u64 rt_runtime, rt_period;
7767 int err = 0;
7768
Peter Zijlstra2692a242008-02-27 12:00:46 +01007769 rt_period = (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007770 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7771 if (rt_runtime_us == -1)
Peter Zijlstra2692a242008-02-27 12:00:46 +01007772 rt_runtime = RUNTIME_INF;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007773
7774 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05307775 read_lock(&tasklist_lock);
7776 if (rt_runtime_us == 0 && tg_has_rt_tasks(tg)) {
7777 err = -EBUSY;
7778 goto unlock;
7779 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007780 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
7781 err = -EINVAL;
7782 goto unlock;
7783 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007784 tg->rt_runtime = rt_runtime;
7785 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05307786 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007787 mutex_unlock(&rt_constraints_mutex);
7788
7789 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007790}
7791
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007792long sched_group_rt_runtime(struct task_group *tg)
7793{
7794 u64 rt_runtime_us;
7795
7796 if (tg->rt_runtime == RUNTIME_INF)
7797 return -1;
7798
7799 rt_runtime_us = tg->rt_runtime;
7800 do_div(rt_runtime_us, NSEC_PER_USEC);
7801 return rt_runtime_us;
7802}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007803#endif
7804#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007805
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007806#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007807
7808/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007809static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007810{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007811 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
7812 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007813}
7814
7815static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02007816cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007817{
7818 struct task_group *tg;
7819
Paul Menage2b01dfe2007-10-24 18:23:50 +02007820 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007821 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007822 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007823 return &init_task_group.css;
7824 }
7825
7826 /* we support only 1-level deep hierarchical scheduler atm */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007827 if (cgrp->parent->parent)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007828 return ERR_PTR(-EINVAL);
7829
7830 tg = sched_create_group();
7831 if (IS_ERR(tg))
7832 return ERR_PTR(-ENOMEM);
7833
7834 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007835 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007836
7837 return &tg->css;
7838}
7839
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007840static void
7841cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007842{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007843 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007844
7845 sched_destroy_group(tg);
7846}
7847
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007848static int
7849cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
7850 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007851{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007852#ifdef CONFIG_RT_GROUP_SCHED
7853 /* Don't accept realtime tasks when there is no way for them to run */
7854 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_runtime == 0)
7855 return -EINVAL;
7856#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007857 /* We don't support RT-tasks being in separate groups */
7858 if (tsk->sched_class != &fair_sched_class)
7859 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007860#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007861
7862 return 0;
7863}
7864
7865static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02007866cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007867 struct cgroup *old_cont, struct task_struct *tsk)
7868{
7869 sched_move_task(tsk);
7870}
7871
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007872#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menage2b01dfe2007-10-24 18:23:50 +02007873static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
7874 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007875{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007876 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007877}
7878
Paul Menage2b01dfe2007-10-24 18:23:50 +02007879static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007880{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007881 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007882
7883 return (u64) tg->shares;
7884}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007885#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007886
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007887#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007888static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
7889 struct file *file,
7890 const char __user *userbuf,
7891 size_t nbytes, loff_t *unused_ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007892{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007893 char buffer[64];
7894 int retval = 0;
7895 s64 val;
7896 char *end;
7897
7898 if (!nbytes)
7899 return -EINVAL;
7900 if (nbytes >= sizeof(buffer))
7901 return -E2BIG;
7902 if (copy_from_user(buffer, userbuf, nbytes))
7903 return -EFAULT;
7904
7905 buffer[nbytes] = 0; /* nul-terminate */
7906
7907 /* strip newline if necessary */
7908 if (nbytes && (buffer[nbytes-1] == '\n'))
7909 buffer[nbytes-1] = 0;
7910 val = simple_strtoll(buffer, &end, 0);
7911 if (*end)
7912 return -EINVAL;
7913
7914 /* Pass to subsystem */
7915 retval = sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
7916 if (!retval)
7917 retval = nbytes;
7918 return retval;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007919}
7920
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007921static ssize_t cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft,
7922 struct file *file,
7923 char __user *buf, size_t nbytes,
7924 loff_t *ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007925{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007926 char tmp[64];
7927 long val = sched_group_rt_runtime(cgroup_tg(cgrp));
7928 int len = sprintf(tmp, "%ld\n", val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007929
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007930 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007931}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007932#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007933
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007934static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007935#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007936 {
7937 .name = "shares",
7938 .read_uint = cpu_shares_read_uint,
7939 .write_uint = cpu_shares_write_uint,
7940 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007941#endif
7942#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007943 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007944 .name = "rt_runtime_us",
7945 .read = cpu_rt_runtime_read,
7946 .write = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007947 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007948#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007949};
7950
7951static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
7952{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007953 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007954}
7955
7956struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01007957 .name = "cpu",
7958 .create = cpu_cgroup_create,
7959 .destroy = cpu_cgroup_destroy,
7960 .can_attach = cpu_cgroup_can_attach,
7961 .attach = cpu_cgroup_attach,
7962 .populate = cpu_cgroup_populate,
7963 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007964 .early_init = 1,
7965};
7966
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007967#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01007968
7969#ifdef CONFIG_CGROUP_CPUACCT
7970
7971/*
7972 * CPU accounting code for task groups.
7973 *
7974 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
7975 * (balbir@in.ibm.com).
7976 */
7977
7978/* track cpu usage of a group of tasks */
7979struct cpuacct {
7980 struct cgroup_subsys_state css;
7981 /* cpuusage holds pointer to a u64-type object on every cpu */
7982 u64 *cpuusage;
7983};
7984
7985struct cgroup_subsys cpuacct_subsys;
7986
7987/* return cpu accounting group corresponding to this container */
7988static inline struct cpuacct *cgroup_ca(struct cgroup *cont)
7989{
7990 return container_of(cgroup_subsys_state(cont, cpuacct_subsys_id),
7991 struct cpuacct, css);
7992}
7993
7994/* return cpu accounting group to which this task belongs */
7995static inline struct cpuacct *task_ca(struct task_struct *tsk)
7996{
7997 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
7998 struct cpuacct, css);
7999}
8000
8001/* create a new cpu accounting group */
8002static struct cgroup_subsys_state *cpuacct_create(
8003 struct cgroup_subsys *ss, struct cgroup *cont)
8004{
8005 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
8006
8007 if (!ca)
8008 return ERR_PTR(-ENOMEM);
8009
8010 ca->cpuusage = alloc_percpu(u64);
8011 if (!ca->cpuusage) {
8012 kfree(ca);
8013 return ERR_PTR(-ENOMEM);
8014 }
8015
8016 return &ca->css;
8017}
8018
8019/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008020static void
8021cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008022{
8023 struct cpuacct *ca = cgroup_ca(cont);
8024
8025 free_percpu(ca->cpuusage);
8026 kfree(ca);
8027}
8028
8029/* return total cpu usage (in nanoseconds) of a group */
8030static u64 cpuusage_read(struct cgroup *cont, struct cftype *cft)
8031{
8032 struct cpuacct *ca = cgroup_ca(cont);
8033 u64 totalcpuusage = 0;
8034 int i;
8035
8036 for_each_possible_cpu(i) {
8037 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8038
8039 /*
8040 * Take rq->lock to make 64-bit addition safe on 32-bit
8041 * platforms.
8042 */
8043 spin_lock_irq(&cpu_rq(i)->lock);
8044 totalcpuusage += *cpuusage;
8045 spin_unlock_irq(&cpu_rq(i)->lock);
8046 }
8047
8048 return totalcpuusage;
8049}
8050
8051static struct cftype files[] = {
8052 {
8053 .name = "usage",
8054 .read_uint = cpuusage_read,
8055 },
8056};
8057
8058static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8059{
8060 return cgroup_add_files(cont, ss, files, ARRAY_SIZE(files));
8061}
8062
8063/*
8064 * charge this task's execution time to its accounting group.
8065 *
8066 * called with rq->lock held.
8067 */
8068static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
8069{
8070 struct cpuacct *ca;
8071
8072 if (!cpuacct_subsys.active)
8073 return;
8074
8075 ca = task_ca(tsk);
8076 if (ca) {
8077 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
8078
8079 *cpuusage += cputime;
8080 }
8081}
8082
8083struct cgroup_subsys cpuacct_subsys = {
8084 .name = "cpuacct",
8085 .create = cpuacct_create,
8086 .destroy = cpuacct_destroy,
8087 .populate = cpuacct_populate,
8088 .subsys_id = cpuacct_subsys_id,
8089};
8090#endif /* CONFIG_CGROUP_CPUACCT */