blob: dae20199dc9cb4d6bf1a2529a140630d9d3c856c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * kernel/sched.c
3 *
4 * Kernel scheduler and related syscalls
5 *
6 * Copyright (C) 1991-2002 Linus Torvalds
7 *
8 * 1996-12-23 Modified by Dave Grothe to fix bugs in semaphores and
9 * make semaphores SMP safe
10 * 1998-11-19 Implemented schedule_timeout() and related stuff
11 * by Andrea Arcangeli
12 * 2002-01-04 New ultra-scalable O(1) scheduler by Ingo Molnar:
13 * hybrid priority-list and round-robin design with
14 * an array-switch method of distributing timeslices
15 * and per-CPU runqueues. Cleanups and useful suggestions
16 * by Davide Libenzi, preemptible kernel bits by Robert Love.
17 * 2003-09-03 Interactivity tuning by Con Kolivas.
18 * 2004-04-02 Scheduler domains code by Nick Piggin
Ingo Molnarc31f2e82007-07-09 18:52:01 +020019 * 2007-04-15 Work begun on replacing all interactivity tuning with a
20 * fair scheduling design by Con Kolivas.
21 * 2007-05-05 Load balancing (smp-nice) and other improvements
22 * by Peter Williams
23 * 2007-05-06 Interactivity improvements to CFS by Mike Galbraith
24 * 2007-07-01 Group scheduling enhancements by Srivatsa Vaddagiri
Ingo Molnarb9131762008-01-25 21:08:19 +010025 * 2007-11-29 RT balancing improvements by Steven Rostedt, Gregory Haskins,
26 * Thomas Gleixner, Mike Kravetz
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
29#include <linux/mm.h>
30#include <linux/module.h>
31#include <linux/nmi.h>
32#include <linux/init.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020033#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/highmem.h>
35#include <linux/smp_lock.h>
36#include <asm/mmu_context.h>
37#include <linux/interrupt.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080038#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/completion.h>
40#include <linux/kernel_stat.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070041#include <linux/debug_locks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/security.h>
43#include <linux/notifier.h>
44#include <linux/profile.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080045#include <linux/freezer.h>
akpm@osdl.org198e2f12006-01-12 01:05:30 -080046#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/blkdev.h>
48#include <linux/delay.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070049#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/smp.h>
51#include <linux/threads.h>
52#include <linux/timer.h>
53#include <linux/rcupdate.h>
54#include <linux/cpu.h>
55#include <linux/cpuset.h>
56#include <linux/percpu.h>
57#include <linux/kthread.h>
58#include <linux/seq_file.h>
Nick Piggine692ab52007-07-26 13:40:43 +020059#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/syscalls.h>
61#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070062#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080063#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070064#include <linux/delayacct.h>
Eric Dumazet5517d862007-05-08 00:32:57 -070065#include <linux/reciprocal_div.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020066#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020067#include <linux/pagemap.h>
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010068#include <linux/hrtimer.h>
Reynes Philippe30914a52008-03-17 16:19:05 -070069#include <linux/tick.h>
Mike Travis434d53b2008-04-04 18:11:04 -070070#include <linux/bootmem.h>
Peter Zijlstraf00b45c2008-04-19 19:45:00 +020071#include <linux/debugfs.h>
72#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Eric Dumazet5517d862007-05-08 00:32:57 -070074#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020075#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Gregory Haskins6e0534f2008-05-12 21:21:01 +020077#include "sched_cpupri.h"
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
80 * Convert user-nice values [ -20 ... 0 ... 19 ]
81 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
82 * and back.
83 */
84#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
85#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
86#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
87
88/*
89 * 'User priority' is the nice value converted to something we
90 * can work with better when scaling various scheduler parameters,
91 * it's a [ 0 ... 39 ] range.
92 */
93#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
94#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
95#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
96
97/*
Ingo Molnard7876a02008-01-25 21:08:19 +010098 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100100#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200102#define NICE_0_LOAD SCHED_LOAD_SCALE
103#define NICE_0_SHIFT SCHED_LOAD_SHIFT
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*
106 * These are the 'tuning knobs' of the scheduler:
107 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200108 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * Timeslices get refilled after they expire.
110 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700112
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200113/*
114 * single value that denotes runtime == period, ie unlimited time.
115 */
116#define RUNTIME_INF ((u64)~0ULL)
117
Eric Dumazet5517d862007-05-08 00:32:57 -0700118#ifdef CONFIG_SMP
119/*
120 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
121 * Since cpu_power is a 'constant', we can use a reciprocal divide.
122 */
123static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
124{
125 return reciprocal_divide(load, sg->reciprocal_cpu_power);
126}
127
128/*
129 * Each time a sched group cpu_power is changed,
130 * we must compute its reciprocal value
131 */
132static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
133{
134 sg->__cpu_power += val;
135 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
136}
137#endif
138
Ingo Molnare05606d2007-07-09 18:51:59 +0200139static inline int rt_policy(int policy)
140{
Roel Kluin3f33a7c2008-05-13 23:44:11 +0200141 if (unlikely(policy == SCHED_FIFO || policy == SCHED_RR))
Ingo Molnare05606d2007-07-09 18:51:59 +0200142 return 1;
143 return 0;
144}
145
146static inline int task_has_rt_policy(struct task_struct *p)
147{
148 return rt_policy(p->policy);
149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200152 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200154struct rt_prio_array {
155 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
Dmitry Adamushko20b63312008-06-11 00:58:30 +0200156 struct list_head queue[MAX_RT_PRIO];
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200157};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200159struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100160 /* nests inside the rq lock: */
161 spinlock_t rt_runtime_lock;
162 ktime_t rt_period;
163 u64 rt_runtime;
164 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200165};
166
167static struct rt_bandwidth def_rt_bandwidth;
168
169static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
170
171static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
172{
173 struct rt_bandwidth *rt_b =
174 container_of(timer, struct rt_bandwidth, rt_period_timer);
175 ktime_t now;
176 int overrun;
177 int idle = 0;
178
179 for (;;) {
180 now = hrtimer_cb_get_time(timer);
181 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
182
183 if (!overrun)
184 break;
185
186 idle = do_sched_rt_period_timer(rt_b, overrun);
187 }
188
189 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
190}
191
192static
193void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
194{
195 rt_b->rt_period = ns_to_ktime(period);
196 rt_b->rt_runtime = runtime;
197
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200198 spin_lock_init(&rt_b->rt_runtime_lock);
199
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200200 hrtimer_init(&rt_b->rt_period_timer,
201 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
202 rt_b->rt_period_timer.function = sched_rt_period_timer;
203 rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
204}
205
206static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
207{
208 ktime_t now;
209
210 if (rt_b->rt_runtime == RUNTIME_INF)
211 return;
212
213 if (hrtimer_active(&rt_b->rt_period_timer))
214 return;
215
216 spin_lock(&rt_b->rt_runtime_lock);
217 for (;;) {
218 if (hrtimer_active(&rt_b->rt_period_timer))
219 break;
220
221 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
222 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
223 hrtimer_start(&rt_b->rt_period_timer,
224 rt_b->rt_period_timer.expires,
225 HRTIMER_MODE_ABS);
226 }
227 spin_unlock(&rt_b->rt_runtime_lock);
228}
229
230#ifdef CONFIG_RT_GROUP_SCHED
231static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
232{
233 hrtimer_cancel(&rt_b->rt_period_timer);
234}
235#endif
236
Heiko Carstens712555e2008-04-28 11:33:07 +0200237/*
238 * sched_domains_mutex serializes calls to arch_init_sched_domains,
239 * detach_destroy_domains and partition_sched_domains.
240 */
241static DEFINE_MUTEX(sched_domains_mutex);
242
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100243#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200244
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700245#include <linux/cgroup.h>
246
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200247struct cfs_rq;
248
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100249static LIST_HEAD(task_groups);
250
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200251/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200252struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100253#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700254 struct cgroup_subsys_state css;
255#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100256
257#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200258 /* schedulable entities of this group on each cpu */
259 struct sched_entity **se;
260 /* runqueue "owned" by this group on each cpu */
261 struct cfs_rq **cfs_rq;
262 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100263#endif
264
265#ifdef CONFIG_RT_GROUP_SCHED
266 struct sched_rt_entity **rt_se;
267 struct rt_rq **rt_rq;
268
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200269 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100270#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100271
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100272 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100273 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200274
275 struct task_group *parent;
276 struct list_head siblings;
277 struct list_head children;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200278};
279
Dhaval Giani354d60c2008-04-19 19:44:59 +0200280#ifdef CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200281
282/*
283 * Root task group.
284 * Every UID task group (including init_task_group aka UID-0) will
285 * be a child to this group.
286 */
287struct task_group root_task_group;
288
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100289#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200290/* Default task group's sched entity on each cpu */
291static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
292/* Default task group's cfs_rq on each cpu */
293static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200294#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100295
296#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100297static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
298static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200299#endif /* CONFIG_RT_GROUP_SCHED */
300#else /* !CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200301#define root_task_group init_task_group
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200302#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100303
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100304/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100305 * a task group's cpu shares.
306 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100307static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100308
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100309#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100310#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100311# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200312#else /* !CONFIG_USER_SCHED */
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100313# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200314#endif /* CONFIG_USER_SCHED */
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200315
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800316/*
Lai Jiangshan2e084782008-06-12 16:42:58 +0800317 * A weight of 0 or 1 can cause arithmetics problems.
318 * A weight of a cfs_rq is the sum of weights of which entities
319 * are queued on this cfs_rq, so a weight of a entity should not be
320 * too large, so as the shares value of a task group.
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800321 * (The default weight is 1024 - so there's no practical
322 * limitation from this.)
323 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200324#define MIN_SHARES 2
Lai Jiangshan2e084782008-06-12 16:42:58 +0800325#define MAX_SHARES (1UL << 18)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200326
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100327static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100328#endif
329
330/* Default task group.
331 * Every task in system belong to this group at bootup.
332 */
Mike Travis434d53b2008-04-04 18:11:04 -0700333struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200334
335/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200336static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200337{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200338 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200339
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100340#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200341 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100342#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700343 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
344 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200345#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100346 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200347#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200348 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200349}
350
351/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100352static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200353{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100354#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100355 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
356 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100357#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100358
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100359#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100360 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
361 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100362#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200363}
364
365#else
366
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100367static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200368
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100369#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200370
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200371/* CFS-related fields in a runqueue */
372struct cfs_rq {
373 struct load_weight load;
374 unsigned long nr_running;
375
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200376 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200377 u64 min_vruntime;
Peter Zijlstra103638d92008-06-27 13:41:16 +0200378 u64 pair_start;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200379
380 struct rb_root tasks_timeline;
381 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200382
383 struct list_head tasks;
384 struct list_head *balance_iterator;
385
386 /*
387 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200388 * It is set to NULL otherwise (i.e when none are currently running).
389 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100390 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200391
392 unsigned long nr_spread_over;
393
Ingo Molnar62160e3f2007-10-15 17:00:03 +0200394#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200395 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
396
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100397 /*
398 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200399 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
400 * (like users, containers etc.)
401 *
402 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
403 * list is used during load balance.
404 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100405 struct list_head leaf_cfs_rq_list;
406 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200407
408#ifdef CONFIG_SMP
409 unsigned long task_weight;
410 unsigned long shares;
411 /*
412 * We need space to build a sched_domain wide view of the full task
413 * group tree, in order to avoid depending on dynamic memory allocation
414 * during the load balancing we place this in the per cpu task group
415 * hierarchy. This limits the load balancing to one instance per cpu,
416 * but more should not be needed anyway.
417 */
418 struct aggregate_struct {
419 /*
420 * load = weight(cpus) * f(tg)
421 *
422 * Where f(tg) is the recursive weight fraction assigned to
423 * this group.
424 */
425 unsigned long load;
426
427 /*
428 * part of the group weight distributed to this span.
429 */
430 unsigned long shares;
431
432 /*
433 * The sum of all runqueue weights within this span.
434 */
435 unsigned long rq_weight;
436
437 /*
438 * Weight contributed by tasks; this is the part we can
439 * influence by moving tasks around.
440 */
441 unsigned long task_weight;
442 } aggregate;
443#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200444#endif
445};
446
447/* Real-Time classes' related field in a runqueue: */
448struct rt_rq {
449 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100450 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100451#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100452 int highest_prio; /* highest queued rt task prio */
453#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100454#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100455 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100456 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100457#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100458 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100459 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200460 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100461 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200462 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100463
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100464#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100465 unsigned long rt_nr_boosted;
466
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100467 struct rq *rq;
468 struct list_head leaf_rt_rq_list;
469 struct task_group *tg;
470 struct sched_rt_entity *rt_se;
471#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200472};
473
Gregory Haskins57d885f2008-01-25 21:08:18 +0100474#ifdef CONFIG_SMP
475
476/*
477 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100478 * variables. Each exclusive cpuset essentially defines an island domain by
479 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100480 * exclusive cpuset is created, we also create and attach a new root-domain
481 * object.
482 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100483 */
484struct root_domain {
485 atomic_t refcount;
486 cpumask_t span;
487 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100488
Ingo Molnar0eab9142008-01-25 21:08:19 +0100489 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100490 * The "RT overload" flag: it gets set if a CPU has more than
491 * one runnable RT task.
492 */
493 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100494 atomic_t rto_count;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200495#ifdef CONFIG_SMP
496 struct cpupri cpupri;
497#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +0100498};
499
Gregory Haskinsdc938522008-01-25 21:08:26 +0100500/*
501 * By default the system creates a single root-domain with all cpus as
502 * members (mimicking the global state we have today).
503 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100504static struct root_domain def_root_domain;
505
506#endif
507
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200508/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * This is the main, per-CPU runqueue data structure.
510 *
511 * Locking rule: those places that want to lock multiple runqueues
512 * (such as the load balancing or the thread migration code), lock
513 * acquire operations must be ordered by ascending &runqueue.
514 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700515struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200516 /* runqueue lock: */
517 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 /*
520 * nr_running and cpu_load should be in the same cacheline because
521 * remote CPUs use both these fields when doing load calculation.
522 */
523 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200524 #define CPU_LOAD_IDX_MAX 5
525 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700526 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700527#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200528 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700529 unsigned char in_nohz_recently;
530#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200531 /* capture load from *all* tasks on this cpu: */
532 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200533 unsigned long nr_load_updates;
534 u64 nr_switches;
535
536 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100537 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100538
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200539#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200540 /* list of leaf cfs_rq on this cpu: */
541 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100542#endif
543#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100544 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 /*
548 * This is part of a global counter where only the total sum
549 * over all CPUs matters. A task can increase this counter on
550 * one CPU and if it got migrated afterwards it may decrease
551 * it on another CPU. Always updated under the runqueue lock:
552 */
553 unsigned long nr_uninterruptible;
554
Ingo Molnar36c8b582006-07-03 00:25:41 -0700555 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800556 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200558
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200559 u64 clock;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 atomic_t nr_iowait;
562
563#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100564 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 struct sched_domain *sd;
566
567 /* For active balancing */
568 int active_balance;
569 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200570 /* cpu of this runqueue: */
571 int cpu;
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400572 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Ingo Molnar36c8b582006-07-03 00:25:41 -0700574 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 struct list_head migration_queue;
576#endif
577
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100578#ifdef CONFIG_SCHED_HRTICK
579 unsigned long hrtick_flags;
580 ktime_t hrtick_expire;
581 struct hrtimer hrtick_timer;
582#endif
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584#ifdef CONFIG_SCHEDSTATS
585 /* latency stats */
586 struct sched_info rq_sched_info;
587
588 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200589 unsigned int yld_exp_empty;
590 unsigned int yld_act_empty;
591 unsigned int yld_both_empty;
592 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200595 unsigned int sched_switch;
596 unsigned int sched_count;
597 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200600 unsigned int ttwu_count;
601 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200602
603 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200604 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700606 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607};
608
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700609static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Ingo Molnardd41f592007-07-09 18:51:59 +0200611static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
612{
613 rq->curr->sched_class->check_preempt_curr(rq, p);
614}
615
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700616static inline int cpu_of(struct rq *rq)
617{
618#ifdef CONFIG_SMP
619 return rq->cpu;
620#else
621 return 0;
622#endif
623}
624
Ingo Molnar20d315d2007-07-09 18:51:58 +0200625/*
Nick Piggin674311d2005-06-25 14:57:27 -0700626 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700627 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700628 *
629 * The domain tree of any CPU may only be accessed from within
630 * preempt-disabled sections.
631 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700632#define for_each_domain(cpu, __sd) \
633 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
636#define this_rq() (&__get_cpu_var(runqueues))
637#define task_rq(p) cpu_rq(task_cpu(p))
638#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
639
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200640static inline void update_rq_clock(struct rq *rq)
641{
642 rq->clock = sched_clock_cpu(cpu_of(rq));
643}
644
Ingo Molnare436d802007-07-19 21:28:35 +0200645/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200646 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
647 */
648#ifdef CONFIG_SCHED_DEBUG
649# define const_debug __read_mostly
650#else
651# define const_debug static const
652#endif
653
654/*
655 * Debugging: various feature bits
656 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200657
658#define SCHED_FEAT(name, enabled) \
659 __SCHED_FEAT_##name ,
660
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200661enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200662#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200663};
664
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200665#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200666
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200667#define SCHED_FEAT(name, enabled) \
668 (1UL << __SCHED_FEAT_##name) * enabled |
669
670const_debug unsigned int sysctl_sched_features =
671#include "sched_features.h"
672 0;
673
674#undef SCHED_FEAT
675
676#ifdef CONFIG_SCHED_DEBUG
677#define SCHED_FEAT(name, enabled) \
678 #name ,
679
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700680static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200681#include "sched_features.h"
682 NULL
683};
684
685#undef SCHED_FEAT
686
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700687static int sched_feat_open(struct inode *inode, struct file *filp)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200688{
689 filp->private_data = inode->i_private;
690 return 0;
691}
692
693static ssize_t
694sched_feat_read(struct file *filp, char __user *ubuf,
695 size_t cnt, loff_t *ppos)
696{
697 char *buf;
698 int r = 0;
699 int len = 0;
700 int i;
701
702 for (i = 0; sched_feat_names[i]; i++) {
703 len += strlen(sched_feat_names[i]);
704 len += 4;
705 }
706
707 buf = kmalloc(len + 2, GFP_KERNEL);
708 if (!buf)
709 return -ENOMEM;
710
711 for (i = 0; sched_feat_names[i]; i++) {
712 if (sysctl_sched_features & (1UL << i))
713 r += sprintf(buf + r, "%s ", sched_feat_names[i]);
714 else
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200715 r += sprintf(buf + r, "NO_%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200716 }
717
718 r += sprintf(buf + r, "\n");
719 WARN_ON(r >= len + 2);
720
721 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
722
723 kfree(buf);
724
725 return r;
726}
727
728static ssize_t
729sched_feat_write(struct file *filp, const char __user *ubuf,
730 size_t cnt, loff_t *ppos)
731{
732 char buf[64];
733 char *cmp = buf;
734 int neg = 0;
735 int i;
736
737 if (cnt > 63)
738 cnt = 63;
739
740 if (copy_from_user(&buf, ubuf, cnt))
741 return -EFAULT;
742
743 buf[cnt] = 0;
744
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200745 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200746 neg = 1;
747 cmp += 3;
748 }
749
750 for (i = 0; sched_feat_names[i]; i++) {
751 int len = strlen(sched_feat_names[i]);
752
753 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
754 if (neg)
755 sysctl_sched_features &= ~(1UL << i);
756 else
757 sysctl_sched_features |= (1UL << i);
758 break;
759 }
760 }
761
762 if (!sched_feat_names[i])
763 return -EINVAL;
764
765 filp->f_pos += cnt;
766
767 return cnt;
768}
769
770static struct file_operations sched_feat_fops = {
771 .open = sched_feat_open,
772 .read = sched_feat_read,
773 .write = sched_feat_write,
774};
775
776static __init int sched_init_debug(void)
777{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200778 debugfs_create_file("sched_features", 0644, NULL, NULL,
779 &sched_feat_fops);
780
781 return 0;
782}
783late_initcall(sched_init_debug);
784
785#endif
786
787#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200788
789/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100790 * Number of tasks to iterate in a single balance run.
791 * Limited because this is done with IRQs disabled.
792 */
793const_debug unsigned int sysctl_sched_nr_migrate = 32;
794
795/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100796 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100797 * default: 1s
798 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100799unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100800
Ingo Molnar6892b752008-02-13 14:02:36 +0100801static __read_mostly int scheduler_running;
802
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100803/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100804 * part of the period that we allow rt tasks to run in us.
805 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100806 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100807int sysctl_sched_rt_runtime = 950000;
808
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200809static inline u64 global_rt_period(void)
810{
811 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
812}
813
814static inline u64 global_rt_runtime(void)
815{
816 if (sysctl_sched_rt_period < 0)
817 return RUNTIME_INF;
818
819 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
820}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700823# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700825#ifndef finish_arch_switch
826# define finish_arch_switch(prev) do { } while (0)
827#endif
828
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100829static inline int task_current(struct rq *rq, struct task_struct *p)
830{
831 return rq->curr == p;
832}
833
Nick Piggin4866cde2005-06-25 14:57:23 -0700834#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700835static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700836{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100837 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700838}
839
Ingo Molnar70b97a72006-07-03 00:25:42 -0700840static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700841{
842}
843
Ingo Molnar70b97a72006-07-03 00:25:42 -0700844static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700845{
Ingo Molnarda04c032005-09-13 11:17:59 +0200846#ifdef CONFIG_DEBUG_SPINLOCK
847 /* this is a valid case when another task releases the spinlock */
848 rq->lock.owner = current;
849#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700850 /*
851 * If we are tracking spinlock dependencies then we have to
852 * fix up the runqueue lock - which gets 'carried over' from
853 * prev into current:
854 */
855 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
856
Nick Piggin4866cde2005-06-25 14:57:23 -0700857 spin_unlock_irq(&rq->lock);
858}
859
860#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700861static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700862{
863#ifdef CONFIG_SMP
864 return p->oncpu;
865#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100866 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700867#endif
868}
869
Ingo Molnar70b97a72006-07-03 00:25:42 -0700870static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700871{
872#ifdef CONFIG_SMP
873 /*
874 * We can optimise this out completely for !SMP, because the
875 * SMP rebalancing from interrupt is the only thing that cares
876 * here.
877 */
878 next->oncpu = 1;
879#endif
880#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
881 spin_unlock_irq(&rq->lock);
882#else
883 spin_unlock(&rq->lock);
884#endif
885}
886
Ingo Molnar70b97a72006-07-03 00:25:42 -0700887static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700888{
889#ifdef CONFIG_SMP
890 /*
891 * After ->oncpu is cleared, the task can be moved to a different CPU.
892 * We must ensure this doesn't happen until the switch is completely
893 * finished.
894 */
895 smp_wmb();
896 prev->oncpu = 0;
897#endif
898#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
899 local_irq_enable();
900#endif
901}
902#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700905 * __task_rq_lock - lock the runqueue a given task resides on.
906 * Must be called interrupts disabled.
907 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700908static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700909 __acquires(rq->lock)
910{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200911 for (;;) {
912 struct rq *rq = task_rq(p);
913 spin_lock(&rq->lock);
914 if (likely(rq == task_rq(p)))
915 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700916 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700917 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700918}
919
920/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100922 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 * explicitly disabling preemption.
924 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700925static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 __acquires(rq->lock)
927{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700928 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Andi Kleen3a5c3592007-10-15 17:00:14 +0200930 for (;;) {
931 local_irq_save(*flags);
932 rq = task_rq(p);
933 spin_lock(&rq->lock);
934 if (likely(rq == task_rq(p)))
935 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Alexey Dobriyana9957442007-10-15 17:00:13 +0200940static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700941 __releases(rq->lock)
942{
943 spin_unlock(&rq->lock);
944}
945
Ingo Molnar70b97a72006-07-03 00:25:42 -0700946static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 __releases(rq->lock)
948{
949 spin_unlock_irqrestore(&rq->lock, *flags);
950}
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800953 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200955static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 __acquires(rq->lock)
957{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700958 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 local_irq_disable();
961 rq = this_rq();
962 spin_lock(&rq->lock);
963
964 return rq;
965}
966
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100967static void __resched_task(struct task_struct *p, int tif_bit);
968
969static inline void resched_task(struct task_struct *p)
970{
971 __resched_task(p, TIF_NEED_RESCHED);
972}
973
974#ifdef CONFIG_SCHED_HRTICK
975/*
976 * Use HR-timers to deliver accurate preemption points.
977 *
978 * Its all a bit involved since we cannot program an hrt while holding the
979 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
980 * reschedule event.
981 *
982 * When we get rescheduled we reprogram the hrtick_timer outside of the
983 * rq->lock.
984 */
985static inline void resched_hrt(struct task_struct *p)
986{
987 __resched_task(p, TIF_HRTICK_RESCHED);
988}
989
990static inline void resched_rq(struct rq *rq)
991{
992 unsigned long flags;
993
994 spin_lock_irqsave(&rq->lock, flags);
995 resched_task(rq->curr);
996 spin_unlock_irqrestore(&rq->lock, flags);
997}
998
999enum {
1000 HRTICK_SET, /* re-programm hrtick_timer */
1001 HRTICK_RESET, /* not a new slice */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001002 HRTICK_BLOCK, /* stop hrtick operations */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001003};
1004
1005/*
1006 * Use hrtick when:
1007 * - enabled by features
1008 * - hrtimer is actually high res
1009 */
1010static inline int hrtick_enabled(struct rq *rq)
1011{
1012 if (!sched_feat(HRTICK))
1013 return 0;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001014 if (unlikely(test_bit(HRTICK_BLOCK, &rq->hrtick_flags)))
1015 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001016 return hrtimer_is_hres_active(&rq->hrtick_timer);
1017}
1018
1019/*
1020 * Called to set the hrtick timer state.
1021 *
1022 * called with rq->lock held and irqs disabled
1023 */
1024static void hrtick_start(struct rq *rq, u64 delay, int reset)
1025{
1026 assert_spin_locked(&rq->lock);
1027
1028 /*
1029 * preempt at: now + delay
1030 */
1031 rq->hrtick_expire =
1032 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
1033 /*
1034 * indicate we need to program the timer
1035 */
1036 __set_bit(HRTICK_SET, &rq->hrtick_flags);
1037 if (reset)
1038 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
1039
1040 /*
1041 * New slices are called from the schedule path and don't need a
1042 * forced reschedule.
1043 */
1044 if (reset)
1045 resched_hrt(rq->curr);
1046}
1047
1048static void hrtick_clear(struct rq *rq)
1049{
1050 if (hrtimer_active(&rq->hrtick_timer))
1051 hrtimer_cancel(&rq->hrtick_timer);
1052}
1053
1054/*
1055 * Update the timer from the possible pending state.
1056 */
1057static void hrtick_set(struct rq *rq)
1058{
1059 ktime_t time;
1060 int set, reset;
1061 unsigned long flags;
1062
1063 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1064
1065 spin_lock_irqsave(&rq->lock, flags);
1066 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1067 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1068 time = rq->hrtick_expire;
1069 clear_thread_flag(TIF_HRTICK_RESCHED);
1070 spin_unlock_irqrestore(&rq->lock, flags);
1071
1072 if (set) {
1073 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1074 if (reset && !hrtimer_active(&rq->hrtick_timer))
1075 resched_rq(rq);
1076 } else
1077 hrtick_clear(rq);
1078}
1079
1080/*
1081 * High-resolution timer tick.
1082 * Runs from hardirq context with interrupts disabled.
1083 */
1084static enum hrtimer_restart hrtick(struct hrtimer *timer)
1085{
1086 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1087
1088 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1089
1090 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001091 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001092 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1093 spin_unlock(&rq->lock);
1094
1095 return HRTIMER_NORESTART;
1096}
1097
Rabin Vincent81d41d72008-05-11 05:55:33 +05301098#ifdef CONFIG_SMP
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001099static void hotplug_hrtick_disable(int cpu)
1100{
1101 struct rq *rq = cpu_rq(cpu);
1102 unsigned long flags;
1103
1104 spin_lock_irqsave(&rq->lock, flags);
1105 rq->hrtick_flags = 0;
1106 __set_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1107 spin_unlock_irqrestore(&rq->lock, flags);
1108
1109 hrtick_clear(rq);
1110}
1111
1112static void hotplug_hrtick_enable(int cpu)
1113{
1114 struct rq *rq = cpu_rq(cpu);
1115 unsigned long flags;
1116
1117 spin_lock_irqsave(&rq->lock, flags);
1118 __clear_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1119 spin_unlock_irqrestore(&rq->lock, flags);
1120}
1121
1122static int
1123hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1124{
1125 int cpu = (int)(long)hcpu;
1126
1127 switch (action) {
1128 case CPU_UP_CANCELED:
1129 case CPU_UP_CANCELED_FROZEN:
1130 case CPU_DOWN_PREPARE:
1131 case CPU_DOWN_PREPARE_FROZEN:
1132 case CPU_DEAD:
1133 case CPU_DEAD_FROZEN:
1134 hotplug_hrtick_disable(cpu);
1135 return NOTIFY_OK;
1136
1137 case CPU_UP_PREPARE:
1138 case CPU_UP_PREPARE_FROZEN:
1139 case CPU_DOWN_FAILED:
1140 case CPU_DOWN_FAILED_FROZEN:
1141 case CPU_ONLINE:
1142 case CPU_ONLINE_FROZEN:
1143 hotplug_hrtick_enable(cpu);
1144 return NOTIFY_OK;
1145 }
1146
1147 return NOTIFY_DONE;
1148}
1149
1150static void init_hrtick(void)
1151{
1152 hotcpu_notifier(hotplug_hrtick, 0);
1153}
Rabin Vincent81d41d72008-05-11 05:55:33 +05301154#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001155
1156static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001157{
1158 rq->hrtick_flags = 0;
1159 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1160 rq->hrtick_timer.function = hrtick;
1161 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1162}
1163
1164void hrtick_resched(void)
1165{
1166 struct rq *rq;
1167 unsigned long flags;
1168
1169 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1170 return;
1171
1172 local_irq_save(flags);
1173 rq = cpu_rq(smp_processor_id());
1174 hrtick_set(rq);
1175 local_irq_restore(flags);
1176}
1177#else
1178static inline void hrtick_clear(struct rq *rq)
1179{
1180}
1181
1182static inline void hrtick_set(struct rq *rq)
1183{
1184}
1185
1186static inline void init_rq_hrtick(struct rq *rq)
1187{
1188}
1189
1190void hrtick_resched(void)
1191{
1192}
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001193
1194static inline void init_hrtick(void)
1195{
1196}
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001197#endif
1198
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001199/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001200 * resched_task - mark a task 'to be rescheduled now'.
1201 *
1202 * On UP this means the setting of the need_resched flag, on SMP it
1203 * might also involve a cross-CPU call to trigger the scheduler on
1204 * the target CPU.
1205 */
1206#ifdef CONFIG_SMP
1207
1208#ifndef tsk_is_polling
1209#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1210#endif
1211
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001212static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001213{
1214 int cpu;
1215
1216 assert_spin_locked(&task_rq(p)->lock);
1217
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001218 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001219 return;
1220
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001221 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001222
1223 cpu = task_cpu(p);
1224 if (cpu == smp_processor_id())
1225 return;
1226
1227 /* NEED_RESCHED must be visible before we test polling */
1228 smp_mb();
1229 if (!tsk_is_polling(p))
1230 smp_send_reschedule(cpu);
1231}
1232
1233static void resched_cpu(int cpu)
1234{
1235 struct rq *rq = cpu_rq(cpu);
1236 unsigned long flags;
1237
1238 if (!spin_trylock_irqsave(&rq->lock, flags))
1239 return;
1240 resched_task(cpu_curr(cpu));
1241 spin_unlock_irqrestore(&rq->lock, flags);
1242}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001243
1244#ifdef CONFIG_NO_HZ
1245/*
1246 * When add_timer_on() enqueues a timer into the timer wheel of an
1247 * idle CPU then this timer might expire before the next timer event
1248 * which is scheduled to wake up that CPU. In case of a completely
1249 * idle system the next event might even be infinite time into the
1250 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1251 * leaves the inner idle loop so the newly added timer is taken into
1252 * account when the CPU goes back to idle and evaluates the timer
1253 * wheel for the next timer event.
1254 */
1255void wake_up_idle_cpu(int cpu)
1256{
1257 struct rq *rq = cpu_rq(cpu);
1258
1259 if (cpu == smp_processor_id())
1260 return;
1261
1262 /*
1263 * This is safe, as this function is called with the timer
1264 * wheel base lock of (cpu) held. When the CPU is on the way
1265 * to idle and has not yet set rq->curr to idle then it will
1266 * be serialized on the timer wheel base lock and take the new
1267 * timer into account automatically.
1268 */
1269 if (rq->curr != rq->idle)
1270 return;
1271
1272 /*
1273 * We can set TIF_RESCHED on the idle task of the other CPU
1274 * lockless. The worst case is that the other CPU runs the
1275 * idle task through an additional NOOP schedule()
1276 */
1277 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1278
1279 /* NEED_RESCHED must be visible before we test polling */
1280 smp_mb();
1281 if (!tsk_is_polling(rq->idle))
1282 smp_send_reschedule(cpu);
1283}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001284#endif /* CONFIG_NO_HZ */
Thomas Gleixner06d83082008-03-22 09:20:24 +01001285
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001286#else /* !CONFIG_SMP */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001287static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001288{
1289 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001290 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001291}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001292#endif /* CONFIG_SMP */
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001293
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001294#if BITS_PER_LONG == 32
1295# define WMULT_CONST (~0UL)
1296#else
1297# define WMULT_CONST (1UL << 32)
1298#endif
1299
1300#define WMULT_SHIFT 32
1301
Ingo Molnar194081e2007-08-09 11:16:51 +02001302/*
1303 * Shift right and round:
1304 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001305#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001306
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001307/*
1308 * delta *= weight / lw
1309 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001310static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001311calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1312 struct load_weight *lw)
1313{
1314 u64 tmp;
1315
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001316 if (!lw->inv_weight) {
1317 if (BITS_PER_LONG > 32 && unlikely(lw->weight >= WMULT_CONST))
1318 lw->inv_weight = 1;
1319 else
1320 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)
1321 / (lw->weight+1);
1322 }
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001323
1324 tmp = (u64)delta_exec * weight;
1325 /*
1326 * Check whether we'd overflow the 64-bit multiplication:
1327 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001328 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001329 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001330 WMULT_SHIFT/2);
1331 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001332 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001333
Ingo Molnarecf691d2007-08-02 17:41:40 +02001334 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001335}
1336
Ingo Molnar10919852007-10-15 17:00:04 +02001337static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001338{
1339 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001340 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001341}
1342
Ingo Molnar10919852007-10-15 17:00:04 +02001343static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001344{
1345 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001346 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001347}
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001350 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1351 * of tasks with abnormal "nice" values across CPUs the contribution that
1352 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001353 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001354 * scaled version of the new time slice allocation that they receive on time
1355 * slice expiry etc.
1356 */
1357
Ingo Molnardd41f592007-07-09 18:51:59 +02001358#define WEIGHT_IDLEPRIO 2
1359#define WMULT_IDLEPRIO (1 << 31)
1360
1361/*
1362 * Nice levels are multiplicative, with a gentle 10% change for every
1363 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1364 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1365 * that remained on nice 0.
1366 *
1367 * The "10% effect" is relative and cumulative: from _any_ nice level,
1368 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001369 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1370 * If a task goes up by ~10% and another task goes down by ~10% then
1371 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001372 */
1373static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001374 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1375 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1376 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1377 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1378 /* 0 */ 1024, 820, 655, 526, 423,
1379 /* 5 */ 335, 272, 215, 172, 137,
1380 /* 10 */ 110, 87, 70, 56, 45,
1381 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001382};
1383
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001384/*
1385 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1386 *
1387 * In cases where the weight does not change often, we can use the
1388 * precalculated inverse to speed up arithmetics by turning divisions
1389 * into multiplications:
1390 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001391static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001392 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1393 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1394 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1395 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1396 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1397 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1398 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1399 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001400};
Peter Williams2dd73a42006-06-27 02:54:34 -07001401
Ingo Molnardd41f592007-07-09 18:51:59 +02001402static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1403
1404/*
1405 * runqueue iterator, to support SMP load-balancing between different
1406 * scheduling classes, without having to expose their internal data
1407 * structures to the load-balancing proper:
1408 */
1409struct rq_iterator {
1410 void *arg;
1411 struct task_struct *(*start)(void *);
1412 struct task_struct *(*next)(void *);
1413};
1414
Peter Williamse1d14842007-10-24 18:23:51 +02001415#ifdef CONFIG_SMP
1416static unsigned long
1417balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1418 unsigned long max_load_move, struct sched_domain *sd,
1419 enum cpu_idle_type idle, int *all_pinned,
1420 int *this_best_prio, struct rq_iterator *iterator);
1421
1422static int
1423iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1424 struct sched_domain *sd, enum cpu_idle_type idle,
1425 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001426#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001427
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001428#ifdef CONFIG_CGROUP_CPUACCT
1429static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1430#else
1431static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1432#endif
1433
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001434static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1435{
1436 update_load_add(&rq->load, load);
1437}
1438
1439static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1440{
1441 update_load_sub(&rq->load, load);
1442}
1443
Gregory Haskinse7693a32008-01-25 21:08:09 +01001444#ifdef CONFIG_SMP
1445static unsigned long source_load(int cpu, int type);
1446static unsigned long target_load(int cpu, int type);
1447static unsigned long cpu_avg_load_per_task(int cpu);
1448static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001449
1450#ifdef CONFIG_FAIR_GROUP_SCHED
1451
1452/*
1453 * Group load balancing.
1454 *
1455 * We calculate a few balance domain wide aggregate numbers; load and weight.
1456 * Given the pictures below, and assuming each item has equal weight:
1457 *
1458 * root 1 - thread
1459 * / | \ A - group
1460 * A 1 B
1461 * /|\ / \
1462 * C 2 D 3 4
1463 * | |
1464 * 5 6
1465 *
1466 * load:
1467 * A and B get 1/3-rd of the total load. C and D get 1/3-rd of A's 1/3-rd,
1468 * which equals 1/9-th of the total load.
1469 *
1470 * shares:
1471 * The weight of this group on the selected cpus.
1472 *
1473 * rq_weight:
1474 * Direct sum of all the cpu's their rq weight, e.g. A would get 3 while
1475 * B would get 2.
1476 *
1477 * task_weight:
1478 * Part of the rq_weight contributed by tasks; all groups except B would
1479 * get 1, B gets 2.
1480 */
1481
1482static inline struct aggregate_struct *
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001483aggregate(struct task_group *tg, int cpu)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001484{
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001485 return &tg->cfs_rq[cpu]->aggregate;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001486}
1487
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001488typedef void (*aggregate_func)(struct task_group *, int, struct sched_domain *);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001489
1490/*
1491 * Iterate the full tree, calling @down when first entering a node and @up when
1492 * leaving it for the final time.
1493 */
1494static
1495void aggregate_walk_tree(aggregate_func down, aggregate_func up,
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001496 int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001497{
1498 struct task_group *parent, *child;
1499
1500 rcu_read_lock();
1501 parent = &root_task_group;
1502down:
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001503 (*down)(parent, cpu, sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001504 list_for_each_entry_rcu(child, &parent->children, siblings) {
1505 parent = child;
1506 goto down;
1507
1508up:
1509 continue;
1510 }
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001511 (*up)(parent, cpu, sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001512
1513 child = parent;
1514 parent = parent->parent;
1515 if (parent)
1516 goto up;
1517 rcu_read_unlock();
1518}
1519
1520/*
1521 * Calculate the aggregate runqueue weight.
1522 */
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001523static void
1524aggregate_group_weight(struct task_group *tg, int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001525{
1526 unsigned long rq_weight = 0;
1527 unsigned long task_weight = 0;
1528 int i;
1529
1530 for_each_cpu_mask(i, sd->span) {
1531 rq_weight += tg->cfs_rq[i]->load.weight;
1532 task_weight += tg->cfs_rq[i]->task_weight;
1533 }
1534
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001535 aggregate(tg, cpu)->rq_weight = rq_weight;
1536 aggregate(tg, cpu)->task_weight = task_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001537}
1538
1539/*
1540 * Compute the weight of this group on the given cpus.
1541 */
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001542static void
1543aggregate_group_shares(struct task_group *tg, int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001544{
1545 unsigned long shares = 0;
1546 int i;
1547
1548 for_each_cpu_mask(i, sd->span)
1549 shares += tg->cfs_rq[i]->shares;
1550
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001551 if ((!shares && aggregate(tg, cpu)->rq_weight) || shares > tg->shares)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001552 shares = tg->shares;
1553
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001554 aggregate(tg, cpu)->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001555}
1556
1557/*
1558 * Compute the load fraction assigned to this group, relies on the aggregate
1559 * weight and this group's parent's load, i.e. top-down.
1560 */
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001561static void
1562aggregate_group_load(struct task_group *tg, int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001563{
1564 unsigned long load;
1565
1566 if (!tg->parent) {
1567 int i;
1568
1569 load = 0;
1570 for_each_cpu_mask(i, sd->span)
1571 load += cpu_rq(i)->load.weight;
1572
1573 } else {
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001574 load = aggregate(tg->parent, cpu)->load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001575
1576 /*
1577 * shares is our weight in the parent's rq so
1578 * shares/parent->rq_weight gives our fraction of the load
1579 */
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001580 load *= aggregate(tg, cpu)->shares;
1581 load /= aggregate(tg->parent, cpu)->rq_weight + 1;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001582 }
1583
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001584 aggregate(tg, cpu)->load = load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001585}
1586
1587static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1588
1589/*
1590 * Calculate and set the cpu's group shares.
1591 */
1592static void
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001593__update_group_shares_cpu(struct task_group *tg, int cpu,
1594 struct sched_domain *sd, int tcpu)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001595{
1596 int boost = 0;
1597 unsigned long shares;
1598 unsigned long rq_weight;
1599
1600 if (!tg->se[tcpu])
1601 return;
1602
1603 rq_weight = tg->cfs_rq[tcpu]->load.weight;
1604
1605 /*
1606 * If there are currently no tasks on the cpu pretend there is one of
1607 * average load so that when a new task gets to run here it will not
1608 * get delayed by group starvation.
1609 */
1610 if (!rq_weight) {
1611 boost = 1;
1612 rq_weight = NICE_0_LOAD;
1613 }
1614
1615 /*
1616 * \Sum shares * rq_weight
1617 * shares = -----------------------
1618 * \Sum rq_weight
1619 *
1620 */
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001621 shares = aggregate(tg, cpu)->shares * rq_weight;
1622 shares /= aggregate(tg, cpu)->rq_weight + 1;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001623
1624 /*
1625 * record the actual number of shares, not the boosted amount.
1626 */
1627 tg->cfs_rq[tcpu]->shares = boost ? 0 : shares;
1628
1629 if (shares < MIN_SHARES)
1630 shares = MIN_SHARES;
1631 else if (shares > MAX_SHARES)
1632 shares = MAX_SHARES;
1633
1634 __set_se_shares(tg->se[tcpu], shares);
1635}
1636
1637/*
1638 * Re-adjust the weights on the cpu the task came from and on the cpu the
1639 * task went to.
1640 */
1641static void
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001642__move_group_shares(struct task_group *tg, int cpu, struct sched_domain *sd,
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001643 int scpu, int dcpu)
1644{
1645 unsigned long shares;
1646
1647 shares = tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1648
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001649 __update_group_shares_cpu(tg, cpu, sd, scpu);
1650 __update_group_shares_cpu(tg, cpu, sd, dcpu);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001651
1652 /*
1653 * ensure we never loose shares due to rounding errors in the
1654 * above redistribution.
1655 */
1656 shares -= tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1657 if (shares)
1658 tg->cfs_rq[dcpu]->shares += shares;
1659}
1660
1661/*
1662 * Because changing a group's shares changes the weight of the super-group
1663 * we need to walk up the tree and change all shares until we hit the root.
1664 */
1665static void
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001666move_group_shares(struct task_group *tg, int cpu, struct sched_domain *sd,
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001667 int scpu, int dcpu)
1668{
1669 while (tg) {
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001670 __move_group_shares(tg, cpu, sd, scpu, dcpu);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001671 tg = tg->parent;
1672 }
1673}
1674
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001675static void
1676aggregate_group_set_shares(struct task_group *tg, int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001677{
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001678 unsigned long shares = aggregate(tg, cpu)->shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001679 int i;
1680
1681 for_each_cpu_mask(i, sd->span) {
1682 struct rq *rq = cpu_rq(i);
1683 unsigned long flags;
1684
1685 spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001686 __update_group_shares_cpu(tg, cpu, sd, i);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001687 spin_unlock_irqrestore(&rq->lock, flags);
1688 }
1689
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001690 aggregate_group_shares(tg, cpu, sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001691
1692 /*
1693 * ensure we never loose shares due to rounding errors in the
1694 * above redistribution.
1695 */
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001696 shares -= aggregate(tg, cpu)->shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001697 if (shares) {
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001698 tg->cfs_rq[cpu]->shares += shares;
1699 aggregate(tg, cpu)->shares += shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001700 }
1701}
1702
1703/*
1704 * Calculate the accumulative weight and recursive load of each task group
1705 * while walking down the tree.
1706 */
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001707static void
1708aggregate_get_down(struct task_group *tg, int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001709{
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001710 aggregate_group_weight(tg, cpu, sd);
1711 aggregate_group_shares(tg, cpu, sd);
1712 aggregate_group_load(tg, cpu, sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001713}
1714
1715/*
1716 * Rebalance the cpu shares while walking back up the tree.
1717 */
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001718static void
1719aggregate_get_up(struct task_group *tg, int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001720{
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001721 aggregate_group_set_shares(tg, cpu, sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001722}
1723
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001724static void
1725aggregate_get_nop(struct task_group *tg, int cpu, struct sched_domain *sd)
1726{
1727}
1728
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001729static DEFINE_PER_CPU(spinlock_t, aggregate_lock);
1730
1731static void __init init_aggregate(void)
1732{
1733 int i;
1734
1735 for_each_possible_cpu(i)
1736 spin_lock_init(&per_cpu(aggregate_lock, i));
1737}
1738
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001739static int get_aggregate(int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001740{
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001741 if (!spin_trylock(&per_cpu(aggregate_lock, cpu)))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001742 return 0;
1743
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001744 aggregate_walk_tree(aggregate_get_down, aggregate_get_up, cpu, sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001745 return 1;
1746}
1747
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001748static void update_aggregate(int cpu, struct sched_domain *sd)
1749{
1750 aggregate_walk_tree(aggregate_get_down, aggregate_get_nop, cpu, sd);
1751}
1752
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001753static void put_aggregate(int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001754{
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001755 spin_unlock(&per_cpu(aggregate_lock, cpu));
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001756}
1757
1758static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1759{
1760 cfs_rq->shares = shares;
1761}
1762
1763#else
1764
1765static inline void init_aggregate(void)
1766{
1767}
1768
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001769static inline int get_aggregate(int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001770{
1771 return 0;
1772}
1773
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001774static inline void update_aggregate(int cpu, struct sched_domain *sd)
1775{
1776}
1777
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001778static inline void put_aggregate(int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001779{
1780}
1781#endif
1782
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001783#endif
1784
Ingo Molnardd41f592007-07-09 18:51:59 +02001785#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001786#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001787#include "sched_fair.c"
1788#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001789#ifdef CONFIG_SCHED_DEBUG
1790# include "sched_debug.c"
1791#endif
1792
1793#define sched_class_highest (&rt_sched_class)
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001794#define for_each_class(class) \
1795 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001796
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001797static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001798{
1799 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001800}
1801
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001802static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001803{
1804 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001805}
1806
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001807static void set_load_weight(struct task_struct *p)
1808{
1809 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001810 p->se.load.weight = prio_to_weight[0] * 2;
1811 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1812 return;
1813 }
1814
1815 /*
1816 * SCHED_IDLE tasks get minimal weight:
1817 */
1818 if (p->policy == SCHED_IDLE) {
1819 p->se.load.weight = WEIGHT_IDLEPRIO;
1820 p->se.load.inv_weight = WMULT_IDLEPRIO;
1821 return;
1822 }
1823
1824 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1825 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001826}
1827
Ingo Molnar8159f872007-08-09 11:16:49 +02001828static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001829{
1830 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001831 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001832 p->se.on_rq = 1;
1833}
1834
Ingo Molnar69be72c2007-08-09 11:16:49 +02001835static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001836{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001837 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001838 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001839}
1840
1841/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001842 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001843 */
Ingo Molnar14531182007-07-09 18:51:59 +02001844static inline int __normal_prio(struct task_struct *p)
1845{
Ingo Molnardd41f592007-07-09 18:51:59 +02001846 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001847}
1848
1849/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001850 * Calculate the expected normal priority: i.e. priority
1851 * without taking RT-inheritance into account. Might be
1852 * boosted by interactivity modifiers. Changes upon fork,
1853 * setprio syscalls, and whenever the interactivity
1854 * estimator recalculates.
1855 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001856static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001857{
1858 int prio;
1859
Ingo Molnare05606d2007-07-09 18:51:59 +02001860 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001861 prio = MAX_RT_PRIO-1 - p->rt_priority;
1862 else
1863 prio = __normal_prio(p);
1864 return prio;
1865}
1866
1867/*
1868 * Calculate the current priority, i.e. the priority
1869 * taken into account by the scheduler. This value might
1870 * be boosted by RT tasks, or might be boosted by
1871 * interactivity modifiers. Will be RT if the task got
1872 * RT-boosted. If not then it returns p->normal_prio.
1873 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001874static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001875{
1876 p->normal_prio = normal_prio(p);
1877 /*
1878 * If we are RT tasks or we were boosted to RT priority,
1879 * keep the priority unchanged. Otherwise, update priority
1880 * to the normal priority:
1881 */
1882 if (!rt_prio(p->prio))
1883 return p->normal_prio;
1884 return p->prio;
1885}
1886
1887/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001888 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001890static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001892 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001893 rq->nr_uninterruptible--;
1894
Ingo Molnar8159f872007-08-09 11:16:49 +02001895 enqueue_task(rq, p, wakeup);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001896 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897}
1898
1899/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 * deactivate_task - remove a task from the runqueue.
1901 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001902static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001904 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001905 rq->nr_uninterruptible++;
1906
Ingo Molnar69be72c2007-08-09 11:16:49 +02001907 dequeue_task(rq, p, sleep);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001908 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911/**
1912 * task_curr - is this task currently executing on a CPU?
1913 * @p: the task in question.
1914 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001915inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
1917 return cpu_curr(task_cpu(p)) == p;
1918}
1919
Ingo Molnardd41f592007-07-09 18:51:59 +02001920static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1921{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001922 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001923#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001924 /*
1925 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1926 * successfuly executed on another CPU. We must ensure that updates of
1927 * per-task data have been completed by this moment.
1928 */
1929 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001930 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001931#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001932}
1933
Steven Rostedtcb469842008-01-25 21:08:22 +01001934static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1935 const struct sched_class *prev_class,
1936 int oldprio, int running)
1937{
1938 if (prev_class != p->sched_class) {
1939 if (prev_class->switched_from)
1940 prev_class->switched_from(rq, p, running);
1941 p->sched_class->switched_to(rq, p, running);
1942 } else
1943 p->sched_class->prio_changed(rq, p, oldprio, running);
1944}
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001947
Thomas Gleixnere958b362008-06-04 23:22:32 +02001948/* Used instead of source_load when we know the type == 0 */
1949static unsigned long weighted_cpuload(const int cpu)
1950{
1951 return cpu_rq(cpu)->load.weight;
1952}
1953
Ingo Molnarcc367732007-10-15 17:00:18 +02001954/*
1955 * Is this task likely cache-hot:
1956 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001957static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001958task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1959{
1960 s64 delta;
1961
Ingo Molnarf540a602008-03-15 17:10:34 +01001962 /*
1963 * Buddy candidates are cache hot:
1964 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01001965 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01001966 return 1;
1967
Ingo Molnarcc367732007-10-15 17:00:18 +02001968 if (p->sched_class != &fair_sched_class)
1969 return 0;
1970
Ingo Molnar6bc16652007-10-15 17:00:18 +02001971 if (sysctl_sched_migration_cost == -1)
1972 return 1;
1973 if (sysctl_sched_migration_cost == 0)
1974 return 0;
1975
Ingo Molnarcc367732007-10-15 17:00:18 +02001976 delta = now - p->se.exec_start;
1977
1978 return delta < (s64)sysctl_sched_migration_cost;
1979}
1980
1981
Ingo Molnardd41f592007-07-09 18:51:59 +02001982void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001983{
Ingo Molnardd41f592007-07-09 18:51:59 +02001984 int old_cpu = task_cpu(p);
1985 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001986 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1987 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001988 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001989
1990 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001991
1992#ifdef CONFIG_SCHEDSTATS
1993 if (p->se.wait_start)
1994 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001995 if (p->se.sleep_start)
1996 p->se.sleep_start -= clock_offset;
1997 if (p->se.block_start)
1998 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001999 if (old_cpu != new_cpu) {
2000 schedstat_inc(p, se.nr_migrations);
2001 if (task_hot(p, old_rq->clock, NULL))
2002 schedstat_inc(p, se.nr_forced2_migrations);
2003 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002004#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002005 p->se.vruntime -= old_cfsrq->min_vruntime -
2006 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02002007
2008 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02002009}
2010
Ingo Molnar70b97a72006-07-03 00:25:42 -07002011struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Ingo Molnar36c8b582006-07-03 00:25:41 -07002014 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 int dest_cpu;
2016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002018};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020/*
2021 * The task's runqueue lock must be held.
2022 * Returns true if you have to wait for migration thread.
2023 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002024static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002025migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002027 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 /*
2030 * If the task is not on a runqueue (and not running), then
2031 * it is sufficient to simply update the task's cpu field.
2032 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002033 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 set_task_cpu(p, dest_cpu);
2035 return 0;
2036 }
2037
2038 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 req->task = p;
2040 req->dest_cpu = dest_cpu;
2041 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return 1;
2044}
2045
2046/*
2047 * wait_task_inactive - wait for a thread to unschedule.
2048 *
2049 * The caller must ensure that the task *will* unschedule sometime soon,
2050 * else this function might spin for a *long* time. This function can't
2051 * be called with interrupts off, or it may introduce deadlock with
2052 * smp_call_function() if an IPI is sent by the same process we are
2053 * waiting to become inactive.
2054 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002055void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
2057 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002058 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002059 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Andi Kleen3a5c3592007-10-15 17:00:14 +02002061 for (;;) {
2062 /*
2063 * We do the initial early heuristics without holding
2064 * any task-queue locks at all. We'll only try to get
2065 * the runqueue lock when things look like they will
2066 * work out!
2067 */
2068 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002069
Andi Kleen3a5c3592007-10-15 17:00:14 +02002070 /*
2071 * If the task is actively running on another CPU
2072 * still, just relax and busy-wait without holding
2073 * any locks.
2074 *
2075 * NOTE! Since we don't hold any locks, it's not
2076 * even sure that "rq" stays as the right runqueue!
2077 * But we don't care, since "task_running()" will
2078 * return false if the runqueue has changed and p
2079 * is actually now running somewhere else!
2080 */
2081 while (task_running(rq, p))
2082 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002083
Andi Kleen3a5c3592007-10-15 17:00:14 +02002084 /*
2085 * Ok, time to look more closely! We need the rq
2086 * lock now, to be *sure*. If we're wrong, we'll
2087 * just go back and repeat.
2088 */
2089 rq = task_rq_lock(p, &flags);
2090 running = task_running(rq, p);
2091 on_rq = p->se.on_rq;
2092 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002093
Andi Kleen3a5c3592007-10-15 17:00:14 +02002094 /*
2095 * Was it really running after all now that we
2096 * checked with the proper locks actually held?
2097 *
2098 * Oops. Go back and try again..
2099 */
2100 if (unlikely(running)) {
2101 cpu_relax();
2102 continue;
2103 }
2104
2105 /*
2106 * It's not enough that it's not actively running,
2107 * it must be off the runqueue _entirely_, and not
2108 * preempted!
2109 *
2110 * So if it wa still runnable (but just not actively
2111 * running right now), it's preempted, and we should
2112 * yield - it could be a while.
2113 */
2114 if (unlikely(on_rq)) {
2115 schedule_timeout_uninterruptible(1);
2116 continue;
2117 }
2118
2119 /*
2120 * Ahh, all good. It wasn't running, and it wasn't
2121 * runnable, which means that it will never become
2122 * running in the future either. We're all done!
2123 */
2124 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126}
2127
2128/***
2129 * kick_process - kick a running thread to enter/exit the kernel
2130 * @p: the to-be-kicked thread
2131 *
2132 * Cause a process which is running on another CPU to enter
2133 * kernel-mode, without any delay. (to get signals handled.)
2134 *
2135 * NOTE: this function doesnt have to take the runqueue lock,
2136 * because all it wants to ensure is that the remote task enters
2137 * the kernel. If the IPI races and the task has been migrated
2138 * to another CPU then no harm is done and the purpose has been
2139 * achieved as well.
2140 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002141void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
2143 int cpu;
2144
2145 preempt_disable();
2146 cpu = task_cpu(p);
2147 if ((cpu != smp_processor_id()) && task_curr(p))
2148 smp_send_reschedule(cpu);
2149 preempt_enable();
2150}
2151
2152/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002153 * Return a low guess at the load of a migration-source cpu weighted
2154 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 *
2156 * We want to under-estimate the load of migration sources, to
2157 * balance conservatively.
2158 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002159static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002160{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002161 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002162 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002163
Peter Williams2dd73a42006-06-27 02:54:34 -07002164 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002165 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002166
Ingo Molnardd41f592007-07-09 18:51:59 +02002167 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
2170/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002171 * Return a high guess at the load of a migration-target cpu weighted
2172 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002174static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002175{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002176 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002177 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002178
Peter Williams2dd73a42006-06-27 02:54:34 -07002179 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002180 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002181
Ingo Molnardd41f592007-07-09 18:51:59 +02002182 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002183}
2184
2185/*
2186 * Return the average load per task on the cpu's run queue
2187 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002188static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07002189{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002190 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002191 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07002192 unsigned long n = rq->nr_running;
2193
Ingo Molnardd41f592007-07-09 18:51:59 +02002194 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195}
2196
Nick Piggin147cbb42005-06-25 14:57:19 -07002197/*
2198 * find_idlest_group finds and returns the least busy CPU group within the
2199 * domain.
2200 */
2201static struct sched_group *
2202find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2203{
2204 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2205 unsigned long min_load = ULONG_MAX, this_load = 0;
2206 int load_idx = sd->forkexec_idx;
2207 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2208
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02002209 /*
2210 * now that we have both rqs locked the rq weight won't change
2211 * anymore - so update the stats.
2212 */
2213 update_aggregate(this_cpu, sd);
2214
Nick Piggin147cbb42005-06-25 14:57:19 -07002215 do {
2216 unsigned long load, avg_load;
2217 int local_group;
2218 int i;
2219
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002220 /* Skip over this group if it has no CPUs allowed */
2221 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002222 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002223
Nick Piggin147cbb42005-06-25 14:57:19 -07002224 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07002225
2226 /* Tally up the load of all CPUs in the group */
2227 avg_load = 0;
2228
2229 for_each_cpu_mask(i, group->cpumask) {
2230 /* Bias balancing toward cpus of our domain */
2231 if (local_group)
2232 load = source_load(i, load_idx);
2233 else
2234 load = target_load(i, load_idx);
2235
2236 avg_load += load;
2237 }
2238
2239 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002240 avg_load = sg_div_cpu_power(group,
2241 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002242
2243 if (local_group) {
2244 this_load = avg_load;
2245 this = group;
2246 } else if (avg_load < min_load) {
2247 min_load = avg_load;
2248 idlest = group;
2249 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002250 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002251
2252 if (!idlest || 100*this_load < imbalance*min_load)
2253 return NULL;
2254 return idlest;
2255}
2256
2257/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002258 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002259 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002260static int
Mike Travis7c16ec52008-04-04 18:11:11 -07002261find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
2262 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07002263{
2264 unsigned long load, min_load = ULONG_MAX;
2265 int idlest = -1;
2266 int i;
2267
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002268 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07002269 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002270
Mike Travis7c16ec52008-04-04 18:11:11 -07002271 for_each_cpu_mask(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002272 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002273
2274 if (load < min_load || (load == min_load && i == this_cpu)) {
2275 min_load = load;
2276 idlest = i;
2277 }
2278 }
2279
2280 return idlest;
2281}
2282
Nick Piggin476d1392005-06-25 14:57:29 -07002283/*
2284 * sched_balance_self: balance the current task (running on cpu) in domains
2285 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2286 * SD_BALANCE_EXEC.
2287 *
2288 * Balance, ie. select the least loaded group.
2289 *
2290 * Returns the target CPU number, or the same CPU if no balancing is needed.
2291 *
2292 * preempt must be disabled.
2293 */
2294static int sched_balance_self(int cpu, int flag)
2295{
2296 struct task_struct *t = current;
2297 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002298
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002299 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002300 /*
2301 * If power savings logic is enabled for a domain, stop there.
2302 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002303 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2304 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002305 if (tmp->flags & flag)
2306 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002307 }
Nick Piggin476d1392005-06-25 14:57:29 -07002308
2309 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07002310 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07002311 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002312 int new_cpu, weight;
2313
2314 if (!(sd->flags & flag)) {
2315 sd = sd->child;
2316 continue;
2317 }
Nick Piggin476d1392005-06-25 14:57:29 -07002318
2319 span = sd->span;
2320 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002321 if (!group) {
2322 sd = sd->child;
2323 continue;
2324 }
Nick Piggin476d1392005-06-25 14:57:29 -07002325
Mike Travis7c16ec52008-04-04 18:11:11 -07002326 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002327 if (new_cpu == -1 || new_cpu == cpu) {
2328 /* Now try balancing at a lower domain level of cpu */
2329 sd = sd->child;
2330 continue;
2331 }
Nick Piggin476d1392005-06-25 14:57:29 -07002332
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002333 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002334 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07002335 sd = NULL;
2336 weight = cpus_weight(span);
2337 for_each_domain(cpu, tmp) {
2338 if (weight <= cpus_weight(tmp->span))
2339 break;
2340 if (tmp->flags & flag)
2341 sd = tmp;
2342 }
2343 /* while loop will break here if sd == NULL */
2344 }
2345
2346 return cpu;
2347}
2348
2349#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351/***
2352 * try_to_wake_up - wake up a thread
2353 * @p: the to-be-woken-up thread
2354 * @state: the mask of task states that can be woken
2355 * @sync: do a synchronous wakeup?
2356 *
2357 * Put it on the run-queue if it's not already there. The "current"
2358 * thread is always on the run-queue (except when the actual
2359 * re-schedule is in progress), and as such you're allowed to do
2360 * the simpler "current->state = TASK_RUNNING" to mark yourself
2361 * runnable without the overhead of this.
2362 *
2363 * returns failure only if the task is already active.
2364 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002365static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366{
Ingo Molnarcc367732007-10-15 17:00:18 +02002367 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 unsigned long flags;
2369 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002370 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
Ingo Molnarb85d0662008-03-16 20:03:22 +01002372 if (!sched_feat(SYNC_WAKEUPS))
2373 sync = 0;
2374
Linus Torvalds04e2f172008-02-23 18:05:03 -08002375 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 rq = task_rq_lock(p, &flags);
2377 old_state = p->state;
2378 if (!(old_state & state))
2379 goto out;
2380
Ingo Molnardd41f592007-07-09 18:51:59 +02002381 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 goto out_running;
2383
2384 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002385 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 this_cpu = smp_processor_id();
2387
2388#ifdef CONFIG_SMP
2389 if (unlikely(task_running(rq, p)))
2390 goto out_activate;
2391
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002392 cpu = p->sched_class->select_task_rq(p, sync);
2393 if (cpu != orig_cpu) {
2394 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 task_rq_unlock(rq, &flags);
2396 /* might preempt at this point */
2397 rq = task_rq_lock(p, &flags);
2398 old_state = p->state;
2399 if (!(old_state & state))
2400 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002401 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 goto out_running;
2403
2404 this_cpu = smp_processor_id();
2405 cpu = task_cpu(p);
2406 }
2407
Gregory Haskinse7693a32008-01-25 21:08:09 +01002408#ifdef CONFIG_SCHEDSTATS
2409 schedstat_inc(rq, ttwu_count);
2410 if (cpu == this_cpu)
2411 schedstat_inc(rq, ttwu_local);
2412 else {
2413 struct sched_domain *sd;
2414 for_each_domain(this_cpu, sd) {
2415 if (cpu_isset(cpu, sd->span)) {
2416 schedstat_inc(sd, ttwu_wake_remote);
2417 break;
2418 }
2419 }
2420 }
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002421#endif /* CONFIG_SCHEDSTATS */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423out_activate:
2424#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002425 schedstat_inc(p, se.nr_wakeups);
2426 if (sync)
2427 schedstat_inc(p, se.nr_wakeups_sync);
2428 if (orig_cpu != cpu)
2429 schedstat_inc(p, se.nr_wakeups_migrate);
2430 if (cpu == this_cpu)
2431 schedstat_inc(p, se.nr_wakeups_local);
2432 else
2433 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002434 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002435 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 success = 1;
2437
2438out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002439 check_preempt_curr(rq, p);
2440
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002442#ifdef CONFIG_SMP
2443 if (p->sched_class->task_wake_up)
2444 p->sched_class->task_wake_up(rq, p);
2445#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446out:
2447 task_rq_unlock(rq, &flags);
2448
2449 return success;
2450}
2451
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002452int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002454 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456EXPORT_SYMBOL(wake_up_process);
2457
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002458int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
2460 return try_to_wake_up(p, state, 0);
2461}
2462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463/*
2464 * Perform scheduler related setup for a newly forked process p.
2465 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002466 *
2467 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002469static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470{
Ingo Molnardd41f592007-07-09 18:51:59 +02002471 p->se.exec_start = 0;
2472 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002473 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002474 p->se.last_wakeup = 0;
2475 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002476
2477#ifdef CONFIG_SCHEDSTATS
2478 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002479 p->se.sum_sleep_runtime = 0;
2480 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002481 p->se.block_start = 0;
2482 p->se.sleep_max = 0;
2483 p->se.block_max = 0;
2484 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002485 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002486 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002487#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002488
Peter Zijlstrafa717062008-01-25 21:08:27 +01002489 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002490 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002491 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002492
Avi Kivitye107be32007-07-26 13:40:43 +02002493#ifdef CONFIG_PREEMPT_NOTIFIERS
2494 INIT_HLIST_HEAD(&p->preempt_notifiers);
2495#endif
2496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 /*
2498 * We mark the process as running here, but have not actually
2499 * inserted it onto the runqueue yet. This guarantees that
2500 * nobody will actually run it, and a signal or other external
2501 * event cannot wake it up and insert it on the runqueue either.
2502 */
2503 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002504}
2505
2506/*
2507 * fork()/clone()-time setup:
2508 */
2509void sched_fork(struct task_struct *p, int clone_flags)
2510{
2511 int cpu = get_cpu();
2512
2513 __sched_fork(p);
2514
2515#ifdef CONFIG_SMP
2516 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2517#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002518 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002519
2520 /*
2521 * Make sure we do not leak PI boosting priority to the child:
2522 */
2523 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002524 if (!rt_prio(p->prio))
2525 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002526
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002527#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002528 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002529 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002531#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002532 p->oncpu = 0;
2533#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002535 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002536 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002538 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539}
2540
2541/*
2542 * wake_up_new_task - wake up a newly created task for the first time.
2543 *
2544 * This function will do some initial scheduler statistics housekeeping
2545 * that must be done for every newly created context, then puts the task
2546 * on the runqueue and wakes it.
2547 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002548void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549{
2550 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002551 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
2553 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002555 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
2557 p->prio = effective_prio(p);
2558
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002559 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002560 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002563 * Let the scheduling class do new task startup
2564 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002566 p->sched_class->task_new(rq, p);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02002567 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002569 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002570#ifdef CONFIG_SMP
2571 if (p->sched_class->task_wake_up)
2572 p->sched_class->task_wake_up(rq, p);
2573#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002574 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575}
2576
Avi Kivitye107be32007-07-26 13:40:43 +02002577#ifdef CONFIG_PREEMPT_NOTIFIERS
2578
2579/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002580 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2581 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002582 */
2583void preempt_notifier_register(struct preempt_notifier *notifier)
2584{
2585 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2586}
2587EXPORT_SYMBOL_GPL(preempt_notifier_register);
2588
2589/**
2590 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002591 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002592 *
2593 * This is safe to call from within a preemption notifier.
2594 */
2595void preempt_notifier_unregister(struct preempt_notifier *notifier)
2596{
2597 hlist_del(&notifier->link);
2598}
2599EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2600
2601static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2602{
2603 struct preempt_notifier *notifier;
2604 struct hlist_node *node;
2605
2606 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2607 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2608}
2609
2610static void
2611fire_sched_out_preempt_notifiers(struct task_struct *curr,
2612 struct task_struct *next)
2613{
2614 struct preempt_notifier *notifier;
2615 struct hlist_node *node;
2616
2617 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2618 notifier->ops->sched_out(notifier, next);
2619}
2620
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002621#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002622
2623static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2624{
2625}
2626
2627static void
2628fire_sched_out_preempt_notifiers(struct task_struct *curr,
2629 struct task_struct *next)
2630{
2631}
2632
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002633#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002634
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002636 * prepare_task_switch - prepare to switch tasks
2637 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002638 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002639 * @next: the task we are going to switch to.
2640 *
2641 * This is called with the rq lock held and interrupts off. It must
2642 * be paired with a subsequent finish_task_switch after the context
2643 * switch.
2644 *
2645 * prepare_task_switch sets up locking and calls architecture specific
2646 * hooks.
2647 */
Avi Kivitye107be32007-07-26 13:40:43 +02002648static inline void
2649prepare_task_switch(struct rq *rq, struct task_struct *prev,
2650 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002651{
Avi Kivitye107be32007-07-26 13:40:43 +02002652 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002653 prepare_lock_switch(rq, next);
2654 prepare_arch_switch(next);
2655}
2656
2657/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002659 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 * @prev: the thread we just switched away from.
2661 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002662 * finish_task_switch must be called after the context switch, paired
2663 * with a prepare_task_switch call before the context switch.
2664 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2665 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 *
2667 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002668 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 * with the lock held can cause deadlocks; see schedule() for
2670 * details.)
2671 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002672static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 __releases(rq->lock)
2674{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002676 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678 rq->prev_mm = NULL;
2679
2680 /*
2681 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002682 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002683 * schedule one last time. The schedule call will never return, and
2684 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002685 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 * still held, otherwise prev could be scheduled on another cpu, die
2687 * there before we look at prev->state, and then the reference would
2688 * be dropped twice.
2689 * Manfred Spraul <manfred@colorfullife.com>
2690 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002691 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002692 finish_arch_switch(prev);
2693 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002694#ifdef CONFIG_SMP
2695 if (current->sched_class->post_schedule)
2696 current->sched_class->post_schedule(rq);
2697#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002698
Avi Kivitye107be32007-07-26 13:40:43 +02002699 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 if (mm)
2701 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002702 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002703 /*
2704 * Remove function-return probe instances associated with this
2705 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002706 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002707 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710}
2711
2712/**
2713 * schedule_tail - first thing a freshly forked thread must call.
2714 * @prev: the thread we just switched away from.
2715 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002716asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 __releases(rq->lock)
2718{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002719 struct rq *rq = this_rq();
2720
Nick Piggin4866cde2005-06-25 14:57:23 -07002721 finish_task_switch(rq, prev);
2722#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2723 /* In this case, finish_task_switch does not reenable preemption */
2724 preempt_enable();
2725#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002727 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728}
2729
2730/*
2731 * context_switch - switch to the new MM and the new
2732 * thread's register state.
2733 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002734static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002735context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002736 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737{
Ingo Molnardd41f592007-07-09 18:51:59 +02002738 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
Avi Kivitye107be32007-07-26 13:40:43 +02002740 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002741 mm = next->mm;
2742 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002743 /*
2744 * For paravirt, this is coupled with an exit in switch_to to
2745 * combine the page table reload and the switch backend into
2746 * one hypercall.
2747 */
2748 arch_enter_lazy_cpu_mode();
2749
Ingo Molnardd41f592007-07-09 18:51:59 +02002750 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 next->active_mm = oldmm;
2752 atomic_inc(&oldmm->mm_count);
2753 enter_lazy_tlb(oldmm, next);
2754 } else
2755 switch_mm(oldmm, mm, next);
2756
Ingo Molnardd41f592007-07-09 18:51:59 +02002757 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 rq->prev_mm = oldmm;
2760 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002761 /*
2762 * Since the runqueue lock will be released by the next
2763 * task (which is an invalid locking op but in the case
2764 * of the scheduler it's an obvious special-case), so we
2765 * do an early lockdep release here:
2766 */
2767#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002768 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002769#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
2771 /* Here we just switch the register state and the stack. */
2772 switch_to(prev, next, prev);
2773
Ingo Molnardd41f592007-07-09 18:51:59 +02002774 barrier();
2775 /*
2776 * this_rq must be evaluated again because prev may have moved
2777 * CPUs since it called schedule(), thus the 'rq' on its stack
2778 * frame will be invalid.
2779 */
2780 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781}
2782
2783/*
2784 * nr_running, nr_uninterruptible and nr_context_switches:
2785 *
2786 * externally visible scheduler statistics: current number of runnable
2787 * threads, current number of uninterruptible-sleeping threads, total
2788 * number of context switches performed since bootup.
2789 */
2790unsigned long nr_running(void)
2791{
2792 unsigned long i, sum = 0;
2793
2794 for_each_online_cpu(i)
2795 sum += cpu_rq(i)->nr_running;
2796
2797 return sum;
2798}
2799
2800unsigned long nr_uninterruptible(void)
2801{
2802 unsigned long i, sum = 0;
2803
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002804 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 sum += cpu_rq(i)->nr_uninterruptible;
2806
2807 /*
2808 * Since we read the counters lockless, it might be slightly
2809 * inaccurate. Do not allow it to go below zero though:
2810 */
2811 if (unlikely((long)sum < 0))
2812 sum = 0;
2813
2814 return sum;
2815}
2816
2817unsigned long long nr_context_switches(void)
2818{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002819 int i;
2820 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002822 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 sum += cpu_rq(i)->nr_switches;
2824
2825 return sum;
2826}
2827
2828unsigned long nr_iowait(void)
2829{
2830 unsigned long i, sum = 0;
2831
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002832 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2834
2835 return sum;
2836}
2837
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002838unsigned long nr_active(void)
2839{
2840 unsigned long i, running = 0, uninterruptible = 0;
2841
2842 for_each_online_cpu(i) {
2843 running += cpu_rq(i)->nr_running;
2844 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2845 }
2846
2847 if (unlikely((long)uninterruptible < 0))
2848 uninterruptible = 0;
2849
2850 return running + uninterruptible;
2851}
2852
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002854 * Update rq->cpu_load[] statistics. This function is usually called every
2855 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002856 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002857static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002858{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002859 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002860 int i, scale;
2861
2862 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002863
2864 /* Update our load: */
2865 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2866 unsigned long old_load, new_load;
2867
2868 /* scale is effectively 1 << i now, and >> i divides by scale */
2869
2870 old_load = this_rq->cpu_load[i];
2871 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002872 /*
2873 * Round up the averaging division if load is increasing. This
2874 * prevents us from getting stuck on 9 if the load is 10, for
2875 * example.
2876 */
2877 if (new_load > old_load)
2878 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002879 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2880 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002881}
2882
Ingo Molnardd41f592007-07-09 18:51:59 +02002883#ifdef CONFIG_SMP
2884
Ingo Molnar48f24c42006-07-03 00:25:40 -07002885/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 * double_rq_lock - safely lock two runqueues
2887 *
2888 * Note this does not disable interrupts like task_rq_lock,
2889 * you need to do so manually before calling.
2890 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002891static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 __acquires(rq1->lock)
2893 __acquires(rq2->lock)
2894{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002895 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 if (rq1 == rq2) {
2897 spin_lock(&rq1->lock);
2898 __acquire(rq2->lock); /* Fake it out ;) */
2899 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002900 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 spin_lock(&rq1->lock);
2902 spin_lock(&rq2->lock);
2903 } else {
2904 spin_lock(&rq2->lock);
2905 spin_lock(&rq1->lock);
2906 }
2907 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002908 update_rq_clock(rq1);
2909 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910}
2911
2912/*
2913 * double_rq_unlock - safely unlock two runqueues
2914 *
2915 * Note this does not restore interrupts like task_rq_unlock,
2916 * you need to do so manually after calling.
2917 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002918static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 __releases(rq1->lock)
2920 __releases(rq2->lock)
2921{
2922 spin_unlock(&rq1->lock);
2923 if (rq1 != rq2)
2924 spin_unlock(&rq2->lock);
2925 else
2926 __release(rq2->lock);
2927}
2928
2929/*
2930 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2931 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002932static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 __releases(this_rq->lock)
2934 __acquires(busiest->lock)
2935 __acquires(this_rq->lock)
2936{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002937 int ret = 0;
2938
Kirill Korotaev054b9102006-12-10 02:20:11 -08002939 if (unlikely(!irqs_disabled())) {
2940 /* printk() doesn't work good under rq->lock */
2941 spin_unlock(&this_rq->lock);
2942 BUG_ON(1);
2943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002945 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 spin_unlock(&this_rq->lock);
2947 spin_lock(&busiest->lock);
2948 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002949 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 } else
2951 spin_lock(&busiest->lock);
2952 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002953 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954}
2955
2956/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 * If dest_cpu is allowed for this process, migrate the task to it.
2958 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002959 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 * the cpu_allowed mask is restored.
2961 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002962static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002964 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002966 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
2968 rq = task_rq_lock(p, &flags);
2969 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2970 || unlikely(cpu_is_offline(dest_cpu)))
2971 goto out;
2972
2973 /* force the process onto the specified CPU */
2974 if (migrate_task(p, dest_cpu, &req)) {
2975 /* Need to wait for migration thread (might exit: take ref). */
2976 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002977
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 get_task_struct(mt);
2979 task_rq_unlock(rq, &flags);
2980 wake_up_process(mt);
2981 put_task_struct(mt);
2982 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 return;
2985 }
2986out:
2987 task_rq_unlock(rq, &flags);
2988}
2989
2990/*
Nick Piggin476d1392005-06-25 14:57:29 -07002991 * sched_exec - execve() is a valuable balancing opportunity, because at
2992 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 */
2994void sched_exec(void)
2995{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002997 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002999 if (new_cpu != this_cpu)
3000 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001}
3002
3003/*
3004 * pull_task - move a task from a remote runqueue to the local runqueue.
3005 * Both runqueues must be locked.
3006 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003007static void pull_task(struct rq *src_rq, struct task_struct *p,
3008 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003010 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003012 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 /*
3014 * Note that idle threads have a prio of MAX_PRIO, for this test
3015 * to be always true for them.
3016 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003017 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018}
3019
3020/*
3021 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
3022 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003023static
Ingo Molnar70b97a72006-07-03 00:25:42 -07003024int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003025 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003026 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027{
3028 /*
3029 * We do not migrate tasks that are:
3030 * 1) running (obviously), or
3031 * 2) cannot be migrated to this CPU due to cpus_allowed, or
3032 * 3) are cache-hot on their current CPU.
3033 */
Ingo Molnarcc367732007-10-15 17:00:18 +02003034 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
3035 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003037 }
Nick Piggin81026792005-06-25 14:57:07 -07003038 *all_pinned = 0;
3039
Ingo Molnarcc367732007-10-15 17:00:18 +02003040 if (task_running(rq, p)) {
3041 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07003042 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
Ingo Molnarda84d962007-10-15 17:00:18 +02003045 /*
3046 * Aggressive migration if:
3047 * 1) task is cache cold, or
3048 * 2) too many balance attempts have failed.
3049 */
3050
Ingo Molnar6bc16652007-10-15 17:00:18 +02003051 if (!task_hot(p, rq->clock, sd) ||
3052 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003053#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02003054 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003055 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02003056 schedstat_inc(p, se.nr_forced_migrations);
3057 }
Ingo Molnarda84d962007-10-15 17:00:18 +02003058#endif
3059 return 1;
3060 }
3061
Ingo Molnarcc367732007-10-15 17:00:18 +02003062 if (task_hot(p, rq->clock, sd)) {
3063 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02003064 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 return 1;
3067}
3068
Peter Williamse1d14842007-10-24 18:23:51 +02003069static unsigned long
3070balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3071 unsigned long max_load_move, struct sched_domain *sd,
3072 enum cpu_idle_type idle, int *all_pinned,
3073 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003074{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003075 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02003076 struct task_struct *p;
3077 long rem_load_move = max_load_move;
3078
Peter Williamse1d14842007-10-24 18:23:51 +02003079 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003080 goto out;
3081
3082 pinned = 1;
3083
3084 /*
3085 * Start the load-balancing iterator:
3086 */
3087 p = iterator->start(iterator->arg);
3088next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003089 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003090 goto out;
3091 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003092 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02003093 * skip a task if it will be the highest priority task (i.e. smallest
3094 * prio value) on its new queue regardless of its load weight
3095 */
3096 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
3097 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003098 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003099 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003100 p = iterator->next(iterator->arg);
3101 goto next;
3102 }
3103
3104 pull_task(busiest, p, this_rq, this_cpu);
3105 pulled++;
3106 rem_load_move -= p->se.load.weight;
3107
3108 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003109 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003110 */
Peter Williamse1d14842007-10-24 18:23:51 +02003111 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003112 if (p->prio < *this_best_prio)
3113 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003114 p = iterator->next(iterator->arg);
3115 goto next;
3116 }
3117out:
3118 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003119 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003120 * so we can safely collect pull_task() stats here rather than
3121 * inside pull_task().
3122 */
3123 schedstat_add(sd, lb_gained[idle], pulled);
3124
3125 if (all_pinned)
3126 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003127
3128 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003129}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003130
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131/*
Peter Williams43010652007-08-09 11:16:46 +02003132 * move_tasks tries to move up to max_load_move weighted load from busiest to
3133 * this_rq, as part of a balancing operation within domain "sd".
3134 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 *
3136 * Called with both runqueues locked.
3137 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003138static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003139 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003140 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003141 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003143 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003144 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003145 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Ingo Molnardd41f592007-07-09 18:51:59 +02003147 do {
Peter Williams43010652007-08-09 11:16:46 +02003148 total_load_moved +=
3149 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003150 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003151 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003152 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02003153 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Peter Williams43010652007-08-09 11:16:46 +02003155 return total_load_moved > 0;
3156}
3157
Peter Williamse1d14842007-10-24 18:23:51 +02003158static int
3159iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3160 struct sched_domain *sd, enum cpu_idle_type idle,
3161 struct rq_iterator *iterator)
3162{
3163 struct task_struct *p = iterator->start(iterator->arg);
3164 int pinned = 0;
3165
3166 while (p) {
3167 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3168 pull_task(busiest, p, this_rq, this_cpu);
3169 /*
3170 * Right now, this is only the second place pull_task()
3171 * is called, so we can safely collect pull_task()
3172 * stats here rather than inside pull_task().
3173 */
3174 schedstat_inc(sd, lb_gained[idle]);
3175
3176 return 1;
3177 }
3178 p = iterator->next(iterator->arg);
3179 }
3180
3181 return 0;
3182}
3183
Peter Williams43010652007-08-09 11:16:46 +02003184/*
3185 * move_one_task tries to move exactly one task from busiest to this_rq, as
3186 * part of active balancing operations within "domain".
3187 * Returns 1 if successful and 0 otherwise.
3188 *
3189 * Called with both runqueues locked.
3190 */
3191static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3192 struct sched_domain *sd, enum cpu_idle_type idle)
3193{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003194 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003195
3196 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003197 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003198 return 1;
3199
3200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201}
3202
3203/*
3204 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003205 * domain. It calculates and returns the amount of weighted load which
3206 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 */
3208static struct sched_group *
3209find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003210 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003211 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212{
3213 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3214 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003215 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003216 unsigned long busiest_load_per_task, busiest_nr_running;
3217 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003218 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003219#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3220 int power_savings_balance = 1;
3221 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3222 unsigned long min_nr_running = ULONG_MAX;
3223 struct sched_group *group_min = NULL, *group_leader = NULL;
3224#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
3226 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003227 busiest_load_per_task = busiest_nr_running = 0;
3228 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003229 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003230 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003231 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003232 load_idx = sd->newidle_idx;
3233 else
3234 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
3236 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003237 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 int local_group;
3239 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003240 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003241 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003242 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
3244 local_group = cpu_isset(this_cpu, group->cpumask);
3245
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003246 if (local_group)
3247 balance_cpu = first_cpu(group->cpumask);
3248
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003250 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02003251 max_cpu_load = 0;
3252 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
3254 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003255 struct rq *rq;
3256
3257 if (!cpu_isset(i, *cpus))
3258 continue;
3259
3260 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003261
Suresh Siddha9439aab2007-07-19 21:28:35 +02003262 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003263 *sd_idle = 0;
3264
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003266 if (local_group) {
3267 if (idle_cpu(i) && !first_idle_cpu) {
3268 first_idle_cpu = 1;
3269 balance_cpu = i;
3270 }
3271
Nick Piggina2000572006-02-10 01:51:02 -08003272 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003273 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003274 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003275 if (load > max_cpu_load)
3276 max_cpu_load = load;
3277 if (min_cpu_load > load)
3278 min_cpu_load = load;
3279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
3281 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003282 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003283 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 }
3285
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003286 /*
3287 * First idle cpu or the first cpu(busiest) in this sched group
3288 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003289 * domains. In the newly idle case, we will allow all the cpu's
3290 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003291 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003292 if (idle != CPU_NEWLY_IDLE && local_group &&
3293 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003294 *balance = 0;
3295 goto ret;
3296 }
3297
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003299 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
3301 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003302 avg_load = sg_div_cpu_power(group,
3303 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Ken Chen908a7c12007-10-17 16:55:11 +02003305 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
3306 __group_imb = 1;
3307
Eric Dumazet5517d862007-05-08 00:32:57 -07003308 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003309
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 if (local_group) {
3311 this_load = avg_load;
3312 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003313 this_nr_running = sum_nr_running;
3314 this_load_per_task = sum_weighted_load;
3315 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003316 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 max_load = avg_load;
3318 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003319 busiest_nr_running = sum_nr_running;
3320 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003321 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003323
3324#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3325 /*
3326 * Busy processors will not participate in power savings
3327 * balance.
3328 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003329 if (idle == CPU_NOT_IDLE ||
3330 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3331 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003332
3333 /*
3334 * If the local group is idle or completely loaded
3335 * no need to do power savings balance at this domain
3336 */
3337 if (local_group && (this_nr_running >= group_capacity ||
3338 !this_nr_running))
3339 power_savings_balance = 0;
3340
Ingo Molnardd41f592007-07-09 18:51:59 +02003341 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003342 * If a group is already running at full capacity or idle,
3343 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003344 */
3345 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003346 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003347 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003348
Ingo Molnardd41f592007-07-09 18:51:59 +02003349 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003350 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003351 * This is the group from where we need to pick up the load
3352 * for saving power
3353 */
3354 if ((sum_nr_running < min_nr_running) ||
3355 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003356 first_cpu(group->cpumask) <
3357 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003358 group_min = group;
3359 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003360 min_load_per_task = sum_weighted_load /
3361 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003362 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003363
Ingo Molnardd41f592007-07-09 18:51:59 +02003364 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003365 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003366 * capacity but still has some space to pick up some load
3367 * from other group and save more power
3368 */
3369 if (sum_nr_running <= group_capacity - 1) {
3370 if (sum_nr_running > leader_nr_running ||
3371 (sum_nr_running == leader_nr_running &&
3372 first_cpu(group->cpumask) >
3373 first_cpu(group_leader->cpumask))) {
3374 group_leader = group;
3375 leader_nr_running = sum_nr_running;
3376 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003377 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003378group_next:
3379#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 group = group->next;
3381 } while (group != sd->groups);
3382
Peter Williams2dd73a42006-06-27 02:54:34 -07003383 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 goto out_balanced;
3385
3386 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3387
3388 if (this_load >= avg_load ||
3389 100*max_load <= sd->imbalance_pct*this_load)
3390 goto out_balanced;
3391
Peter Williams2dd73a42006-06-27 02:54:34 -07003392 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003393 if (group_imb)
3394 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3395
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 /*
3397 * We're trying to get all the cpus to the average_load, so we don't
3398 * want to push ourselves above the average load, nor do we wish to
3399 * reduce the max loaded cpu below the average load, as either of these
3400 * actions would just result in more rebalancing later, and ping-pong
3401 * tasks around. Thus we look for the minimum possible imbalance.
3402 * Negative imbalances (*we* are more loaded than anyone else) will
3403 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003404 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 * appear as very large values with unsigned longs.
3406 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003407 if (max_load <= busiest_load_per_task)
3408 goto out_balanced;
3409
3410 /*
3411 * In the presence of smp nice balancing, certain scenarios can have
3412 * max load less than avg load(as we skip the groups at or below
3413 * its cpu_power, while calculating max_load..)
3414 */
3415 if (max_load < avg_load) {
3416 *imbalance = 0;
3417 goto small_imbalance;
3418 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003419
3420 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003421 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003422
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003424 *imbalance = min(max_pull * busiest->__cpu_power,
3425 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 / SCHED_LOAD_SCALE;
3427
Peter Williams2dd73a42006-06-27 02:54:34 -07003428 /*
3429 * if *imbalance is less than the average load per runnable task
3430 * there is no gaurantee that any tasks will be moved so we'll have
3431 * a think about bumping its value to force at least one task to be
3432 * moved
3433 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003434 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003435 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003436 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Peter Williams2dd73a42006-06-27 02:54:34 -07003438small_imbalance:
3439 pwr_move = pwr_now = 0;
3440 imbn = 2;
3441 if (this_nr_running) {
3442 this_load_per_task /= this_nr_running;
3443 if (busiest_load_per_task > this_load_per_task)
3444 imbn = 1;
3445 } else
3446 this_load_per_task = SCHED_LOAD_SCALE;
3447
Ingo Molnardd41f592007-07-09 18:51:59 +02003448 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3449 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003450 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 return busiest;
3452 }
3453
3454 /*
3455 * OK, we don't have enough imbalance to justify moving tasks,
3456 * however we may be able to increase total CPU power used by
3457 * moving them.
3458 */
3459
Eric Dumazet5517d862007-05-08 00:32:57 -07003460 pwr_now += busiest->__cpu_power *
3461 min(busiest_load_per_task, max_load);
3462 pwr_now += this->__cpu_power *
3463 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 pwr_now /= SCHED_LOAD_SCALE;
3465
3466 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003467 tmp = sg_div_cpu_power(busiest,
3468 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003470 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003471 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
3473 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003474 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003475 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003476 tmp = sg_div_cpu_power(this,
3477 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003479 tmp = sg_div_cpu_power(this,
3480 busiest_load_per_task * SCHED_LOAD_SCALE);
3481 pwr_move += this->__cpu_power *
3482 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 pwr_move /= SCHED_LOAD_SCALE;
3484
3485 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003486 if (pwr_move > pwr_now)
3487 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 }
3489
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 return busiest;
3491
3492out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003493#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003494 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003495 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003497 if (this == group_leader && group_leader != group_min) {
3498 *imbalance = min_load_per_task;
3499 return group_min;
3500 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003501#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003502ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 *imbalance = 0;
3504 return NULL;
3505}
3506
3507/*
3508 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3509 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003510static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003511find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003512 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003514 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003515 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 int i;
3517
3518 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003519 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003520
3521 if (!cpu_isset(i, *cpus))
3522 continue;
3523
Ingo Molnar48f24c42006-07-03 00:25:40 -07003524 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003525 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
Ingo Molnardd41f592007-07-09 18:51:59 +02003527 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003528 continue;
3529
Ingo Molnardd41f592007-07-09 18:51:59 +02003530 if (wl > max_load) {
3531 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003532 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 }
3534 }
3535
3536 return busiest;
3537}
3538
3539/*
Nick Piggin77391d72005-06-25 14:57:30 -07003540 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3541 * so long as it is large enough.
3542 */
3543#define MAX_PINNED_INTERVAL 512
3544
3545/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3547 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003549static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003550 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003551 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552{
Peter Williams43010652007-08-09 11:16:46 +02003553 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003556 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003557 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003558 int unlock_aggregate;
Nick Piggin5969fe02005-09-10 00:26:19 -07003559
Mike Travis7c16ec52008-04-04 18:11:11 -07003560 cpus_setall(*cpus);
3561
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02003562 unlock_aggregate = get_aggregate(this_cpu, sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003563
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003564 /*
3565 * When power savings policy is enabled for the parent domain, idle
3566 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003567 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003568 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003569 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003570 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003571 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003572 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
Ingo Molnar2d723762007-10-15 17:00:12 +02003574 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003576redo:
3577 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003578 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003579
Chen, Kenneth W06066712006-12-10 02:20:35 -08003580 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003581 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 if (!group) {
3584 schedstat_inc(sd, lb_nobusyg[idle]);
3585 goto out_balanced;
3586 }
3587
Mike Travis7c16ec52008-04-04 18:11:11 -07003588 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 if (!busiest) {
3590 schedstat_inc(sd, lb_nobusyq[idle]);
3591 goto out_balanced;
3592 }
3593
Nick Piggindb935db2005-06-25 14:57:11 -07003594 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
3596 schedstat_add(sd, lb_imbalance[idle], imbalance);
3597
Peter Williams43010652007-08-09 11:16:46 +02003598 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 if (busiest->nr_running > 1) {
3600 /*
3601 * Attempt to move tasks. If find_busiest_group has found
3602 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003603 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 * correctly treated as an imbalance.
3605 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003606 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003607 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003608 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003609 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003610 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003611 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003612
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003613 /*
3614 * some other cpu did the load balance for us.
3615 */
Peter Williams43010652007-08-09 11:16:46 +02003616 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003617 resched_cpu(this_cpu);
3618
Nick Piggin81026792005-06-25 14:57:07 -07003619 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003620 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003621 cpu_clear(cpu_of(busiest), *cpus);
3622 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003623 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003624 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 }
Nick Piggin81026792005-06-25 14:57:07 -07003627
Peter Williams43010652007-08-09 11:16:46 +02003628 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 schedstat_inc(sd, lb_failed[idle]);
3630 sd->nr_balance_failed++;
3631
3632 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003634 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003635
3636 /* don't kick the migration_thread, if the curr
3637 * task on busiest cpu can't be moved to this_cpu
3638 */
3639 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003640 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003641 all_pinned = 1;
3642 goto out_one_pinned;
3643 }
3644
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 if (!busiest->active_balance) {
3646 busiest->active_balance = 1;
3647 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003648 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003650 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003651 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 wake_up_process(busiest->migration_thread);
3653
3654 /*
3655 * We've kicked active balancing, reset the failure
3656 * counter.
3657 */
Nick Piggin39507452005-06-25 14:57:09 -07003658 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 }
Nick Piggin81026792005-06-25 14:57:07 -07003660 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 sd->nr_balance_failed = 0;
3662
Nick Piggin81026792005-06-25 14:57:07 -07003663 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 /* We were unbalanced, so reset the balancing interval */
3665 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003666 } else {
3667 /*
3668 * If we've begun active balancing, start to back off. This
3669 * case may not be covered by the all_pinned logic if there
3670 * is only 1 task on the busy runqueue (because we don't call
3671 * move_tasks).
3672 */
3673 if (sd->balance_interval < sd->max_interval)
3674 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 }
3676
Peter Williams43010652007-08-09 11:16:46 +02003677 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003678 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003679 ld_moved = -1;
3680
3681 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682
3683out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 schedstat_inc(sd, lb_balanced[idle]);
3685
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003686 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003687
3688out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003690 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3691 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 sd->balance_interval *= 2;
3693
Ingo Molnar48f24c42006-07-03 00:25:40 -07003694 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003695 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003696 ld_moved = -1;
3697 else
3698 ld_moved = 0;
3699out:
3700 if (unlock_aggregate)
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02003701 put_aggregate(this_cpu, sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003702 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703}
3704
3705/*
3706 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3707 * tasks if there is an imbalance.
3708 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003709 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 * this_rq is locked.
3711 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003712static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003713load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3714 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715{
3716 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003717 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003719 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003720 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003721 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003722
3723 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003724
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003725 /*
3726 * When power savings policy is enabled for the parent domain, idle
3727 * sibling can pick up load irrespective of busy siblings. In this case,
3728 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003729 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003730 */
3731 if (sd->flags & SD_SHARE_CPUPOWER &&
3732 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003733 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734
Ingo Molnar2d723762007-10-15 17:00:12 +02003735 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003736redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003737 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003738 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003740 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003741 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 }
3743
Mike Travis7c16ec52008-04-04 18:11:11 -07003744 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003745 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003746 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003747 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 }
3749
Nick Piggindb935db2005-06-25 14:57:11 -07003750 BUG_ON(busiest == this_rq);
3751
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003752 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003753
Peter Williams43010652007-08-09 11:16:46 +02003754 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003755 if (busiest->nr_running > 1) {
3756 /* Attempt to move tasks */
3757 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003758 /* this_rq->clock is already updated */
3759 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003760 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003761 imbalance, sd, CPU_NEWLY_IDLE,
3762 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003763 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003764
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003765 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003766 cpu_clear(cpu_of(busiest), *cpus);
3767 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003768 goto redo;
3769 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003770 }
3771
Peter Williams43010652007-08-09 11:16:46 +02003772 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003773 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003774 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3775 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003776 return -1;
3777 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003778 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
Peter Williams43010652007-08-09 11:16:46 +02003780 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003781
3782out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003783 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003784 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003785 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003786 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003787 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003788
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003789 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790}
3791
3792/*
3793 * idle_balance is called by schedule() if this_cpu is about to become
3794 * idle. Attempts to pull tasks from other CPUs.
3795 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003796static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797{
3798 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003799 int pulled_task = -1;
3800 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003801 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802
3803 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003804 unsigned long interval;
3805
3806 if (!(sd->flags & SD_LOAD_BALANCE))
3807 continue;
3808
3809 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003810 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003811 pulled_task = load_balance_newidle(this_cpu, this_rq,
3812 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003813
3814 interval = msecs_to_jiffies(sd->balance_interval);
3815 if (time_after(next_balance, sd->last_balance + interval))
3816 next_balance = sd->last_balance + interval;
3817 if (pulled_task)
3818 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003820 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003821 /*
3822 * We are going idle. next_balance may be set based on
3823 * a busy processor. So reset next_balance.
3824 */
3825 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827}
3828
3829/*
3830 * active_load_balance is run by migration threads. It pushes running tasks
3831 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3832 * running on each physical CPU where possible, and avoids physical /
3833 * logical imbalances.
3834 *
3835 * Called with busiest_rq locked.
3836 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003837static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838{
Nick Piggin39507452005-06-25 14:57:09 -07003839 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003840 struct sched_domain *sd;
3841 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003842
Ingo Molnar48f24c42006-07-03 00:25:40 -07003843 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003844 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003845 return;
3846
3847 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
3849 /*
Nick Piggin39507452005-06-25 14:57:09 -07003850 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003851 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003852 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 */
Nick Piggin39507452005-06-25 14:57:09 -07003854 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
Nick Piggin39507452005-06-25 14:57:09 -07003856 /* move a task from busiest_rq to target_rq */
3857 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003858 update_rq_clock(busiest_rq);
3859 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
Nick Piggin39507452005-06-25 14:57:09 -07003861 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003862 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003863 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003864 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003865 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867
Ingo Molnar48f24c42006-07-03 00:25:40 -07003868 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003869 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870
Peter Williams43010652007-08-09 11:16:46 +02003871 if (move_one_task(target_rq, target_cpu, busiest_rq,
3872 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003873 schedstat_inc(sd, alb_pushed);
3874 else
3875 schedstat_inc(sd, alb_failed);
3876 }
Nick Piggin39507452005-06-25 14:57:09 -07003877 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878}
3879
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003880#ifdef CONFIG_NO_HZ
3881static struct {
3882 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003883 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003884} nohz ____cacheline_aligned = {
3885 .load_balancer = ATOMIC_INIT(-1),
3886 .cpu_mask = CPU_MASK_NONE,
3887};
3888
Christoph Lameter7835b982006-12-10 02:20:22 -08003889/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003890 * This routine will try to nominate the ilb (idle load balancing)
3891 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3892 * load balancing on behalf of all those cpus. If all the cpus in the system
3893 * go into this tickless mode, then there will be no ilb owner (as there is
3894 * no need for one) and all the cpus will sleep till the next wakeup event
3895 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003896 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003897 * For the ilb owner, tick is not stopped. And this tick will be used
3898 * for idle load balancing. ilb owner will still be part of
3899 * nohz.cpu_mask..
3900 *
3901 * While stopping the tick, this cpu will become the ilb owner if there
3902 * is no other owner. And will be the owner till that cpu becomes busy
3903 * or if all cpus in the system stop their ticks at which point
3904 * there is no need for ilb owner.
3905 *
3906 * When the ilb owner becomes busy, it nominates another owner, during the
3907 * next busy scheduler_tick()
3908 */
3909int select_nohz_load_balancer(int stop_tick)
3910{
3911 int cpu = smp_processor_id();
3912
3913 if (stop_tick) {
3914 cpu_set(cpu, nohz.cpu_mask);
3915 cpu_rq(cpu)->in_nohz_recently = 1;
3916
3917 /*
3918 * If we are going offline and still the leader, give up!
3919 */
3920 if (cpu_is_offline(cpu) &&
3921 atomic_read(&nohz.load_balancer) == cpu) {
3922 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3923 BUG();
3924 return 0;
3925 }
3926
3927 /* time for ilb owner also to sleep */
3928 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3929 if (atomic_read(&nohz.load_balancer) == cpu)
3930 atomic_set(&nohz.load_balancer, -1);
3931 return 0;
3932 }
3933
3934 if (atomic_read(&nohz.load_balancer) == -1) {
3935 /* make me the ilb owner */
3936 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3937 return 1;
3938 } else if (atomic_read(&nohz.load_balancer) == cpu)
3939 return 1;
3940 } else {
3941 if (!cpu_isset(cpu, nohz.cpu_mask))
3942 return 0;
3943
3944 cpu_clear(cpu, nohz.cpu_mask);
3945
3946 if (atomic_read(&nohz.load_balancer) == cpu)
3947 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3948 BUG();
3949 }
3950 return 0;
3951}
3952#endif
3953
3954static DEFINE_SPINLOCK(balancing);
3955
3956/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003957 * It checks each scheduling domain to see if it is due to be balanced,
3958 * and initiates a balancing operation if so.
3959 *
3960 * Balancing parameters are set up in arch_init_sched_domains.
3961 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003962static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003963{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003964 int balance = 1;
3965 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003966 unsigned long interval;
3967 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003968 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003969 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003970 int update_next_balance = 0;
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003971 int need_serialize;
Mike Travis7c16ec52008-04-04 18:11:11 -07003972 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003974 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 if (!(sd->flags & SD_LOAD_BALANCE))
3976 continue;
3977
3978 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003979 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 interval *= sd->busy_factor;
3981
3982 /* scale ms to jiffies */
3983 interval = msecs_to_jiffies(interval);
3984 if (unlikely(!interval))
3985 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003986 if (interval > HZ*NR_CPUS/10)
3987 interval = HZ*NR_CPUS/10;
3988
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003989 need_serialize = sd->flags & SD_SERIALIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003991 if (need_serialize) {
Christoph Lameter08c183f2006-12-10 02:20:29 -08003992 if (!spin_trylock(&balancing))
3993 goto out;
3994 }
3995
Christoph Lameterc9819f42006-12-10 02:20:25 -08003996 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003997 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003998 /*
3999 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07004000 * longer idle, or one of our SMT siblings is
4001 * not idle.
4002 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004003 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004005 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 }
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004007 if (need_serialize)
Christoph Lameter08c183f2006-12-10 02:20:29 -08004008 spin_unlock(&balancing);
4009out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02004010 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08004011 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004012 update_next_balance = 1;
4013 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004014
4015 /*
4016 * Stop the load balance at this level. There is another
4017 * CPU in our sched group which is doing load balancing more
4018 * actively.
4019 */
4020 if (!balance)
4021 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004023
4024 /*
4025 * next_balance will be updated only when there is a need.
4026 * When the cpu is attached to null domain for ex, it will not be
4027 * updated.
4028 */
4029 if (likely(update_next_balance))
4030 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004031}
4032
4033/*
4034 * run_rebalance_domains is triggered when needed from the scheduler tick.
4035 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4036 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4037 */
4038static void run_rebalance_domains(struct softirq_action *h)
4039{
Ingo Molnardd41f592007-07-09 18:51:59 +02004040 int this_cpu = smp_processor_id();
4041 struct rq *this_rq = cpu_rq(this_cpu);
4042 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4043 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004044
Ingo Molnardd41f592007-07-09 18:51:59 +02004045 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004046
4047#ifdef CONFIG_NO_HZ
4048 /*
4049 * If this cpu is the owner for idle load balancing, then do the
4050 * balancing on behalf of the other idle cpus whose ticks are
4051 * stopped.
4052 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004053 if (this_rq->idle_at_tick &&
4054 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004055 cpumask_t cpus = nohz.cpu_mask;
4056 struct rq *rq;
4057 int balance_cpu;
4058
Ingo Molnardd41f592007-07-09 18:51:59 +02004059 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004060 for_each_cpu_mask(balance_cpu, cpus) {
4061 /*
4062 * If this cpu gets work to do, stop the load balancing
4063 * work being done for other cpus. Next load
4064 * balancing owner will pick it up.
4065 */
4066 if (need_resched())
4067 break;
4068
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004069 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004070
4071 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004072 if (time_after(this_rq->next_balance, rq->next_balance))
4073 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004074 }
4075 }
4076#endif
4077}
4078
4079/*
4080 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4081 *
4082 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4083 * idle load balancing owner or decide to stop the periodic load balancing,
4084 * if the whole system is idle.
4085 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004086static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004087{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004088#ifdef CONFIG_NO_HZ
4089 /*
4090 * If we were in the nohz mode recently and busy at the current
4091 * scheduler tick, then check if we need to nominate new idle
4092 * load balancer.
4093 */
4094 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4095 rq->in_nohz_recently = 0;
4096
4097 if (atomic_read(&nohz.load_balancer) == cpu) {
4098 cpu_clear(cpu, nohz.cpu_mask);
4099 atomic_set(&nohz.load_balancer, -1);
4100 }
4101
4102 if (atomic_read(&nohz.load_balancer) == -1) {
4103 /*
4104 * simple selection for now: Nominate the
4105 * first cpu in the nohz list to be the next
4106 * ilb owner.
4107 *
4108 * TBD: Traverse the sched domains and nominate
4109 * the nearest cpu in the nohz.cpu_mask.
4110 */
4111 int ilb = first_cpu(nohz.cpu_mask);
4112
Mike Travis434d53b2008-04-04 18:11:04 -07004113 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004114 resched_cpu(ilb);
4115 }
4116 }
4117
4118 /*
4119 * If this cpu is idle and doing idle load balancing for all the
4120 * cpus with ticks stopped, is it time for that to stop?
4121 */
4122 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
4123 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4124 resched_cpu(cpu);
4125 return;
4126 }
4127
4128 /*
4129 * If this cpu is idle and the idle load balancing is done by
4130 * someone else, then no need raise the SCHED_SOFTIRQ
4131 */
4132 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
4133 cpu_isset(cpu, nohz.cpu_mask))
4134 return;
4135#endif
4136 if (time_after_eq(jiffies, rq->next_balance))
4137 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138}
Ingo Molnardd41f592007-07-09 18:51:59 +02004139
4140#else /* CONFIG_SMP */
4141
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142/*
4143 * on UP we do not need to balance between CPUs:
4144 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004145static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146{
4147}
Ingo Molnardd41f592007-07-09 18:51:59 +02004148
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149#endif
4150
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151DEFINE_PER_CPU(struct kernel_stat, kstat);
4152
4153EXPORT_PER_CPU_SYMBOL(kstat);
4154
4155/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02004156 * Return p->sum_exec_runtime plus any more ns on the sched_clock
4157 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02004159unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004162 u64 ns, delta_exec;
4163 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004164
Ingo Molnar41b86e92007-07-09 18:51:58 +02004165 rq = task_rq_lock(p, &flags);
4166 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004167 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02004168 update_rq_clock(rq);
4169 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004170 if ((s64)delta_exec > 0)
4171 ns += delta_exec;
4172 }
4173 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004174
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 return ns;
4176}
4177
4178/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 * Account user cpu time to a process.
4180 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 * @cputime: the cpu time spent in user space since the last update
4182 */
4183void account_user_time(struct task_struct *p, cputime_t cputime)
4184{
4185 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4186 cputime64_t tmp;
4187
4188 p->utime = cputime_add(p->utime, cputime);
4189
4190 /* Add user time to cpustat. */
4191 tmp = cputime_to_cputime64(cputime);
4192 if (TASK_NICE(p) > 0)
4193 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4194 else
4195 cpustat->user = cputime64_add(cpustat->user, tmp);
4196}
4197
4198/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004199 * Account guest cpu time to a process.
4200 * @p: the process that the cpu time gets accounted to
4201 * @cputime: the cpu time spent in virtual machine since the last update
4202 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004203static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004204{
4205 cputime64_t tmp;
4206 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4207
4208 tmp = cputime_to_cputime64(cputime);
4209
4210 p->utime = cputime_add(p->utime, cputime);
4211 p->gtime = cputime_add(p->gtime, cputime);
4212
4213 cpustat->user = cputime64_add(cpustat->user, tmp);
4214 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4215}
4216
4217/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004218 * Account scaled user cpu time to a process.
4219 * @p: the process that the cpu time gets accounted to
4220 * @cputime: the cpu time spent in user space since the last update
4221 */
4222void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4223{
4224 p->utimescaled = cputime_add(p->utimescaled, cputime);
4225}
4226
4227/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 * Account system cpu time to a process.
4229 * @p: the process that the cpu time gets accounted to
4230 * @hardirq_offset: the offset to subtract from hardirq_count()
4231 * @cputime: the cpu time spent in kernel space since the last update
4232 */
4233void account_system_time(struct task_struct *p, int hardirq_offset,
4234 cputime_t cputime)
4235{
4236 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004237 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 cputime64_t tmp;
4239
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004240 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
4241 account_guest_time(p, cputime);
4242 return;
4243 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004244
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 p->stime = cputime_add(p->stime, cputime);
4246
4247 /* Add system time to cpustat. */
4248 tmp = cputime_to_cputime64(cputime);
4249 if (hardirq_count() - hardirq_offset)
4250 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4251 else if (softirq_count())
4252 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004253 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004255 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4257 else
4258 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4259 /* Account for system time used */
4260 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261}
4262
4263/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004264 * Account scaled system cpu time to a process.
4265 * @p: the process that the cpu time gets accounted to
4266 * @hardirq_offset: the offset to subtract from hardirq_count()
4267 * @cputime: the cpu time spent in kernel space since the last update
4268 */
4269void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4270{
4271 p->stimescaled = cputime_add(p->stimescaled, cputime);
4272}
4273
4274/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 * Account for involuntary wait time.
4276 * @p: the process from which the cpu time has been stolen
4277 * @steal: the cpu time spent in involuntary wait
4278 */
4279void account_steal_time(struct task_struct *p, cputime_t steal)
4280{
4281 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4282 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004283 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
4285 if (p == rq->idle) {
4286 p->stime = cputime_add(p->stime, steal);
4287 if (atomic_read(&rq->nr_iowait) > 0)
4288 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4289 else
4290 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004291 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4293}
4294
Christoph Lameter7835b982006-12-10 02:20:22 -08004295/*
4296 * This function gets called by the timer code, with HZ frequency.
4297 * We call it with interrupts disabled.
4298 *
4299 * It also gets called by the fork code, when changing the parent's
4300 * timeslices.
4301 */
4302void scheduler_tick(void)
4303{
Christoph Lameter7835b982006-12-10 02:20:22 -08004304 int cpu = smp_processor_id();
4305 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004306 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004307
4308 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004309
Ingo Molnardd41f592007-07-09 18:51:59 +02004310 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004311 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004312 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004313 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004314 spin_unlock(&rq->lock);
4315
Christoph Lametere418e1c2006-12-10 02:20:23 -08004316#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004317 rq->idle_at_tick = idle_cpu(cpu);
4318 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004319#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320}
4321
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
4323
Srinivasa Ds43627582008-02-23 15:24:04 -08004324void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325{
4326 /*
4327 * Underflow?
4328 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004329 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4330 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 preempt_count() += val;
4332 /*
4333 * Spinlock count overflowing soon?
4334 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004335 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4336 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337}
4338EXPORT_SYMBOL(add_preempt_count);
4339
Srinivasa Ds43627582008-02-23 15:24:04 -08004340void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341{
4342 /*
4343 * Underflow?
4344 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004345 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4346 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 /*
4348 * Is the spinlock portion underflowing?
4349 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004350 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4351 !(preempt_count() & PREEMPT_MASK)))
4352 return;
4353
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 preempt_count() -= val;
4355}
4356EXPORT_SYMBOL(sub_preempt_count);
4357
4358#endif
4359
4360/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004361 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004363static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364{
Satyam Sharma838225b2007-10-24 18:23:50 +02004365 struct pt_regs *regs = get_irq_regs();
4366
4367 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4368 prev->comm, prev->pid, preempt_count());
4369
Ingo Molnardd41f592007-07-09 18:51:59 +02004370 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07004371 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02004372 if (irqs_disabled())
4373 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004374
4375 if (regs)
4376 show_regs(regs);
4377 else
4378 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004379}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380
Ingo Molnardd41f592007-07-09 18:51:59 +02004381/*
4382 * Various schedule()-time debugging checks and statistics:
4383 */
4384static inline void schedule_debug(struct task_struct *prev)
4385{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004387 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 * schedule() atomically, we ignore that path for now.
4389 * Otherwise, whine if we are scheduling when we should not be.
4390 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02004391 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02004392 __schedule_bug(prev);
4393
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4395
Ingo Molnar2d723762007-10-15 17:00:12 +02004396 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004397#ifdef CONFIG_SCHEDSTATS
4398 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004399 schedstat_inc(this_rq(), bkl_count);
4400 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004401 }
4402#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004403}
4404
4405/*
4406 * Pick up the highest-prio task:
4407 */
4408static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004409pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004410{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004411 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004412 struct task_struct *p;
4413
4414 /*
4415 * Optimization: we know that if all tasks are in
4416 * the fair class we can call that function directly:
4417 */
4418 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004419 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004420 if (likely(p))
4421 return p;
4422 }
4423
4424 class = sched_class_highest;
4425 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004426 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004427 if (p)
4428 return p;
4429 /*
4430 * Will never be NULL as the idle class always
4431 * returns a non-NULL p:
4432 */
4433 class = class->next;
4434 }
4435}
4436
4437/*
4438 * schedule() is the main scheduler function.
4439 */
4440asmlinkage void __sched schedule(void)
4441{
4442 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004443 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004444 struct rq *rq;
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004445 int cpu, hrtick = sched_feat(HRTICK);
Ingo Molnardd41f592007-07-09 18:51:59 +02004446
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447need_resched:
4448 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004449 cpu = smp_processor_id();
4450 rq = cpu_rq(cpu);
4451 rcu_qsctr_inc(cpu);
4452 prev = rq->curr;
4453 switch_count = &prev->nivcsw;
4454
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 release_kernel_lock(prev);
4456need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
Ingo Molnardd41f592007-07-09 18:51:59 +02004458 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004460 if (hrtick)
4461 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004462
Ingo Molnar1e819952007-10-15 17:00:13 +02004463 /*
4464 * Do the rq-clock update outside the rq lock:
4465 */
4466 local_irq_disable();
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004467 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004468 spin_lock(&rq->lock);
4469 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470
Ingo Molnardd41f592007-07-09 18:51:59 +02004471 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Oleg Nesterov16882c12008-06-08 21:20:41 +04004472 if (unlikely(signal_pending_state(prev->state, prev)))
Ingo Molnardd41f592007-07-09 18:51:59 +02004473 prev->state = TASK_RUNNING;
Oleg Nesterov16882c12008-06-08 21:20:41 +04004474 else
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004475 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004476 switch_count = &prev->nvcsw;
4477 }
4478
Steven Rostedt9a897c52008-01-25 21:08:22 +01004479#ifdef CONFIG_SMP
4480 if (prev->sched_class->pre_schedule)
4481 prev->sched_class->pre_schedule(rq, prev);
4482#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004483
Ingo Molnardd41f592007-07-09 18:51:59 +02004484 if (unlikely(!rq->nr_running))
4485 idle_balance(cpu, rq);
4486
Ingo Molnar31ee5292007-08-09 11:16:49 +02004487 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004488 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004491 sched_info_switch(prev, next);
4492
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493 rq->nr_switches++;
4494 rq->curr = next;
4495 ++*switch_count;
4496
Ingo Molnardd41f592007-07-09 18:51:59 +02004497 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004498 /*
4499 * the context switch might have flipped the stack from under
4500 * us, hence refresh the local variables.
4501 */
4502 cpu = smp_processor_id();
4503 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 } else
4505 spin_unlock_irq(&rq->lock);
4506
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004507 if (hrtick)
4508 hrtick_set(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004509
4510 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004512
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 preempt_enable_no_resched();
4514 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4515 goto need_resched;
4516}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517EXPORT_SYMBOL(schedule);
4518
4519#ifdef CONFIG_PREEMPT
4520/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004521 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004522 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 * occur there and call schedule directly.
4524 */
4525asmlinkage void __sched preempt_schedule(void)
4526{
4527 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004528
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 /*
4530 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004531 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004533 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 return;
4535
Andi Kleen3a5c3592007-10-15 17:00:14 +02004536 do {
4537 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004538 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004539 sub_preempt_count(PREEMPT_ACTIVE);
4540
4541 /*
4542 * Check again in case we missed a preemption opportunity
4543 * between schedule and now.
4544 */
4545 barrier();
4546 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548EXPORT_SYMBOL(preempt_schedule);
4549
4550/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004551 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 * off of irq context.
4553 * Note, that this is called and return with irqs disabled. This will
4554 * protect us against recursive calling from irq.
4555 */
4556asmlinkage void __sched preempt_schedule_irq(void)
4557{
4558 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004559
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004560 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 BUG_ON(ti->preempt_count || !irqs_disabled());
4562
Andi Kleen3a5c3592007-10-15 17:00:14 +02004563 do {
4564 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004565 local_irq_enable();
4566 schedule();
4567 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004568 sub_preempt_count(PREEMPT_ACTIVE);
4569
4570 /*
4571 * Check again in case we missed a preemption opportunity
4572 * between schedule and now.
4573 */
4574 barrier();
4575 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576}
4577
4578#endif /* CONFIG_PREEMPT */
4579
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004580int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4581 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004583 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585EXPORT_SYMBOL(default_wake_function);
4586
4587/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004588 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4589 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590 * number) then we wake all the non-exclusive tasks and one exclusive task.
4591 *
4592 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004593 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4595 */
4596static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4597 int nr_exclusive, int sync, void *key)
4598{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004599 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004601 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004602 unsigned flags = curr->flags;
4603
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004605 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 break;
4607 }
4608}
4609
4610/**
4611 * __wake_up - wake up threads blocked on a waitqueue.
4612 * @q: the waitqueue
4613 * @mode: which threads
4614 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004615 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004617void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004618 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619{
4620 unsigned long flags;
4621
4622 spin_lock_irqsave(&q->lock, flags);
4623 __wake_up_common(q, mode, nr_exclusive, 0, key);
4624 spin_unlock_irqrestore(&q->lock, flags);
4625}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626EXPORT_SYMBOL(__wake_up);
4627
4628/*
4629 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4630 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004631void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632{
4633 __wake_up_common(q, mode, 1, 0, NULL);
4634}
4635
4636/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004637 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 * @q: the waitqueue
4639 * @mode: which threads
4640 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4641 *
4642 * The sync wakeup differs that the waker knows that it will schedule
4643 * away soon, so while the target thread will be woken up, it will not
4644 * be migrated to another CPU - ie. the two threads are 'synchronized'
4645 * with each other. This can prevent needless bouncing between CPUs.
4646 *
4647 * On UP it can prevent extra preemption.
4648 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004649void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004650__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651{
4652 unsigned long flags;
4653 int sync = 1;
4654
4655 if (unlikely(!q))
4656 return;
4657
4658 if (unlikely(!nr_exclusive))
4659 sync = 0;
4660
4661 spin_lock_irqsave(&q->lock, flags);
4662 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4663 spin_unlock_irqrestore(&q->lock, flags);
4664}
4665EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4666
Ingo Molnarb15136e2007-10-24 18:23:48 +02004667void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668{
4669 unsigned long flags;
4670
4671 spin_lock_irqsave(&x->wait.lock, flags);
4672 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004673 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 spin_unlock_irqrestore(&x->wait.lock, flags);
4675}
4676EXPORT_SYMBOL(complete);
4677
Ingo Molnarb15136e2007-10-24 18:23:48 +02004678void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679{
4680 unsigned long flags;
4681
4682 spin_lock_irqsave(&x->wait.lock, flags);
4683 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004684 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 spin_unlock_irqrestore(&x->wait.lock, flags);
4686}
4687EXPORT_SYMBOL(complete_all);
4688
Andi Kleen8cbbe862007-10-15 17:00:14 +02004689static inline long __sched
4690do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 if (!x->done) {
4693 DECLARE_WAITQUEUE(wait, current);
4694
4695 wait.flags |= WQ_FLAG_EXCLUSIVE;
4696 __add_wait_queue_tail(&x->wait, &wait);
4697 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004698 if ((state == TASK_INTERRUPTIBLE &&
4699 signal_pending(current)) ||
4700 (state == TASK_KILLABLE &&
4701 fatal_signal_pending(current))) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04004702 timeout = -ERESTARTSYS;
4703 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004704 }
4705 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004707 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004709 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004711 if (!x->done)
4712 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713 }
4714 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04004715 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004716}
4717
4718static long __sched
4719wait_for_common(struct completion *x, long timeout, int state)
4720{
4721 might_sleep();
4722
4723 spin_lock_irq(&x->wait.lock);
4724 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004726 return timeout;
4727}
4728
Ingo Molnarb15136e2007-10-24 18:23:48 +02004729void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004730{
4731 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732}
4733EXPORT_SYMBOL(wait_for_completion);
4734
Ingo Molnarb15136e2007-10-24 18:23:48 +02004735unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4737{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004738 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739}
4740EXPORT_SYMBOL(wait_for_completion_timeout);
4741
Andi Kleen8cbbe862007-10-15 17:00:14 +02004742int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743{
Andi Kleen51e97992007-10-18 21:32:55 +02004744 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4745 if (t == -ERESTARTSYS)
4746 return t;
4747 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748}
4749EXPORT_SYMBOL(wait_for_completion_interruptible);
4750
Ingo Molnarb15136e2007-10-24 18:23:48 +02004751unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752wait_for_completion_interruptible_timeout(struct completion *x,
4753 unsigned long timeout)
4754{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004755 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756}
4757EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4758
Matthew Wilcox009e5772007-12-06 12:29:54 -05004759int __sched wait_for_completion_killable(struct completion *x)
4760{
4761 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4762 if (t == -ERESTARTSYS)
4763 return t;
4764 return 0;
4765}
4766EXPORT_SYMBOL(wait_for_completion_killable);
4767
Andi Kleen8cbbe862007-10-15 17:00:14 +02004768static long __sched
4769sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004770{
4771 unsigned long flags;
4772 wait_queue_t wait;
4773
4774 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775
Andi Kleen8cbbe862007-10-15 17:00:14 +02004776 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777
Andi Kleen8cbbe862007-10-15 17:00:14 +02004778 spin_lock_irqsave(&q->lock, flags);
4779 __add_wait_queue(q, &wait);
4780 spin_unlock(&q->lock);
4781 timeout = schedule_timeout(timeout);
4782 spin_lock_irq(&q->lock);
4783 __remove_wait_queue(q, &wait);
4784 spin_unlock_irqrestore(&q->lock, flags);
4785
4786 return timeout;
4787}
4788
4789void __sched interruptible_sleep_on(wait_queue_head_t *q)
4790{
4791 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793EXPORT_SYMBOL(interruptible_sleep_on);
4794
Ingo Molnar0fec1712007-07-09 18:52:01 +02004795long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004796interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004798 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4801
Ingo Molnar0fec1712007-07-09 18:52:01 +02004802void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004804 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806EXPORT_SYMBOL(sleep_on);
4807
Ingo Molnar0fec1712007-07-09 18:52:01 +02004808long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004810 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812EXPORT_SYMBOL(sleep_on_timeout);
4813
Ingo Molnarb29739f2006-06-27 02:54:51 -07004814#ifdef CONFIG_RT_MUTEXES
4815
4816/*
4817 * rt_mutex_setprio - set the current priority of a task
4818 * @p: task
4819 * @prio: prio value (kernel-internal form)
4820 *
4821 * This function changes the 'effective' priority of a task. It does
4822 * not touch ->normal_prio like __setscheduler().
4823 *
4824 * Used by the rt_mutex code to implement priority inheritance logic.
4825 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004826void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004827{
4828 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004829 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004830 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004831 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004832
4833 BUG_ON(prio < 0 || prio > MAX_PRIO);
4834
4835 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004836 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004837
Andrew Mortond5f9f942007-05-08 20:27:06 -07004838 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004839 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004840 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004841 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004842 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004843 if (running)
4844 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004845
4846 if (rt_prio(prio))
4847 p->sched_class = &rt_sched_class;
4848 else
4849 p->sched_class = &fair_sched_class;
4850
Ingo Molnarb29739f2006-06-27 02:54:51 -07004851 p->prio = prio;
4852
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004853 if (running)
4854 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004855 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004856 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004857
4858 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004859 }
4860 task_rq_unlock(rq, &flags);
4861}
4862
4863#endif
4864
Ingo Molnar36c8b582006-07-03 00:25:41 -07004865void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866{
Ingo Molnardd41f592007-07-09 18:51:59 +02004867 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004869 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870
4871 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4872 return;
4873 /*
4874 * We have to be careful, if called from sys_setpriority(),
4875 * the task might be in the middle of scheduling on another CPU.
4876 */
4877 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004878 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 /*
4880 * The RT priorities are set via sched_setscheduler(), but we still
4881 * allow the 'normal' nice value to be set - but as expected
4882 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004883 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004885 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 p->static_prio = NICE_TO_PRIO(nice);
4887 goto out_unlock;
4888 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004889 on_rq = p->se.on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004890 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004891 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004894 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004895 old_prio = p->prio;
4896 p->prio = effective_prio(p);
4897 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898
Ingo Molnardd41f592007-07-09 18:51:59 +02004899 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004900 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004902 * If the task increased its priority or is running and
4903 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004905 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 resched_task(rq->curr);
4907 }
4908out_unlock:
4909 task_rq_unlock(rq, &flags);
4910}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911EXPORT_SYMBOL(set_user_nice);
4912
Matt Mackalle43379f2005-05-01 08:59:00 -07004913/*
4914 * can_nice - check if a task can reduce its nice value
4915 * @p: task
4916 * @nice: nice value
4917 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004918int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004919{
Matt Mackall024f4742005-08-18 11:24:19 -07004920 /* convert nice value [19,-20] to rlimit style value [1,40] */
4921 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004922
Matt Mackalle43379f2005-05-01 08:59:00 -07004923 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4924 capable(CAP_SYS_NICE));
4925}
4926
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927#ifdef __ARCH_WANT_SYS_NICE
4928
4929/*
4930 * sys_nice - change the priority of the current process.
4931 * @increment: priority increment
4932 *
4933 * sys_setpriority is a more generic, but much slower function that
4934 * does similar things.
4935 */
4936asmlinkage long sys_nice(int increment)
4937{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004938 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
4940 /*
4941 * Setpriority might change our priority at the same moment.
4942 * We don't have to worry. Conceptually one call occurs first
4943 * and we have a single winner.
4944 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004945 if (increment < -40)
4946 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 if (increment > 40)
4948 increment = 40;
4949
4950 nice = PRIO_TO_NICE(current->static_prio) + increment;
4951 if (nice < -20)
4952 nice = -20;
4953 if (nice > 19)
4954 nice = 19;
4955
Matt Mackalle43379f2005-05-01 08:59:00 -07004956 if (increment < 0 && !can_nice(current, nice))
4957 return -EPERM;
4958
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 retval = security_task_setnice(current, nice);
4960 if (retval)
4961 return retval;
4962
4963 set_user_nice(current, nice);
4964 return 0;
4965}
4966
4967#endif
4968
4969/**
4970 * task_prio - return the priority value of a given task.
4971 * @p: the task in question.
4972 *
4973 * This is the priority value as seen by users in /proc.
4974 * RT tasks are offset by -200. Normal tasks are centered
4975 * around 0, value goes from -16 to +15.
4976 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004977int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978{
4979 return p->prio - MAX_RT_PRIO;
4980}
4981
4982/**
4983 * task_nice - return the nice value of a given task.
4984 * @p: the task in question.
4985 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004986int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987{
4988 return TASK_NICE(p);
4989}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004990EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991
4992/**
4993 * idle_cpu - is a given cpu idle currently?
4994 * @cpu: the processor in question.
4995 */
4996int idle_cpu(int cpu)
4997{
4998 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4999}
5000
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001/**
5002 * idle_task - return the idle task for a given cpu.
5003 * @cpu: the processor in question.
5004 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005005struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006{
5007 return cpu_rq(cpu)->idle;
5008}
5009
5010/**
5011 * find_process_by_pid - find a process with a matching PID value.
5012 * @pid: the pid in question.
5013 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005014static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005016 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017}
5018
5019/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005020static void
5021__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022{
Ingo Molnardd41f592007-07-09 18:51:59 +02005023 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005024
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005026 switch (p->policy) {
5027 case SCHED_NORMAL:
5028 case SCHED_BATCH:
5029 case SCHED_IDLE:
5030 p->sched_class = &fair_sched_class;
5031 break;
5032 case SCHED_FIFO:
5033 case SCHED_RR:
5034 p->sched_class = &rt_sched_class;
5035 break;
5036 }
5037
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005039 p->normal_prio = normal_prio(p);
5040 /* we are holding p->pi_lock already */
5041 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005042 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043}
5044
5045/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005046 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047 * @p: the task in question.
5048 * @policy: new policy.
5049 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005050 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005051 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005053int sched_setscheduler(struct task_struct *p, int policy,
5054 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005056 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005058 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005059 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060
Steven Rostedt66e53932006-06-27 02:54:44 -07005061 /* may grab non-irq protected spin_locks */
5062 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063recheck:
5064 /* double check policy once rq lock held */
5065 if (policy < 0)
5066 policy = oldpolicy = p->policy;
5067 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005068 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5069 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005070 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071 /*
5072 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005073 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5074 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 */
5076 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005077 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005078 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005080 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081 return -EINVAL;
5082
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005083 /*
5084 * Allow unprivileged RT tasks to decrease priority:
5085 */
5086 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005087 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005088 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005089
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005090 if (!lock_task_sighand(p, &flags))
5091 return -ESRCH;
5092 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5093 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005094
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005095 /* can't set/change the rt policy */
5096 if (policy != p->policy && !rlim_rtprio)
5097 return -EPERM;
5098
5099 /* can't increase priority */
5100 if (param->sched_priority > p->rt_priority &&
5101 param->sched_priority > rlim_rtprio)
5102 return -EPERM;
5103 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005104 /*
5105 * Like positive nice levels, dont allow tasks to
5106 * move out of SCHED_IDLE either:
5107 */
5108 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5109 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005110
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005111 /* can't change other user's priorities */
5112 if ((current->euid != p->euid) &&
5113 (current->euid != p->uid))
5114 return -EPERM;
5115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005117#ifdef CONFIG_RT_GROUP_SCHED
5118 /*
5119 * Do not allow realtime tasks into groups that have no runtime
5120 * assigned.
5121 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02005122 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005123 return -EPERM;
5124#endif
5125
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 retval = security_task_setscheduler(p, policy, param);
5127 if (retval)
5128 return retval;
5129 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005130 * make sure no PI-waiters arrive (or leave) while we are
5131 * changing the priority of the task:
5132 */
5133 spin_lock_irqsave(&p->pi_lock, flags);
5134 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 * To be able to change p->policy safely, the apropriate
5136 * runqueue lock must be held.
5137 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005138 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 /* recheck policy now with rq lock held */
5140 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5141 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005142 __task_rq_unlock(rq);
5143 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 goto recheck;
5145 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005146 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005147 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005148 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005149 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005150 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005151 if (running)
5152 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005153
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005155 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005156
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005157 if (running)
5158 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005159 if (on_rq) {
5160 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005161
5162 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005164 __task_rq_unlock(rq);
5165 spin_unlock_irqrestore(&p->pi_lock, flags);
5166
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005167 rt_mutex_adjust_pi(p);
5168
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 return 0;
5170}
5171EXPORT_SYMBOL_GPL(sched_setscheduler);
5172
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005173static int
5174do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176 struct sched_param lparam;
5177 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005178 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179
5180 if (!param || pid < 0)
5181 return -EINVAL;
5182 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5183 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005184
5185 rcu_read_lock();
5186 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005188 if (p != NULL)
5189 retval = sched_setscheduler(p, policy, &lparam);
5190 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005191
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192 return retval;
5193}
5194
5195/**
5196 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5197 * @pid: the pid in question.
5198 * @policy: new policy.
5199 * @param: structure containing the new RT priority.
5200 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005201asmlinkage long
5202sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203{
Jason Baronc21761f2006-01-18 17:43:03 -08005204 /* negative values for policy are not valid */
5205 if (policy < 0)
5206 return -EINVAL;
5207
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 return do_sched_setscheduler(pid, policy, param);
5209}
5210
5211/**
5212 * sys_sched_setparam - set/change the RT priority of a thread
5213 * @pid: the pid in question.
5214 * @param: structure containing the new RT priority.
5215 */
5216asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5217{
5218 return do_sched_setscheduler(pid, -1, param);
5219}
5220
5221/**
5222 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5223 * @pid: the pid in question.
5224 */
5225asmlinkage long sys_sched_getscheduler(pid_t pid)
5226{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005227 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005228 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229
5230 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005231 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232
5233 retval = -ESRCH;
5234 read_lock(&tasklist_lock);
5235 p = find_process_by_pid(pid);
5236 if (p) {
5237 retval = security_task_getscheduler(p);
5238 if (!retval)
5239 retval = p->policy;
5240 }
5241 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 return retval;
5243}
5244
5245/**
5246 * sys_sched_getscheduler - get the RT priority of a thread
5247 * @pid: the pid in question.
5248 * @param: structure containing the RT priority.
5249 */
5250asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5251{
5252 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005253 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005254 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255
5256 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005257 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258
5259 read_lock(&tasklist_lock);
5260 p = find_process_by_pid(pid);
5261 retval = -ESRCH;
5262 if (!p)
5263 goto out_unlock;
5264
5265 retval = security_task_getscheduler(p);
5266 if (retval)
5267 goto out_unlock;
5268
5269 lp.sched_priority = p->rt_priority;
5270 read_unlock(&tasklist_lock);
5271
5272 /*
5273 * This one might sleep, we cannot do it with a spinlock held ...
5274 */
5275 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5276
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277 return retval;
5278
5279out_unlock:
5280 read_unlock(&tasklist_lock);
5281 return retval;
5282}
5283
Mike Travisb53e9212008-04-04 18:11:08 -07005284long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07005287 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005288 struct task_struct *p;
5289 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005291 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292 read_lock(&tasklist_lock);
5293
5294 p = find_process_by_pid(pid);
5295 if (!p) {
5296 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005297 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298 return -ESRCH;
5299 }
5300
5301 /*
5302 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005303 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 * usage count and then drop tasklist_lock.
5305 */
5306 get_task_struct(p);
5307 read_unlock(&tasklist_lock);
5308
5309 retval = -EPERM;
5310 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5311 !capable(CAP_SYS_NICE))
5312 goto out_unlock;
5313
David Quigleye7834f82006-06-23 02:03:59 -07005314 retval = security_task_setscheduler(p, 0, NULL);
5315 if (retval)
5316 goto out_unlock;
5317
Mike Travisf9a86fc2008-04-04 18:11:07 -07005318 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005320 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005321 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322
Paul Menage8707d8b2007-10-18 23:40:22 -07005323 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005324 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005325 if (!cpus_subset(new_mask, cpus_allowed)) {
5326 /*
5327 * We must have raced with a concurrent cpuset
5328 * update. Just reset the cpus_allowed to the
5329 * cpuset's cpus_allowed
5330 */
5331 new_mask = cpus_allowed;
5332 goto again;
5333 }
5334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335out_unlock:
5336 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005337 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 return retval;
5339}
5340
5341static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5342 cpumask_t *new_mask)
5343{
5344 if (len < sizeof(cpumask_t)) {
5345 memset(new_mask, 0, sizeof(cpumask_t));
5346 } else if (len > sizeof(cpumask_t)) {
5347 len = sizeof(cpumask_t);
5348 }
5349 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5350}
5351
5352/**
5353 * sys_sched_setaffinity - set the cpu affinity of a process
5354 * @pid: pid of the process
5355 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5356 * @user_mask_ptr: user-space pointer to the new cpu mask
5357 */
5358asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5359 unsigned long __user *user_mask_ptr)
5360{
5361 cpumask_t new_mask;
5362 int retval;
5363
5364 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5365 if (retval)
5366 return retval;
5367
Mike Travisb53e9212008-04-04 18:11:08 -07005368 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369}
5370
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371long sched_getaffinity(pid_t pid, cpumask_t *mask)
5372{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005373 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005376 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 read_lock(&tasklist_lock);
5378
5379 retval = -ESRCH;
5380 p = find_process_by_pid(pid);
5381 if (!p)
5382 goto out_unlock;
5383
David Quigleye7834f82006-06-23 02:03:59 -07005384 retval = security_task_getscheduler(p);
5385 if (retval)
5386 goto out_unlock;
5387
Jack Steiner2f7016d2006-02-01 03:05:18 -08005388 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389
5390out_unlock:
5391 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005392 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393
Ulrich Drepper9531b622007-08-09 11:16:46 +02005394 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395}
5396
5397/**
5398 * sys_sched_getaffinity - get the cpu affinity of a process
5399 * @pid: pid of the process
5400 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5401 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5402 */
5403asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5404 unsigned long __user *user_mask_ptr)
5405{
5406 int ret;
5407 cpumask_t mask;
5408
5409 if (len < sizeof(cpumask_t))
5410 return -EINVAL;
5411
5412 ret = sched_getaffinity(pid, &mask);
5413 if (ret < 0)
5414 return ret;
5415
5416 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5417 return -EFAULT;
5418
5419 return sizeof(cpumask_t);
5420}
5421
5422/**
5423 * sys_sched_yield - yield the current processor to other threads.
5424 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005425 * This function yields the current CPU to other tasks. If there are no
5426 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 */
5428asmlinkage long sys_sched_yield(void)
5429{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005430 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431
Ingo Molnar2d723762007-10-15 17:00:12 +02005432 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005433 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434
5435 /*
5436 * Since we are going to call schedule() anyway, there's
5437 * no need to preempt or enable interrupts:
5438 */
5439 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005440 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441 _raw_spin_unlock(&rq->lock);
5442 preempt_enable_no_resched();
5443
5444 schedule();
5445
5446 return 0;
5447}
5448
Andrew Mortone7b38402006-06-30 01:56:00 -07005449static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005451#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5452 __might_sleep(__FILE__, __LINE__);
5453#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005454 /*
5455 * The BKS might be reacquired before we have dropped
5456 * PREEMPT_ACTIVE, which could trigger a second
5457 * cond_resched() call.
5458 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459 do {
5460 add_preempt_count(PREEMPT_ACTIVE);
5461 schedule();
5462 sub_preempt_count(PREEMPT_ACTIVE);
5463 } while (need_resched());
5464}
5465
Herbert Xu02b67cc32008-01-25 21:08:28 +01005466int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467{
Ingo Molnar94142322006-12-29 16:48:13 -08005468 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5469 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470 __cond_resched();
5471 return 1;
5472 }
5473 return 0;
5474}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005475EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476
5477/*
5478 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5479 * call schedule, and on return reacquire the lock.
5480 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005481 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482 * operations here to prevent schedule() from being called twice (once via
5483 * spin_unlock(), once by hand).
5484 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005485int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486{
Nick Piggin95c354f2008-01-30 13:31:20 +01005487 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005488 int ret = 0;
5489
Nick Piggin95c354f2008-01-30 13:31:20 +01005490 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005492 if (resched && need_resched())
5493 __cond_resched();
5494 else
5495 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005496 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005499 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501EXPORT_SYMBOL(cond_resched_lock);
5502
5503int __sched cond_resched_softirq(void)
5504{
5505 BUG_ON(!in_softirq());
5506
Ingo Molnar94142322006-12-29 16:48:13 -08005507 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005508 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509 __cond_resched();
5510 local_bh_disable();
5511 return 1;
5512 }
5513 return 0;
5514}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515EXPORT_SYMBOL(cond_resched_softirq);
5516
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517/**
5518 * yield - yield the current processor to other threads.
5519 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005520 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521 * thread runnable and calls sys_sched_yield().
5522 */
5523void __sched yield(void)
5524{
5525 set_current_state(TASK_RUNNING);
5526 sys_sched_yield();
5527}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528EXPORT_SYMBOL(yield);
5529
5530/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005531 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 * that process accounting knows that this is a task in IO wait state.
5533 *
5534 * But don't do that if it is a deliberate, throttling IO wait (this task
5535 * has set its backing_dev_info: the queue against which it should throttle)
5536 */
5537void __sched io_schedule(void)
5538{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005539 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005541 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542 atomic_inc(&rq->nr_iowait);
5543 schedule();
5544 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005545 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547EXPORT_SYMBOL(io_schedule);
5548
5549long __sched io_schedule_timeout(long timeout)
5550{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005551 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552 long ret;
5553
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005554 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555 atomic_inc(&rq->nr_iowait);
5556 ret = schedule_timeout(timeout);
5557 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005558 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559 return ret;
5560}
5561
5562/**
5563 * sys_sched_get_priority_max - return maximum RT priority.
5564 * @policy: scheduling class.
5565 *
5566 * this syscall returns the maximum rt_priority that can be used
5567 * by a given scheduling class.
5568 */
5569asmlinkage long sys_sched_get_priority_max(int policy)
5570{
5571 int ret = -EINVAL;
5572
5573 switch (policy) {
5574 case SCHED_FIFO:
5575 case SCHED_RR:
5576 ret = MAX_USER_RT_PRIO-1;
5577 break;
5578 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005579 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005580 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581 ret = 0;
5582 break;
5583 }
5584 return ret;
5585}
5586
5587/**
5588 * sys_sched_get_priority_min - return minimum RT priority.
5589 * @policy: scheduling class.
5590 *
5591 * this syscall returns the minimum rt_priority that can be used
5592 * by a given scheduling class.
5593 */
5594asmlinkage long sys_sched_get_priority_min(int policy)
5595{
5596 int ret = -EINVAL;
5597
5598 switch (policy) {
5599 case SCHED_FIFO:
5600 case SCHED_RR:
5601 ret = 1;
5602 break;
5603 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005604 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005605 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606 ret = 0;
5607 }
5608 return ret;
5609}
5610
5611/**
5612 * sys_sched_rr_get_interval - return the default timeslice of a process.
5613 * @pid: pid of the process.
5614 * @interval: userspace pointer to the timeslice value.
5615 *
5616 * this syscall writes the default timeslice value of a given process
5617 * into the user-space timespec buffer. A value of '0' means infinity.
5618 */
5619asmlinkage
5620long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5621{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005622 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005623 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005624 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626
5627 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005628 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629
5630 retval = -ESRCH;
5631 read_lock(&tasklist_lock);
5632 p = find_process_by_pid(pid);
5633 if (!p)
5634 goto out_unlock;
5635
5636 retval = security_task_getscheduler(p);
5637 if (retval)
5638 goto out_unlock;
5639
Ingo Molnar77034932007-12-04 17:04:39 +01005640 /*
5641 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5642 * tasks that are on an otherwise idle runqueue:
5643 */
5644 time_slice = 0;
5645 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005646 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005647 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005648 struct sched_entity *se = &p->se;
5649 unsigned long flags;
5650 struct rq *rq;
5651
5652 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005653 if (rq->cfs.load.weight)
5654 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005655 task_rq_unlock(rq, &flags);
5656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005658 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005661
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662out_unlock:
5663 read_unlock(&tasklist_lock);
5664 return retval;
5665}
5666
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005667static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005668
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005669void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005672 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005675 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005676 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005677#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005679 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005681 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682#else
5683 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005684 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005686 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687#endif
5688#ifdef CONFIG_DEBUG_STACK_USAGE
5689 {
Al Viro10ebffd2005-11-13 16:06:56 -08005690 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691 while (!*n)
5692 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005693 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694 }
5695#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005696 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005697 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005699 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700}
5701
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005702void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005704 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705
Ingo Molnar4bd77322007-07-11 21:21:47 +02005706#if BITS_PER_LONG == 32
5707 printk(KERN_INFO
5708 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005710 printk(KERN_INFO
5711 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712#endif
5713 read_lock(&tasklist_lock);
5714 do_each_thread(g, p) {
5715 /*
5716 * reset the NMI-timeout, listing all files on a slow
5717 * console might take alot of time:
5718 */
5719 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005720 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005721 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722 } while_each_thread(g, p);
5723
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005724 touch_all_softlockup_watchdogs();
5725
Ingo Molnardd41f592007-07-09 18:51:59 +02005726#ifdef CONFIG_SCHED_DEBUG
5727 sysrq_sched_debug_show();
5728#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005730 /*
5731 * Only show locks if all tasks are dumped:
5732 */
5733 if (state_filter == -1)
5734 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735}
5736
Ingo Molnar1df21052007-07-09 18:51:58 +02005737void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5738{
Ingo Molnardd41f592007-07-09 18:51:59 +02005739 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005740}
5741
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005742/**
5743 * init_idle - set up an idle thread for a given CPU
5744 * @idle: task in question
5745 * @cpu: cpu the idle task belongs to
5746 *
5747 * NOTE: this function does not set the idle thread's NEED_RESCHED
5748 * flag, to make booting more robust.
5749 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005750void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005752 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753 unsigned long flags;
5754
Ingo Molnardd41f592007-07-09 18:51:59 +02005755 __sched_fork(idle);
5756 idle->se.exec_start = sched_clock();
5757
Ingo Molnarb29739f2006-06-27 02:54:51 -07005758 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005760 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761
5762 spin_lock_irqsave(&rq->lock, flags);
5763 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005764#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5765 idle->oncpu = 1;
5766#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767 spin_unlock_irqrestore(&rq->lock, flags);
5768
5769 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005770#if defined(CONFIG_PREEMPT)
5771 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5772#else
Al Viroa1261f52005-11-13 16:06:55 -08005773 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005774#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005775 /*
5776 * The idle tasks have their own, simple scheduling class:
5777 */
5778 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779}
5780
5781/*
5782 * In a system that switches off the HZ timer nohz_cpu_mask
5783 * indicates which cpus entered this state. This is used
5784 * in the rcu update to wait only for active cpus. For system
5785 * which do not switch off the HZ timer nohz_cpu_mask should
5786 * always be CPU_MASK_NONE.
5787 */
5788cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5789
Ingo Molnar19978ca2007-11-09 22:39:38 +01005790/*
5791 * Increase the granularity value when there are more CPUs,
5792 * because with more CPUs the 'effective latency' as visible
5793 * to users decreases. But the relationship is not linear,
5794 * so pick a second-best guess by going with the log2 of the
5795 * number of CPUs.
5796 *
5797 * This idea comes from the SD scheduler of Con Kolivas:
5798 */
5799static inline void sched_init_granularity(void)
5800{
5801 unsigned int factor = 1 + ilog2(num_online_cpus());
5802 const unsigned long limit = 200000000;
5803
5804 sysctl_sched_min_granularity *= factor;
5805 if (sysctl_sched_min_granularity > limit)
5806 sysctl_sched_min_granularity = limit;
5807
5808 sysctl_sched_latency *= factor;
5809 if (sysctl_sched_latency > limit)
5810 sysctl_sched_latency = limit;
5811
5812 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005813}
5814
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815#ifdef CONFIG_SMP
5816/*
5817 * This is how migration works:
5818 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005819 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005820 * runqueue and wake up that CPU's migration thread.
5821 * 2) we down() the locked semaphore => thread blocks.
5822 * 3) migration thread wakes up (implicitly it forces the migrated
5823 * thread off the CPU)
5824 * 4) it gets the migration request and checks whether the migrated
5825 * task is still in the wrong runqueue.
5826 * 5) if it's in the wrong runqueue then the migration thread removes
5827 * it and puts it into the right queue.
5828 * 6) migration thread up()s the semaphore.
5829 * 7) we wake up and the migration is done.
5830 */
5831
5832/*
5833 * Change a given task's CPU affinity. Migrate the thread to a
5834 * proper CPU and schedule it away if the CPU it's executing on
5835 * is removed from the allowed bitmask.
5836 *
5837 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005838 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839 * call is not atomic; no spinlocks may be held.
5840 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005841int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005843 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005845 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005846 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847
5848 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005849 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 ret = -EINVAL;
5851 goto out;
5852 }
5853
David Rientjes9985b0b2008-06-05 12:57:11 -07005854 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current &&
5855 !cpus_equal(p->cpus_allowed, *new_mask))) {
5856 ret = -EINVAL;
5857 goto out;
5858 }
5859
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005860 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005861 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005862 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005863 p->cpus_allowed = *new_mask;
5864 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005865 }
5866
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005868 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869 goto out;
5870
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005871 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872 /* Need help from migration thread: drop lock and wait. */
5873 task_rq_unlock(rq, &flags);
5874 wake_up_process(rq->migration_thread);
5875 wait_for_completion(&req.done);
5876 tlb_migrate_finish(p->mm);
5877 return 0;
5878 }
5879out:
5880 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005881
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882 return ret;
5883}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005884EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885
5886/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005887 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 * this because either it can't run here any more (set_cpus_allowed()
5889 * away from this CPU, or CPU going down), or because we're
5890 * attempting to rebalance this task on exec (sched_exec).
5891 *
5892 * So we race with normal scheduler movements, but that's OK, as long
5893 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005894 *
5895 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005897static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005899 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005900 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901
5902 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005903 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904
5905 rq_src = cpu_rq(src_cpu);
5906 rq_dest = cpu_rq(dest_cpu);
5907
5908 double_rq_lock(rq_src, rq_dest);
5909 /* Already moved. */
5910 if (task_cpu(p) != src_cpu)
5911 goto out;
5912 /* Affinity changed (again). */
5913 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5914 goto out;
5915
Ingo Molnardd41f592007-07-09 18:51:59 +02005916 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005917 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005918 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005919
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005921 if (on_rq) {
5922 activate_task(rq_dest, p, 0);
5923 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005925 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926out:
5927 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005928 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929}
5930
5931/*
5932 * migration_thread - this is a highprio system thread that performs
5933 * thread migration by bumping thread off CPU then 'pushing' onto
5934 * another runqueue.
5935 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005936static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005939 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940
5941 rq = cpu_rq(cpu);
5942 BUG_ON(rq->migration_thread != current);
5943
5944 set_current_state(TASK_INTERRUPTIBLE);
5945 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005946 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949 spin_lock_irq(&rq->lock);
5950
5951 if (cpu_is_offline(cpu)) {
5952 spin_unlock_irq(&rq->lock);
5953 goto wait_to_die;
5954 }
5955
5956 if (rq->active_balance) {
5957 active_load_balance(rq, cpu);
5958 rq->active_balance = 0;
5959 }
5960
5961 head = &rq->migration_queue;
5962
5963 if (list_empty(head)) {
5964 spin_unlock_irq(&rq->lock);
5965 schedule();
5966 set_current_state(TASK_INTERRUPTIBLE);
5967 continue;
5968 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005969 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970 list_del_init(head->next);
5971
Nick Piggin674311d2005-06-25 14:57:27 -07005972 spin_unlock(&rq->lock);
5973 __migrate_task(req->task, cpu, req->dest_cpu);
5974 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975
5976 complete(&req->done);
5977 }
5978 __set_current_state(TASK_RUNNING);
5979 return 0;
5980
5981wait_to_die:
5982 /* Wait for kthread_stop */
5983 set_current_state(TASK_INTERRUPTIBLE);
5984 while (!kthread_should_stop()) {
5985 schedule();
5986 set_current_state(TASK_INTERRUPTIBLE);
5987 }
5988 __set_current_state(TASK_RUNNING);
5989 return 0;
5990}
5991
5992#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005993
5994static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5995{
5996 int ret;
5997
5998 local_irq_disable();
5999 ret = __migrate_task(p, src_cpu, dest_cpu);
6000 local_irq_enable();
6001 return ret;
6002}
6003
Kirill Korotaev054b9102006-12-10 02:20:11 -08006004/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006005 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08006006 * NOTE: interrupts should be disabled by the caller
6007 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006008static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009{
Kirill Korotaevefc30812006-06-27 02:54:32 -07006010 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006012 struct rq *rq;
6013 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014
Andi Kleen3a5c3592007-10-15 17:00:14 +02006015 do {
6016 /* On same node? */
6017 mask = node_to_cpumask(cpu_to_node(dead_cpu));
6018 cpus_and(mask, mask, p->cpus_allowed);
6019 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020
Andi Kleen3a5c3592007-10-15 17:00:14 +02006021 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07006022 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006023 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024
Andi Kleen3a5c3592007-10-15 17:00:14 +02006025 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07006026 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07006027 cpumask_t cpus_allowed;
6028
6029 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd6462007-10-18 23:40:46 -07006030 /*
6031 * Try to stay on the same cpuset, where the
6032 * current cpuset may be a subset of all cpus.
6033 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006034 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd6462007-10-18 23:40:46 -07006035 * called within calls to cpuset_lock/cpuset_unlock.
6036 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02006037 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd6462007-10-18 23:40:46 -07006038 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006039 dest_cpu = any_online_cpu(p->cpus_allowed);
6040 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041
Andi Kleen3a5c3592007-10-15 17:00:14 +02006042 /*
6043 * Don't tell them about moving exiting tasks or
6044 * kernel threads (both mm NULL), since they never
6045 * leave kernel.
6046 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006047 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006048 printk(KERN_INFO "process %d (%s) no "
6049 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006050 task_pid_nr(p), p->comm, dead_cpu);
6051 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006052 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006053 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054}
6055
6056/*
6057 * While a dead CPU has no uninterruptible tasks queued at this point,
6058 * it might still have a nonzero ->nr_uninterruptible counter, because
6059 * for performance reasons the counter is not stricly tracking tasks to
6060 * their home CPUs. So we just add the counter to another CPU's counter,
6061 * to keep the global sum constant after CPU-down:
6062 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006063static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064{
Mike Travis7c16ec52008-04-04 18:11:11 -07006065 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 unsigned long flags;
6067
6068 local_irq_save(flags);
6069 double_rq_lock(rq_src, rq_dest);
6070 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6071 rq_src->nr_uninterruptible = 0;
6072 double_rq_unlock(rq_src, rq_dest);
6073 local_irq_restore(flags);
6074}
6075
6076/* Run through task list and migrate tasks from the dead cpu. */
6077static void migrate_live_tasks(int src_cpu)
6078{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006079 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006081 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082
Ingo Molnar48f24c42006-07-03 00:25:40 -07006083 do_each_thread(t, p) {
6084 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085 continue;
6086
Ingo Molnar48f24c42006-07-03 00:25:40 -07006087 if (task_cpu(p) == src_cpu)
6088 move_task_off_dead_cpu(src_cpu, p);
6089 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006091 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092}
6093
Ingo Molnardd41f592007-07-09 18:51:59 +02006094/*
6095 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006096 * It does so by boosting its priority to highest possible.
6097 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098 */
6099void sched_idle_next(void)
6100{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006101 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006102 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103 struct task_struct *p = rq->idle;
6104 unsigned long flags;
6105
6106 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006107 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108
Ingo Molnar48f24c42006-07-03 00:25:40 -07006109 /*
6110 * Strictly not necessary since rest of the CPUs are stopped by now
6111 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112 */
6113 spin_lock_irqsave(&rq->lock, flags);
6114
Ingo Molnardd41f592007-07-09 18:51:59 +02006115 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006116
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006117 update_rq_clock(rq);
6118 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119
6120 spin_unlock_irqrestore(&rq->lock, flags);
6121}
6122
Ingo Molnar48f24c42006-07-03 00:25:40 -07006123/*
6124 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125 * offline.
6126 */
6127void idle_task_exit(void)
6128{
6129 struct mm_struct *mm = current->active_mm;
6130
6131 BUG_ON(cpu_online(smp_processor_id()));
6132
6133 if (mm != &init_mm)
6134 switch_mm(mm, &init_mm, current);
6135 mmdrop(mm);
6136}
6137
Kirill Korotaev054b9102006-12-10 02:20:11 -08006138/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006139static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006141 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142
6143 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006144 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145
6146 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006147 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148
Ingo Molnar48f24c42006-07-03 00:25:40 -07006149 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150
6151 /*
6152 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006153 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154 * fine.
6155 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006156 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006157 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006158 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006159
Ingo Molnar48f24c42006-07-03 00:25:40 -07006160 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161}
6162
6163/* release_task() removes task from tasklist, so we won't find dead tasks. */
6164static void migrate_dead_tasks(unsigned int dead_cpu)
6165{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006166 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006167 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168
Ingo Molnardd41f592007-07-09 18:51:59 +02006169 for ( ; ; ) {
6170 if (!rq->nr_running)
6171 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006172 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006173 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006174 if (!next)
6175 break;
6176 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006177
Linus Torvalds1da177e2005-04-16 15:20:36 -07006178 }
6179}
6180#endif /* CONFIG_HOTPLUG_CPU */
6181
Nick Piggine692ab52007-07-26 13:40:43 +02006182#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6183
6184static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006185 {
6186 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006187 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006188 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006189 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006190};
6191
6192static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006193 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006194 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006195 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006196 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006197 .child = sd_ctl_dir,
6198 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006199 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006200};
6201
6202static struct ctl_table *sd_alloc_ctl_entry(int n)
6203{
6204 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006205 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006206
Nick Piggine692ab52007-07-26 13:40:43 +02006207 return entry;
6208}
6209
Milton Miller6382bc92007-10-15 17:00:19 +02006210static void sd_free_ctl_entry(struct ctl_table **tablep)
6211{
Milton Millercd7900762007-10-17 16:55:11 +02006212 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006213
Milton Millercd7900762007-10-17 16:55:11 +02006214 /*
6215 * In the intermediate directories, both the child directory and
6216 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006217 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02006218 * static strings and all have proc handlers.
6219 */
6220 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006221 if (entry->child)
6222 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02006223 if (entry->proc_handler == NULL)
6224 kfree(entry->procname);
6225 }
Milton Miller6382bc92007-10-15 17:00:19 +02006226
6227 kfree(*tablep);
6228 *tablep = NULL;
6229}
6230
Nick Piggine692ab52007-07-26 13:40:43 +02006231static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006232set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006233 const char *procname, void *data, int maxlen,
6234 mode_t mode, proc_handler *proc_handler)
6235{
Nick Piggine692ab52007-07-26 13:40:43 +02006236 entry->procname = procname;
6237 entry->data = data;
6238 entry->maxlen = maxlen;
6239 entry->mode = mode;
6240 entry->proc_handler = proc_handler;
6241}
6242
6243static struct ctl_table *
6244sd_alloc_ctl_domain_table(struct sched_domain *sd)
6245{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006246 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02006247
Milton Millerad1cdc12007-10-15 17:00:19 +02006248 if (table == NULL)
6249 return NULL;
6250
Alexey Dobriyane0361852007-08-09 11:16:46 +02006251 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006252 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006253 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006254 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006255 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006256 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006257 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006258 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006259 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006260 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006261 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006262 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006263 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006264 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006265 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006266 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006267 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006268 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006269 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006270 &sd->cache_nice_tries,
6271 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006272 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006273 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02006274 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006275
6276 return table;
6277}
6278
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006279static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006280{
6281 struct ctl_table *entry, *table;
6282 struct sched_domain *sd;
6283 int domain_num = 0, i;
6284 char buf[32];
6285
6286 for_each_domain(cpu, sd)
6287 domain_num++;
6288 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006289 if (table == NULL)
6290 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006291
6292 i = 0;
6293 for_each_domain(cpu, sd) {
6294 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006295 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006296 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006297 entry->child = sd_alloc_ctl_domain_table(sd);
6298 entry++;
6299 i++;
6300 }
6301 return table;
6302}
6303
6304static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006305static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006306{
6307 int i, cpu_num = num_online_cpus();
6308 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6309 char buf[32];
6310
Milton Miller73785472007-10-24 18:23:48 +02006311 WARN_ON(sd_ctl_dir[0].child);
6312 sd_ctl_dir[0].child = entry;
6313
Milton Millerad1cdc12007-10-15 17:00:19 +02006314 if (entry == NULL)
6315 return;
6316
Milton Miller97b6ea72007-10-15 17:00:19 +02006317 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006318 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006319 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006320 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006321 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006322 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006323 }
Milton Miller73785472007-10-24 18:23:48 +02006324
6325 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006326 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6327}
Milton Miller6382bc92007-10-15 17:00:19 +02006328
Milton Miller73785472007-10-24 18:23:48 +02006329/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006330static void unregister_sched_domain_sysctl(void)
6331{
Milton Miller73785472007-10-24 18:23:48 +02006332 if (sd_sysctl_header)
6333 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006334 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006335 if (sd_ctl_dir[0].child)
6336 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006337}
Nick Piggine692ab52007-07-26 13:40:43 +02006338#else
Milton Miller6382bc92007-10-15 17:00:19 +02006339static void register_sched_domain_sysctl(void)
6340{
6341}
6342static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006343{
6344}
6345#endif
6346
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006347static void set_rq_online(struct rq *rq)
6348{
6349 if (!rq->online) {
6350 const struct sched_class *class;
6351
6352 cpu_set(rq->cpu, rq->rd->online);
6353 rq->online = 1;
6354
6355 for_each_class(class) {
6356 if (class->rq_online)
6357 class->rq_online(rq);
6358 }
6359 }
6360}
6361
6362static void set_rq_offline(struct rq *rq)
6363{
6364 if (rq->online) {
6365 const struct sched_class *class;
6366
6367 for_each_class(class) {
6368 if (class->rq_offline)
6369 class->rq_offline(rq);
6370 }
6371
6372 cpu_clear(rq->cpu, rq->rd->online);
6373 rq->online = 0;
6374 }
6375}
6376
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377/*
6378 * migration_call - callback that gets triggered when a CPU is added.
6379 * Here we can start up the necessary migration thread for the new CPU.
6380 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006381static int __cpuinit
6382migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006385 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006387 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388
6389 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006390
Linus Torvalds1da177e2005-04-16 15:20:36 -07006391 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006392 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006393 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394 if (IS_ERR(p))
6395 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396 kthread_bind(p, cpu);
6397 /* Must be high prio: stop_machine expects to yield to it. */
6398 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006399 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400 task_rq_unlock(rq, &flags);
6401 cpu_rq(cpu)->migration_thread = p;
6402 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006403
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006405 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006406 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006408
6409 /* Update our root-domain */
6410 rq = cpu_rq(cpu);
6411 spin_lock_irqsave(&rq->lock, flags);
6412 if (rq->rd) {
6413 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006414
6415 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006416 }
6417 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006419
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420#ifdef CONFIG_HOTPLUG_CPU
6421 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006422 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006423 if (!cpu_rq(cpu)->migration_thread)
6424 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006425 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006426 kthread_bind(cpu_rq(cpu)->migration_thread,
6427 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428 kthread_stop(cpu_rq(cpu)->migration_thread);
6429 cpu_rq(cpu)->migration_thread = NULL;
6430 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006431
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006433 case CPU_DEAD_FROZEN:
Cliff Wickman470fd6462007-10-18 23:40:46 -07006434 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435 migrate_live_tasks(cpu);
6436 rq = cpu_rq(cpu);
6437 kthread_stop(rq->migration_thread);
6438 rq->migration_thread = NULL;
6439 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006440 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006441 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006442 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006444 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6445 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006447 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd6462007-10-18 23:40:46 -07006448 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449 migrate_nr_uninterruptible(rq);
6450 BUG_ON(rq->nr_running != 0);
6451
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006452 /*
6453 * No need to migrate the tasks: it was best-effort if
6454 * they didn't take sched_hotcpu_mutex. Just wake up
6455 * the requestors.
6456 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457 spin_lock_irq(&rq->lock);
6458 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006459 struct migration_req *req;
6460
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006462 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463 list_del_init(&req->list);
6464 complete(&req->done);
6465 }
6466 spin_unlock_irq(&rq->lock);
6467 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006468
Gregory Haskins08f503b2008-03-10 17:59:11 -04006469 case CPU_DYING:
6470 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006471 /* Update our root-domain */
6472 rq = cpu_rq(cpu);
6473 spin_lock_irqsave(&rq->lock, flags);
6474 if (rq->rd) {
6475 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006476 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006477 }
6478 spin_unlock_irqrestore(&rq->lock, flags);
6479 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480#endif
6481 }
6482 return NOTIFY_OK;
6483}
6484
6485/* Register at highest priority so that task migration (migrate_all_tasks)
6486 * happens before everything else.
6487 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006488static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489 .notifier_call = migration_call,
6490 .priority = 10
6491};
6492
Adrian Bunke6fe6642007-11-09 22:39:39 +01006493void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494{
6495 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006496 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006497
6498 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006499 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6500 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6502 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503}
6504#endif
6505
6506#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006507
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006508#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006509
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306510static inline const char *sd_level_to_string(enum sched_domain_level lvl)
6511{
6512 switch (lvl) {
6513 case SD_LV_NONE:
6514 return "NONE";
6515 case SD_LV_SIBLING:
6516 return "SIBLING";
6517 case SD_LV_MC:
6518 return "MC";
6519 case SD_LV_CPU:
6520 return "CPU";
6521 case SD_LV_NODE:
6522 return "NODE";
6523 case SD_LV_ALLNODES:
6524 return "ALLNODES";
6525 case SD_LV_MAX:
6526 return "MAX";
6527
6528 }
6529 return "MAX";
6530}
6531
Mike Travis7c16ec52008-04-04 18:11:11 -07006532static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6533 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006534{
6535 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006536 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006537
Mike Travis434d53b2008-04-04 18:11:04 -07006538 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006539 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006540
6541 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6542
6543 if (!(sd->flags & SD_LOAD_BALANCE)) {
6544 printk("does not load-balance\n");
6545 if (sd->parent)
6546 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6547 " has parent");
6548 return -1;
6549 }
6550
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306551 printk(KERN_CONT "span %s level %s\n",
6552 str, sd_level_to_string(sd->level));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006553
6554 if (!cpu_isset(cpu, sd->span)) {
6555 printk(KERN_ERR "ERROR: domain->span does not contain "
6556 "CPU%d\n", cpu);
6557 }
6558 if (!cpu_isset(cpu, group->cpumask)) {
6559 printk(KERN_ERR "ERROR: domain->groups does not contain"
6560 " CPU%d\n", cpu);
6561 }
6562
6563 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6564 do {
6565 if (!group) {
6566 printk("\n");
6567 printk(KERN_ERR "ERROR: group is NULL\n");
6568 break;
6569 }
6570
6571 if (!group->__cpu_power) {
6572 printk(KERN_CONT "\n");
6573 printk(KERN_ERR "ERROR: domain->cpu_power not "
6574 "set\n");
6575 break;
6576 }
6577
6578 if (!cpus_weight(group->cpumask)) {
6579 printk(KERN_CONT "\n");
6580 printk(KERN_ERR "ERROR: empty group\n");
6581 break;
6582 }
6583
Mike Travis7c16ec52008-04-04 18:11:11 -07006584 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006585 printk(KERN_CONT "\n");
6586 printk(KERN_ERR "ERROR: repeated CPUs\n");
6587 break;
6588 }
6589
Mike Travis7c16ec52008-04-04 18:11:11 -07006590 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006591
Mike Travis434d53b2008-04-04 18:11:04 -07006592 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006593 printk(KERN_CONT " %s", str);
6594
6595 group = group->next;
6596 } while (group != sd->groups);
6597 printk(KERN_CONT "\n");
6598
Mike Travis7c16ec52008-04-04 18:11:11 -07006599 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006600 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6601
Mike Travis7c16ec52008-04-04 18:11:11 -07006602 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006603 printk(KERN_ERR "ERROR: parent span is not a superset "
6604 "of domain->span\n");
6605 return 0;
6606}
6607
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608static void sched_domain_debug(struct sched_domain *sd, int cpu)
6609{
Mike Travis7c16ec52008-04-04 18:11:11 -07006610 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611 int level = 0;
6612
Nick Piggin41c7ce92005-06-25 14:57:24 -07006613 if (!sd) {
6614 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6615 return;
6616 }
6617
Linus Torvalds1da177e2005-04-16 15:20:36 -07006618 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6619
Mike Travis7c16ec52008-04-04 18:11:11 -07006620 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6621 if (!groupmask) {
6622 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6623 return;
6624 }
6625
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006626 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006627 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629 level++;
6630 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006631 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006632 break;
6633 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006634 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006636#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006637# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006638#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006640static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006641{
6642 if (cpus_weight(sd->span) == 1)
6643 return 1;
6644
6645 /* Following flags need at least 2 groups */
6646 if (sd->flags & (SD_LOAD_BALANCE |
6647 SD_BALANCE_NEWIDLE |
6648 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006649 SD_BALANCE_EXEC |
6650 SD_SHARE_CPUPOWER |
6651 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006652 if (sd->groups != sd->groups->next)
6653 return 0;
6654 }
6655
6656 /* Following flags don't use groups */
6657 if (sd->flags & (SD_WAKE_IDLE |
6658 SD_WAKE_AFFINE |
6659 SD_WAKE_BALANCE))
6660 return 0;
6661
6662 return 1;
6663}
6664
Ingo Molnar48f24c42006-07-03 00:25:40 -07006665static int
6666sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006667{
6668 unsigned long cflags = sd->flags, pflags = parent->flags;
6669
6670 if (sd_degenerate(parent))
6671 return 1;
6672
6673 if (!cpus_equal(sd->span, parent->span))
6674 return 0;
6675
6676 /* Does parent contain flags not in child? */
6677 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6678 if (cflags & SD_WAKE_AFFINE)
6679 pflags &= ~SD_WAKE_BALANCE;
6680 /* Flags needing groups don't count if only 1 group in parent */
6681 if (parent->groups == parent->groups->next) {
6682 pflags &= ~(SD_LOAD_BALANCE |
6683 SD_BALANCE_NEWIDLE |
6684 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006685 SD_BALANCE_EXEC |
6686 SD_SHARE_CPUPOWER |
6687 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006688 }
6689 if (~cflags & pflags)
6690 return 0;
6691
6692 return 1;
6693}
6694
Gregory Haskins57d885f2008-01-25 21:08:18 +01006695static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6696{
6697 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006698
6699 spin_lock_irqsave(&rq->lock, flags);
6700
6701 if (rq->rd) {
6702 struct root_domain *old_rd = rq->rd;
6703
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006704 if (cpu_isset(rq->cpu, old_rd->online))
6705 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006706
Gregory Haskinsdc938522008-01-25 21:08:26 +01006707 cpu_clear(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006708
Gregory Haskins57d885f2008-01-25 21:08:18 +01006709 if (atomic_dec_and_test(&old_rd->refcount))
6710 kfree(old_rd);
6711 }
6712
6713 atomic_inc(&rd->refcount);
6714 rq->rd = rd;
6715
Gregory Haskinsdc938522008-01-25 21:08:26 +01006716 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006717 if (cpu_isset(rq->cpu, cpu_online_map))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006718 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006719
6720 spin_unlock_irqrestore(&rq->lock, flags);
6721}
6722
Gregory Haskinsdc938522008-01-25 21:08:26 +01006723static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006724{
6725 memset(rd, 0, sizeof(*rd));
6726
Gregory Haskinsdc938522008-01-25 21:08:26 +01006727 cpus_clear(rd->span);
6728 cpus_clear(rd->online);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006729
6730 cpupri_init(&rd->cpupri);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006731}
6732
6733static void init_defrootdomain(void)
6734{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006735 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006736 atomic_set(&def_root_domain.refcount, 1);
6737}
6738
Gregory Haskinsdc938522008-01-25 21:08:26 +01006739static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006740{
6741 struct root_domain *rd;
6742
6743 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6744 if (!rd)
6745 return NULL;
6746
Gregory Haskinsdc938522008-01-25 21:08:26 +01006747 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006748
6749 return rd;
6750}
6751
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006753 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754 * hold the hotplug lock.
6755 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006756static void
6757cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006759 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006760 struct sched_domain *tmp;
6761
6762 /* Remove the sched domains which do not contribute to scheduling. */
6763 for (tmp = sd; tmp; tmp = tmp->parent) {
6764 struct sched_domain *parent = tmp->parent;
6765 if (!parent)
6766 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006767 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006768 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006769 if (parent->parent)
6770 parent->parent->child = tmp;
6771 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006772 }
6773
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006774 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006775 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006776 if (sd)
6777 sd->child = NULL;
6778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779
6780 sched_domain_debug(sd, cpu);
6781
Gregory Haskins57d885f2008-01-25 21:08:18 +01006782 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006783 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006784}
6785
6786/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006787static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788
6789/* Setup the mask of cpus configured for isolated domains */
6790static int __init isolated_cpu_setup(char *str)
6791{
6792 int ints[NR_CPUS], i;
6793
6794 str = get_options(str, ARRAY_SIZE(ints), ints);
6795 cpus_clear(cpu_isolated_map);
6796 for (i = 1; i <= ints[0]; i++)
6797 if (ints[i] < NR_CPUS)
6798 cpu_set(ints[i], cpu_isolated_map);
6799 return 1;
6800}
6801
Ingo Molnar8927f492007-10-15 17:00:13 +02006802__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006803
6804/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006805 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6806 * to a function which identifies what group(along with sched group) a CPU
6807 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6808 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809 *
6810 * init_sched_build_groups will build a circular linked list of the groups
6811 * covered by the given span, and will set each group's ->cpumask correctly,
6812 * and ->cpu_power to 0.
6813 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006814static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006815init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006816 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006817 struct sched_group **sg,
6818 cpumask_t *tmpmask),
6819 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820{
6821 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822 int i;
6823
Mike Travis7c16ec52008-04-04 18:11:11 -07006824 cpus_clear(*covered);
6825
6826 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006827 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006828 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829 int j;
6830
Mike Travis7c16ec52008-04-04 18:11:11 -07006831 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006832 continue;
6833
Mike Travis7c16ec52008-04-04 18:11:11 -07006834 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006835 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836
Mike Travis7c16ec52008-04-04 18:11:11 -07006837 for_each_cpu_mask(j, *span) {
6838 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006839 continue;
6840
Mike Travis7c16ec52008-04-04 18:11:11 -07006841 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842 cpu_set(j, sg->cpumask);
6843 }
6844 if (!first)
6845 first = sg;
6846 if (last)
6847 last->next = sg;
6848 last = sg;
6849 }
6850 last->next = first;
6851}
6852
John Hawkes9c1cfda2005-09-06 15:18:14 -07006853#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854
John Hawkes9c1cfda2005-09-06 15:18:14 -07006855#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006856
John Hawkes9c1cfda2005-09-06 15:18:14 -07006857/**
6858 * find_next_best_node - find the next node to include in a sched_domain
6859 * @node: node whose sched_domain we're building
6860 * @used_nodes: nodes already in the sched_domain
6861 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006862 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006863 * finds the closest node not already in the @used_nodes map.
6864 *
6865 * Should use nodemask_t.
6866 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006867static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006868{
6869 int i, n, val, min_val, best_node = 0;
6870
6871 min_val = INT_MAX;
6872
6873 for (i = 0; i < MAX_NUMNODES; i++) {
6874 /* Start at @node */
6875 n = (node + i) % MAX_NUMNODES;
6876
6877 if (!nr_cpus_node(n))
6878 continue;
6879
6880 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006881 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006882 continue;
6883
6884 /* Simple min distance search */
6885 val = node_distance(node, n);
6886
6887 if (val < min_val) {
6888 min_val = val;
6889 best_node = n;
6890 }
6891 }
6892
Mike Travisc5f59f02008-04-04 18:11:10 -07006893 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006894 return best_node;
6895}
6896
6897/**
6898 * sched_domain_node_span - get a cpumask for a node's sched_domain
6899 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07006900 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07006901 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006902 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006903 * should be one that prevents unnecessary balancing, but also spreads tasks
6904 * out optimally.
6905 */
Mike Travis4bdbaad32008-04-15 16:35:52 -07006906static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006907{
Mike Travisc5f59f02008-04-04 18:11:10 -07006908 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07006909 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006910 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006911
Mike Travis4bdbaad32008-04-15 16:35:52 -07006912 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07006913 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006914
Mike Travis4bdbaad32008-04-15 16:35:52 -07006915 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07006916 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006917
6918 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07006919 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006920
Mike Travisc5f59f02008-04-04 18:11:10 -07006921 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad32008-04-15 16:35:52 -07006922 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006923 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006924}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006925#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006926
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006927int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006928
John Hawkes9c1cfda2005-09-06 15:18:14 -07006929/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006930 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006931 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932#ifdef CONFIG_SCHED_SMT
6933static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006934static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006935
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006936static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006937cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6938 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006939{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006940 if (sg)
6941 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942 return cpu;
6943}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006944#endif /* CONFIG_SCHED_SMT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006945
Ingo Molnar48f24c42006-07-03 00:25:40 -07006946/*
6947 * multi-core sched-domains:
6948 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006949#ifdef CONFIG_SCHED_MC
6950static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006951static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006952#endif /* CONFIG_SCHED_MC */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006953
6954#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006955static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006956cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6957 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006958{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006959 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07006960
6961 *mask = per_cpu(cpu_sibling_map, cpu);
6962 cpus_and(*mask, *mask, *cpu_map);
6963 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006964 if (sg)
6965 *sg = &per_cpu(sched_group_core, group);
6966 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006967}
6968#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006969static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006970cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6971 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006972{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006973 if (sg)
6974 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006975 return cpu;
6976}
6977#endif
6978
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006980static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006981
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006982static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006983cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6984 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006985{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006986 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006987#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07006988 *mask = cpu_coregroup_map(cpu);
6989 cpus_and(*mask, *mask, *cpu_map);
6990 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006991#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07006992 *mask = per_cpu(cpu_sibling_map, cpu);
6993 cpus_and(*mask, *mask, *cpu_map);
6994 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006996 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006998 if (sg)
6999 *sg = &per_cpu(sched_group_phys, group);
7000 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001}
7002
7003#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07007004/*
7005 * The init_sched_build_groups can't handle what we want to do with node
7006 * groups, so roll our own. Now each node has its own list of groups which
7007 * gets dynamically allocated.
7008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07007010static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007011
7012static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007013static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007014
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007015static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007016 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007018 int group;
7019
Mike Travis7c16ec52008-04-04 18:11:11 -07007020 *nodemask = node_to_cpumask(cpu_to_node(cpu));
7021 cpus_and(*nodemask, *nodemask, *cpu_map);
7022 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007023
7024 if (sg)
7025 *sg = &per_cpu(sched_group_allnodes, group);
7026 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007028
Siddha, Suresh B08069032006-03-27 01:15:23 -08007029static void init_numa_sched_groups_power(struct sched_group *group_head)
7030{
7031 struct sched_group *sg = group_head;
7032 int j;
7033
7034 if (!sg)
7035 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007036 do {
7037 for_each_cpu_mask(j, sg->cpumask) {
7038 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007039
Andi Kleen3a5c3592007-10-15 17:00:14 +02007040 sd = &per_cpu(phys_domains, j);
7041 if (j != first_cpu(sd->groups->cpumask)) {
7042 /*
7043 * Only add "power" once for each
7044 * physical package.
7045 */
7046 continue;
7047 }
7048
7049 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007050 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007051 sg = sg->next;
7052 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007053}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007054#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007055
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007056#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007057/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07007058static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007059{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007060 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007061
7062 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007063 struct sched_group **sched_group_nodes
7064 = sched_group_nodes_bycpu[cpu];
7065
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007066 if (!sched_group_nodes)
7067 continue;
7068
7069 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007070 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7071
Mike Travis7c16ec52008-04-04 18:11:11 -07007072 *nodemask = node_to_cpumask(i);
7073 cpus_and(*nodemask, *nodemask, *cpu_map);
7074 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007075 continue;
7076
7077 if (sg == NULL)
7078 continue;
7079 sg = sg->next;
7080next_sg:
7081 oldsg = sg;
7082 sg = sg->next;
7083 kfree(oldsg);
7084 if (oldsg != sched_group_nodes[i])
7085 goto next_sg;
7086 }
7087 kfree(sched_group_nodes);
7088 sched_group_nodes_bycpu[cpu] = NULL;
7089 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007090}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007091#else /* !CONFIG_NUMA */
Mike Travis7c16ec52008-04-04 18:11:11 -07007092static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007093{
7094}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007095#endif /* CONFIG_NUMA */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007096
Linus Torvalds1da177e2005-04-16 15:20:36 -07007097/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007098 * Initialize sched groups cpu_power.
7099 *
7100 * cpu_power indicates the capacity of sched group, which is used while
7101 * distributing the load between different sched groups in a sched domain.
7102 * Typically cpu_power for all the groups in a sched domain will be same unless
7103 * there are asymmetries in the topology. If there are asymmetries, group
7104 * having more cpu_power will pickup more load compared to the group having
7105 * less cpu_power.
7106 *
7107 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7108 * the maximum number of tasks a group can handle in the presence of other idle
7109 * or lightly loaded groups in the same sched domain.
7110 */
7111static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7112{
7113 struct sched_domain *child;
7114 struct sched_group *group;
7115
7116 WARN_ON(!sd || !sd->groups);
7117
7118 if (cpu != first_cpu(sd->groups->cpumask))
7119 return;
7120
7121 child = sd->child;
7122
Eric Dumazet5517d862007-05-08 00:32:57 -07007123 sd->groups->__cpu_power = 0;
7124
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007125 /*
7126 * For perf policy, if the groups in child domain share resources
7127 * (for example cores sharing some portions of the cache hierarchy
7128 * or SMT), then set this domain groups cpu_power such that each group
7129 * can handle only one task, when there are other idle groups in the
7130 * same sched domain.
7131 */
7132 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7133 (child->flags &
7134 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007135 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007136 return;
7137 }
7138
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007139 /*
7140 * add cpu_power of each child group to this groups cpu_power
7141 */
7142 group = child->groups;
7143 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007144 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007145 group = group->next;
7146 } while (group != child->groups);
7147}
7148
7149/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007150 * Initializers for schedule domains
7151 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7152 */
7153
7154#define SD_INIT(sd, type) sd_init_##type(sd)
7155#define SD_INIT_FUNC(type) \
7156static noinline void sd_init_##type(struct sched_domain *sd) \
7157{ \
7158 memset(sd, 0, sizeof(*sd)); \
7159 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007160 sd->level = SD_LV_##type; \
Mike Travis7c16ec52008-04-04 18:11:11 -07007161}
7162
7163SD_INIT_FUNC(CPU)
7164#ifdef CONFIG_NUMA
7165 SD_INIT_FUNC(ALLNODES)
7166 SD_INIT_FUNC(NODE)
7167#endif
7168#ifdef CONFIG_SCHED_SMT
7169 SD_INIT_FUNC(SIBLING)
7170#endif
7171#ifdef CONFIG_SCHED_MC
7172 SD_INIT_FUNC(MC)
7173#endif
7174
7175/*
7176 * To minimize stack usage kmalloc room for cpumasks and share the
7177 * space as the usage in build_sched_domains() dictates. Used only
7178 * if the amount of space is significant.
7179 */
7180struct allmasks {
7181 cpumask_t tmpmask; /* make this one first */
7182 union {
7183 cpumask_t nodemask;
7184 cpumask_t this_sibling_map;
7185 cpumask_t this_core_map;
7186 };
7187 cpumask_t send_covered;
7188
7189#ifdef CONFIG_NUMA
7190 cpumask_t domainspan;
7191 cpumask_t covered;
7192 cpumask_t notcovered;
7193#endif
7194};
7195
7196#if NR_CPUS > 128
7197#define SCHED_CPUMASK_ALLOC 1
7198#define SCHED_CPUMASK_FREE(v) kfree(v)
7199#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
7200#else
7201#define SCHED_CPUMASK_ALLOC 0
7202#define SCHED_CPUMASK_FREE(v)
7203#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
7204#endif
7205
7206#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
7207 ((unsigned long)(a) + offsetof(struct allmasks, v))
7208
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007209static int default_relax_domain_level = -1;
7210
7211static int __init setup_relax_domain_level(char *str)
7212{
Li Zefan30e0e172008-05-13 10:27:17 +08007213 unsigned long val;
7214
7215 val = simple_strtoul(str, NULL, 0);
7216 if (val < SD_LV_MAX)
7217 default_relax_domain_level = val;
7218
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007219 return 1;
7220}
7221__setup("relax_domain_level=", setup_relax_domain_level);
7222
7223static void set_domain_attribute(struct sched_domain *sd,
7224 struct sched_domain_attr *attr)
7225{
7226 int request;
7227
7228 if (!attr || attr->relax_domain_level < 0) {
7229 if (default_relax_domain_level < 0)
7230 return;
7231 else
7232 request = default_relax_domain_level;
7233 } else
7234 request = attr->relax_domain_level;
7235 if (request < sd->level) {
7236 /* turn off idle balance on this domain */
7237 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7238 } else {
7239 /* turn on idle balance on this domain */
7240 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7241 }
7242}
7243
Mike Travis7c16ec52008-04-04 18:11:11 -07007244/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007245 * Build sched domains for a given set of cpus and attach the sched domains
7246 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007247 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007248static int __build_sched_domains(const cpumask_t *cpu_map,
7249 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250{
7251 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007252 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007253 SCHED_CPUMASK_DECLARE(allmasks);
7254 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007255#ifdef CONFIG_NUMA
7256 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007257 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007258
7259 /*
7260 * Allocate the per-node list of sched groups
7261 */
Milton Miller5cf9f062007-10-15 17:00:19 +02007262 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007263 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007264 if (!sched_group_nodes) {
7265 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007266 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07007267 }
John Hawkesd1b55132005-09-06 15:18:14 -07007268#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007269
Gregory Haskinsdc938522008-01-25 21:08:26 +01007270 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007271 if (!rd) {
7272 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07007273#ifdef CONFIG_NUMA
7274 kfree(sched_group_nodes);
7275#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007276 return -ENOMEM;
7277 }
7278
Mike Travis7c16ec52008-04-04 18:11:11 -07007279#if SCHED_CPUMASK_ALLOC
7280 /* get space for all scratch cpumask variables */
7281 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7282 if (!allmasks) {
7283 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7284 kfree(rd);
7285#ifdef CONFIG_NUMA
7286 kfree(sched_group_nodes);
7287#endif
7288 return -ENOMEM;
7289 }
7290#endif
7291 tmpmask = (cpumask_t *)allmasks;
7292
7293
7294#ifdef CONFIG_NUMA
7295 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7296#endif
7297
Linus Torvalds1da177e2005-04-16 15:20:36 -07007298 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007299 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007300 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007301 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07007303 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304
Mike Travis7c16ec52008-04-04 18:11:11 -07007305 *nodemask = node_to_cpumask(cpu_to_node(i));
7306 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307
7308#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02007309 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07007310 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007311 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007312 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007313 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007314 sd->span = *cpu_map;
Mike Travis7c16ec52008-04-04 18:11:11 -07007315 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007316 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007317 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007318 } else
7319 p = NULL;
7320
Linus Torvalds1da177e2005-04-16 15:20:36 -07007321 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007322 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007323 set_domain_attribute(sd, attr);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007324 sched_domain_node_span(cpu_to_node(i), &sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007325 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007326 if (p)
7327 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007328 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007329#endif
7330
7331 p = sd;
7332 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007333 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007334 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007335 sd->span = *nodemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007337 if (p)
7338 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007339 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007341#ifdef CONFIG_SCHED_MC
7342 p = sd;
7343 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007344 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007345 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007346 sd->span = cpu_coregroup_map(i);
7347 cpus_and(sd->span, sd->span, *cpu_map);
7348 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007349 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007350 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007351#endif
7352
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353#ifdef CONFIG_SCHED_SMT
7354 p = sd;
7355 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007356 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007357 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007358 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007359 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007360 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007361 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007362 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363#endif
7364 }
7365
7366#ifdef CONFIG_SCHED_SMT
7367 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007368 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007369 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7370 SCHED_CPUMASK_VAR(send_covered, allmasks);
7371
7372 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7373 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7374 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007375 continue;
7376
Ingo Molnardd41f592007-07-09 18:51:59 +02007377 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007378 &cpu_to_cpu_group,
7379 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380 }
7381#endif
7382
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007383#ifdef CONFIG_SCHED_MC
7384 /* Set up multi-core groups */
7385 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007386 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7387 SCHED_CPUMASK_VAR(send_covered, allmasks);
7388
7389 *this_core_map = cpu_coregroup_map(i);
7390 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7391 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007392 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007393
Ingo Molnardd41f592007-07-09 18:51:59 +02007394 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007395 &cpu_to_core_group,
7396 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007397 }
7398#endif
7399
Linus Torvalds1da177e2005-04-16 15:20:36 -07007400 /* Set up physical groups */
7401 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007402 SCHED_CPUMASK_VAR(nodemask, allmasks);
7403 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404
Mike Travis7c16ec52008-04-04 18:11:11 -07007405 *nodemask = node_to_cpumask(i);
7406 cpus_and(*nodemask, *nodemask, *cpu_map);
7407 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408 continue;
7409
Mike Travis7c16ec52008-04-04 18:11:11 -07007410 init_sched_build_groups(nodemask, cpu_map,
7411 &cpu_to_phys_group,
7412 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413 }
7414
7415#ifdef CONFIG_NUMA
7416 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007417 if (sd_allnodes) {
7418 SCHED_CPUMASK_VAR(send_covered, allmasks);
7419
7420 init_sched_build_groups(cpu_map, cpu_map,
7421 &cpu_to_allnodes_group,
7422 send_covered, tmpmask);
7423 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007424
7425 for (i = 0; i < MAX_NUMNODES; i++) {
7426 /* Set up node groups */
7427 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007428 SCHED_CPUMASK_VAR(nodemask, allmasks);
7429 SCHED_CPUMASK_VAR(domainspan, allmasks);
7430 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007431 int j;
7432
Mike Travis7c16ec52008-04-04 18:11:11 -07007433 *nodemask = node_to_cpumask(i);
7434 cpus_clear(*covered);
7435
7436 cpus_and(*nodemask, *nodemask, *cpu_map);
7437 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007438 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007439 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007440 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007441
Mike Travis4bdbaad32008-04-15 16:35:52 -07007442 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007443 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007444
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007445 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007446 if (!sg) {
7447 printk(KERN_WARNING "Can not alloc domain group for "
7448 "node %d\n", i);
7449 goto error;
7450 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007451 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007452 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007453 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007454
John Hawkes9c1cfda2005-09-06 15:18:14 -07007455 sd = &per_cpu(node_domains, j);
7456 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007457 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007458 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007459 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007460 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007461 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007462 prev = sg;
7463
7464 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007465 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007466 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007467 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007468
Mike Travis7c16ec52008-04-04 18:11:11 -07007469 cpus_complement(*notcovered, *covered);
7470 cpus_and(*tmpmask, *notcovered, *cpu_map);
7471 cpus_and(*tmpmask, *tmpmask, *domainspan);
7472 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007473 break;
7474
Mike Travis7c16ec52008-04-04 18:11:11 -07007475 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7476 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007477 continue;
7478
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007479 sg = kmalloc_node(sizeof(struct sched_group),
7480 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007481 if (!sg) {
7482 printk(KERN_WARNING
7483 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007484 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007485 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007486 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007487 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007488 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007489 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007490 prev->next = sg;
7491 prev = sg;
7492 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007494#endif
7495
7496 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007497#ifdef CONFIG_SCHED_SMT
7498 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007499 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7500
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007501 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007502 }
7503#endif
7504#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007505 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007506 struct sched_domain *sd = &per_cpu(core_domains, i);
7507
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007508 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007509 }
7510#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007512 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007513 struct sched_domain *sd = &per_cpu(phys_domains, i);
7514
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007515 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516 }
7517
John Hawkes9c1cfda2005-09-06 15:18:14 -07007518#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007519 for (i = 0; i < MAX_NUMNODES; i++)
7520 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007521
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007522 if (sd_allnodes) {
7523 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007524
Mike Travis7c16ec52008-04-04 18:11:11 -07007525 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7526 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007527 init_numa_sched_groups_power(sg);
7528 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007529#endif
7530
Linus Torvalds1da177e2005-04-16 15:20:36 -07007531 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007532 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007533 struct sched_domain *sd;
7534#ifdef CONFIG_SCHED_SMT
7535 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007536#elif defined(CONFIG_SCHED_MC)
7537 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007538#else
7539 sd = &per_cpu(phys_domains, i);
7540#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007541 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007542 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007543
Mike Travis7c16ec52008-04-04 18:11:11 -07007544 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007545 return 0;
7546
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007547#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007548error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007549 free_sched_groups(cpu_map, tmpmask);
7550 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007551 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007552#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007553}
Paul Jackson029190c2007-10-18 23:40:20 -07007554
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007555static int build_sched_domains(const cpumask_t *cpu_map)
7556{
7557 return __build_sched_domains(cpu_map, NULL);
7558}
7559
Paul Jackson029190c2007-10-18 23:40:20 -07007560static cpumask_t *doms_cur; /* current sched domains */
7561static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007562static struct sched_domain_attr *dattr_cur;
7563 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007564
7565/*
7566 * Special case: If a kmalloc of a doms_cur partition (array of
7567 * cpumask_t) fails, then fallback to a single sched domain,
7568 * as determined by the single cpumask_t fallback_doms.
7569 */
7570static cpumask_t fallback_doms;
7571
Heiko Carstens22e52b02008-03-12 18:31:59 +01007572void __attribute__((weak)) arch_update_cpu_topology(void)
7573{
7574}
7575
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007576/*
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007577 * Free current domain masks.
7578 * Called after all cpus are attached to NULL domain.
7579 */
7580static void free_sched_domains(void)
7581{
7582 ndoms_cur = 0;
7583 if (doms_cur != &fallback_doms)
7584 kfree(doms_cur);
7585 doms_cur = &fallback_doms;
7586}
7587
7588/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007589 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007590 * For now this just excludes isolated cpus, but could be used to
7591 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007592 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007593static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007594{
Milton Miller73785472007-10-24 18:23:48 +02007595 int err;
7596
Heiko Carstens22e52b02008-03-12 18:31:59 +01007597 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007598 ndoms_cur = 1;
7599 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7600 if (!doms_cur)
7601 doms_cur = &fallback_doms;
7602 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007603 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007604 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007605 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007606
7607 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007608}
7609
Mike Travis7c16ec52008-04-04 18:11:11 -07007610static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7611 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612{
Mike Travis7c16ec52008-04-04 18:11:11 -07007613 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007614}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007615
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007616/*
7617 * Detach sched domains from a group of cpus specified in cpu_map
7618 * These cpus will now be attached to the NULL domain
7619 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007620static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007621{
Mike Travis7c16ec52008-04-04 18:11:11 -07007622 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007623 int i;
7624
Milton Miller6382bc92007-10-15 17:00:19 +02007625 unregister_sched_domain_sysctl();
7626
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007627 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007628 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007629 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007630 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007631}
7632
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007633/* handle null as "default" */
7634static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7635 struct sched_domain_attr *new, int idx_new)
7636{
7637 struct sched_domain_attr tmp;
7638
7639 /* fast path */
7640 if (!new && !cur)
7641 return 1;
7642
7643 tmp = SD_ATTR_INIT;
7644 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7645 new ? (new + idx_new) : &tmp,
7646 sizeof(struct sched_domain_attr));
7647}
7648
Paul Jackson029190c2007-10-18 23:40:20 -07007649/*
7650 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007651 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007652 * doms_new[] to the current sched domain partitioning, doms_cur[].
7653 * It destroys each deleted domain and builds each new domain.
7654 *
7655 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007656 * The masks don't intersect (don't overlap.) We should setup one
7657 * sched domain for each mask. CPUs not in any of the cpumasks will
7658 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007659 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7660 * it as it is.
7661 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007662 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7663 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007664 * failed the kmalloc call, then it can pass in doms_new == NULL,
7665 * and partition_sched_domains() will fallback to the single partition
7666 * 'fallback_doms'.
7667 *
7668 * Call with hotplug lock held
7669 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007670void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7671 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007672{
7673 int i, j;
7674
Heiko Carstens712555e2008-04-28 11:33:07 +02007675 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007676
Milton Miller73785472007-10-24 18:23:48 +02007677 /* always unregister in case we don't destroy any domains */
7678 unregister_sched_domain_sysctl();
7679
Paul Jackson029190c2007-10-18 23:40:20 -07007680 if (doms_new == NULL) {
7681 ndoms_new = 1;
7682 doms_new = &fallback_doms;
7683 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007684 dattr_new = NULL;
Paul Jackson029190c2007-10-18 23:40:20 -07007685 }
7686
7687 /* Destroy deleted domains */
7688 for (i = 0; i < ndoms_cur; i++) {
7689 for (j = 0; j < ndoms_new; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007690 if (cpus_equal(doms_cur[i], doms_new[j])
7691 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007692 goto match1;
7693 }
7694 /* no match - a current sched domain not in new doms_new[] */
7695 detach_destroy_domains(doms_cur + i);
7696match1:
7697 ;
7698 }
7699
7700 /* Build new domains */
7701 for (i = 0; i < ndoms_new; i++) {
7702 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007703 if (cpus_equal(doms_new[i], doms_cur[j])
7704 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007705 goto match2;
7706 }
7707 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007708 __build_sched_domains(doms_new + i,
7709 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007710match2:
7711 ;
7712 }
7713
7714 /* Remember the new sched domains */
7715 if (doms_cur != &fallback_doms)
7716 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007717 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007718 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007719 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007720 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007721
7722 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007723
Heiko Carstens712555e2008-04-28 11:33:07 +02007724 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007725}
7726
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007727#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007728int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007729{
7730 int err;
7731
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007732 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007733 mutex_lock(&sched_domains_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007734 detach_destroy_domains(&cpu_online_map);
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007735 free_sched_domains();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007736 err = arch_init_sched_domains(&cpu_online_map);
Heiko Carstens712555e2008-04-28 11:33:07 +02007737 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007738 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007739
7740 return err;
7741}
7742
7743static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7744{
7745 int ret;
7746
7747 if (buf[0] != '0' && buf[0] != '1')
7748 return -EINVAL;
7749
7750 if (smt)
7751 sched_smt_power_savings = (buf[0] == '1');
7752 else
7753 sched_mc_power_savings = (buf[0] == '1');
7754
7755 ret = arch_reinit_sched_domains();
7756
7757 return ret ? ret : count;
7758}
7759
Adrian Bunk6707de002007-08-12 18:08:19 +02007760#ifdef CONFIG_SCHED_MC
7761static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7762{
7763 return sprintf(page, "%u\n", sched_mc_power_savings);
7764}
7765static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7766 const char *buf, size_t count)
7767{
7768 return sched_power_savings_store(buf, count, 0);
7769}
7770static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7771 sched_mc_power_savings_store);
7772#endif
7773
7774#ifdef CONFIG_SCHED_SMT
7775static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7776{
7777 return sprintf(page, "%u\n", sched_smt_power_savings);
7778}
7779static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7780 const char *buf, size_t count)
7781{
7782 return sched_power_savings_store(buf, count, 1);
7783}
7784static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7785 sched_smt_power_savings_store);
7786#endif
7787
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007788int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7789{
7790 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007791
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007792#ifdef CONFIG_SCHED_SMT
7793 if (smt_capable())
7794 err = sysfs_create_file(&cls->kset.kobj,
7795 &attr_sched_smt_power_savings.attr);
7796#endif
7797#ifdef CONFIG_SCHED_MC
7798 if (!err && mc_capable())
7799 err = sysfs_create_file(&cls->kset.kobj,
7800 &attr_sched_mc_power_savings.attr);
7801#endif
7802 return err;
7803}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007804#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007805
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007807 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007808 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007809 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810 * which will prevent rebalancing while the sched domains are recalculated.
7811 */
7812static int update_sched_domains(struct notifier_block *nfb,
7813 unsigned long action, void *hcpu)
7814{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007815 int cpu = (int)(long)hcpu;
7816
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007818 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007819 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007820 disable_runtime(cpu_rq(cpu));
7821 /* fall-through */
7822 case CPU_UP_PREPARE:
7823 case CPU_UP_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007824 detach_destroy_domains(&cpu_online_map);
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007825 free_sched_domains();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826 return NOTIFY_OK;
7827
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007828
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007830 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007831 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007832 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007833 enable_runtime(cpu_rq(cpu));
7834 /* fall-through */
7835 case CPU_UP_CANCELED:
7836 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007837 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007838 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007839 /*
7840 * Fall through and re-initialise the domains.
7841 */
7842 break;
7843 default:
7844 return NOTIFY_DONE;
7845 }
7846
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007847#ifndef CONFIG_CPUSETS
7848 /*
7849 * Create default domain partitioning if cpusets are disabled.
7850 * Otherwise we let cpusets rebuild the domains based on the
7851 * current setup.
7852 */
7853
Linus Torvalds1da177e2005-04-16 15:20:36 -07007854 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007855 arch_init_sched_domains(&cpu_online_map);
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007856#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007857
7858 return NOTIFY_OK;
7859}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007860
7861void __init sched_init_smp(void)
7862{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007863 cpumask_t non_isolated_cpus;
7864
Mike Travis434d53b2008-04-04 18:11:04 -07007865#if defined(CONFIG_NUMA)
7866 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7867 GFP_KERNEL);
7868 BUG_ON(sched_group_nodes_bycpu == NULL);
7869#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007870 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007871 mutex_lock(&sched_domains_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007872 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007873 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007874 if (cpus_empty(non_isolated_cpus))
7875 cpu_set(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02007876 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007877 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007878 /* XXX: Theoretical race here - CPU may be hotplugged now */
7879 hotcpu_notifier(update_sched_domains, 0);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02007880 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07007881
7882 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007883 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007884 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007885 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886}
7887#else
7888void __init sched_init_smp(void)
7889{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007890 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891}
7892#endif /* CONFIG_SMP */
7893
7894int in_sched_functions(unsigned long addr)
7895{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007896 return in_lock_functions(addr) ||
7897 (addr >= (unsigned long)__sched_text_start
7898 && addr < (unsigned long)__sched_text_end);
7899}
7900
Alexey Dobriyana9957442007-10-15 17:00:13 +02007901static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007902{
7903 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02007904 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02007905#ifdef CONFIG_FAIR_GROUP_SCHED
7906 cfs_rq->rq = rq;
7907#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007908 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007909}
7910
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007911static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7912{
7913 struct rt_prio_array *array;
7914 int i;
7915
7916 array = &rt_rq->active;
7917 for (i = 0; i < MAX_RT_PRIO; i++) {
Dmitry Adamushko20b63312008-06-11 00:58:30 +02007918 INIT_LIST_HEAD(array->queue + i);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007919 __clear_bit(i, array->bitmap);
7920 }
7921 /* delimiter for bitsearch: */
7922 __set_bit(MAX_RT_PRIO, array->bitmap);
7923
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007924#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007925 rt_rq->highest_prio = MAX_RT_PRIO;
7926#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007927#ifdef CONFIG_SMP
7928 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007929 rt_rq->overloaded = 0;
7930#endif
7931
7932 rt_rq->rt_time = 0;
7933 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007934 rt_rq->rt_runtime = 0;
7935 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007936
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007937#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007938 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007939 rt_rq->rq = rq;
7940#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007941}
7942
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007943#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007944static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
7945 struct sched_entity *se, int cpu, int add,
7946 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007947{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007948 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007949 tg->cfs_rq[cpu] = cfs_rq;
7950 init_cfs_rq(cfs_rq, rq);
7951 cfs_rq->tg = tg;
7952 if (add)
7953 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7954
7955 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007956 /* se could be NULL for init_task_group */
7957 if (!se)
7958 return;
7959
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007960 if (!parent)
7961 se->cfs_rq = &rq->cfs;
7962 else
7963 se->cfs_rq = parent->my_q;
7964
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007965 se->my_q = cfs_rq;
7966 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02007967 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007968 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007969}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007970#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007971
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007972#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007973static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
7974 struct sched_rt_entity *rt_se, int cpu, int add,
7975 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007976{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007977 struct rq *rq = cpu_rq(cpu);
7978
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007979 tg->rt_rq[cpu] = rt_rq;
7980 init_rt_rq(rt_rq, rq);
7981 rt_rq->tg = tg;
7982 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007983 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007984 if (add)
7985 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7986
7987 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007988 if (!rt_se)
7989 return;
7990
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007991 if (!parent)
7992 rt_se->rt_rq = &rq->rt;
7993 else
7994 rt_se->rt_rq = parent->my_q;
7995
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007996 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007997 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007998 INIT_LIST_HEAD(&rt_se->run_list);
7999}
8000#endif
8001
Linus Torvalds1da177e2005-04-16 15:20:36 -07008002void __init sched_init(void)
8003{
Ingo Molnardd41f592007-07-09 18:51:59 +02008004 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008005 unsigned long alloc_size = 0, ptr;
8006
8007#ifdef CONFIG_FAIR_GROUP_SCHED
8008 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8009#endif
8010#ifdef CONFIG_RT_GROUP_SCHED
8011 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8012#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008013#ifdef CONFIG_USER_SCHED
8014 alloc_size *= 2;
8015#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008016 /*
8017 * As sched_init() is called before page_alloc is setup,
8018 * we use alloc_bootmem().
8019 */
8020 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07008021 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07008022
8023#ifdef CONFIG_FAIR_GROUP_SCHED
8024 init_task_group.se = (struct sched_entity **)ptr;
8025 ptr += nr_cpu_ids * sizeof(void **);
8026
8027 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8028 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008029
8030#ifdef CONFIG_USER_SCHED
8031 root_task_group.se = (struct sched_entity **)ptr;
8032 ptr += nr_cpu_ids * sizeof(void **);
8033
8034 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8035 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008036#endif /* CONFIG_USER_SCHED */
8037#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008038#ifdef CONFIG_RT_GROUP_SCHED
8039 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8040 ptr += nr_cpu_ids * sizeof(void **);
8041
8042 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008043 ptr += nr_cpu_ids * sizeof(void **);
8044
8045#ifdef CONFIG_USER_SCHED
8046 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8047 ptr += nr_cpu_ids * sizeof(void **);
8048
8049 root_task_group.rt_rq = (struct rt_rq **)ptr;
8050 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008051#endif /* CONFIG_USER_SCHED */
8052#endif /* CONFIG_RT_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008053 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008054
Gregory Haskins57d885f2008-01-25 21:08:18 +01008055#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008056 init_aggregate();
Gregory Haskins57d885f2008-01-25 21:08:18 +01008057 init_defrootdomain();
8058#endif
8059
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008060 init_rt_bandwidth(&def_rt_bandwidth,
8061 global_rt_period(), global_rt_runtime());
8062
8063#ifdef CONFIG_RT_GROUP_SCHED
8064 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8065 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008066#ifdef CONFIG_USER_SCHED
8067 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8068 global_rt_period(), RUNTIME_INF);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008069#endif /* CONFIG_USER_SCHED */
8070#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008071
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008072#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008073 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008074 INIT_LIST_HEAD(&init_task_group.children);
8075
8076#ifdef CONFIG_USER_SCHED
8077 INIT_LIST_HEAD(&root_task_group.children);
8078 init_task_group.parent = &root_task_group;
8079 list_add(&init_task_group.siblings, &root_task_group.children);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008080#endif /* CONFIG_USER_SCHED */
8081#endif /* CONFIG_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008082
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008083 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008084 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008085
8086 rq = cpu_rq(i);
8087 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07008088 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07008089 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008090 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008091 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008092#ifdef CONFIG_FAIR_GROUP_SCHED
8093 init_task_group.shares = init_task_group_load;
8094 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008095#ifdef CONFIG_CGROUP_SCHED
8096 /*
8097 * How much cpu bandwidth does init_task_group get?
8098 *
8099 * In case of task-groups formed thr' the cgroup filesystem, it
8100 * gets 100% of the cpu resources in the system. This overall
8101 * system cpu resource is divided among the tasks of
8102 * init_task_group and its child task-groups in a fair manner,
8103 * based on each entity's (task or task-group's) weight
8104 * (se->load.weight).
8105 *
8106 * In other words, if init_task_group has 10 tasks of weight
8107 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8108 * then A0's share of the cpu resource is:
8109 *
8110 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
8111 *
8112 * We achieve this by letting init_task_group's tasks sit
8113 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8114 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008115 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008116#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008117 root_task_group.shares = NICE_0_LOAD;
8118 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008119 /*
8120 * In case of task-groups formed thr' the user id of tasks,
8121 * init_task_group represents tasks belonging to root user.
8122 * Hence it forms a sibling of all subsequent groups formed.
8123 * In this case, init_task_group gets only a fraction of overall
8124 * system cpu resource, based on the weight assigned to root
8125 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8126 * by letting tasks of init_task_group sit in a separate cfs_rq
8127 * (init_cfs_rq) and having one entity represent this group of
8128 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
8129 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008130 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008131 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008132 &per_cpu(init_sched_entity, i), i, 1,
8133 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008134
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008135#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008136#endif /* CONFIG_FAIR_GROUP_SCHED */
8137
8138 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008139#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008140 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008141#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008142 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008143#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008144 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008145 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008146 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008147 &per_cpu(init_sched_rt_entity, i), i, 1,
8148 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008149#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008150#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008151
Ingo Molnardd41f592007-07-09 18:51:59 +02008152 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8153 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008155 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008156 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008157 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008158 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008159 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008160 rq->cpu = i;
Gregory Haskins1f11eb62008-06-04 15:04:05 -04008161 rq->online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008162 rq->migration_thread = NULL;
8163 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008164 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008165#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008166 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008167 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008168 }
8169
Peter Williams2dd73a42006-06-27 02:54:34 -07008170 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008171
Avi Kivitye107be32007-07-26 13:40:43 +02008172#ifdef CONFIG_PREEMPT_NOTIFIERS
8173 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8174#endif
8175
Christoph Lameterc9819f42006-12-10 02:20:25 -08008176#ifdef CONFIG_SMP
8177 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
8178#endif
8179
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008180#ifdef CONFIG_RT_MUTEXES
8181 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8182#endif
8183
Linus Torvalds1da177e2005-04-16 15:20:36 -07008184 /*
8185 * The boot idle thread does lazy MMU switching as well:
8186 */
8187 atomic_inc(&init_mm.mm_count);
8188 enter_lazy_tlb(&init_mm, current);
8189
8190 /*
8191 * Make us the idle thread. Technically, schedule() should not be
8192 * called from this thread, however somewhere below it might be,
8193 * but because we are the idle thread, we just pick up running again
8194 * when this runqueue becomes "idle".
8195 */
8196 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008197 /*
8198 * During early bootup we pretend to be a normal task:
8199 */
8200 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008201
8202 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008203}
8204
8205#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8206void __might_sleep(char *file, int line)
8207{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008208#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008209 static unsigned long prev_jiffy; /* ratelimiting */
8210
8211 if ((in_atomic() || irqs_disabled()) &&
8212 system_state == SYSTEM_RUNNING && !oops_in_progress) {
8213 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8214 return;
8215 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08008216 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217 " context at %s:%d\n", file, line);
8218 printk("in_atomic():%d, irqs_disabled():%d\n",
8219 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08008220 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08008221 if (irqs_disabled())
8222 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008223 dump_stack();
8224 }
8225#endif
8226}
8227EXPORT_SYMBOL(__might_sleep);
8228#endif
8229
8230#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008231static void normalize_task(struct rq *rq, struct task_struct *p)
8232{
8233 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008234
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008235 update_rq_clock(rq);
8236 on_rq = p->se.on_rq;
8237 if (on_rq)
8238 deactivate_task(rq, p, 0);
8239 __setscheduler(rq, p, SCHED_NORMAL, 0);
8240 if (on_rq) {
8241 activate_task(rq, p, 0);
8242 resched_task(rq->curr);
8243 }
8244}
8245
Linus Torvalds1da177e2005-04-16 15:20:36 -07008246void normalize_rt_tasks(void)
8247{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008248 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008250 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008252 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008253 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008254 /*
8255 * Only normalize user tasks:
8256 */
8257 if (!p->mm)
8258 continue;
8259
Ingo Molnardd41f592007-07-09 18:51:59 +02008260 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008261#ifdef CONFIG_SCHEDSTATS
8262 p->se.wait_start = 0;
8263 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008264 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008265#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008266
8267 if (!rt_task(p)) {
8268 /*
8269 * Renice negative nice level userspace
8270 * tasks back to 0:
8271 */
8272 if (TASK_NICE(p) < 0 && p->mm)
8273 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008274 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008276
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008277 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008278 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279
Ingo Molnar178be792007-10-15 17:00:18 +02008280 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008281
Ingo Molnarb29739f2006-06-27 02:54:51 -07008282 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008283 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008284 } while_each_thread(g, p);
8285
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008286 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008287}
8288
8289#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008290
8291#ifdef CONFIG_IA64
8292/*
8293 * These functions are only useful for the IA64 MCA handling.
8294 *
8295 * They can only be called when the whole system has been
8296 * stopped - every CPU needs to be quiescent, and no scheduling
8297 * activity can take place. Using them for anything else would
8298 * be a serious bug, and as a result, they aren't even visible
8299 * under any other configuration.
8300 */
8301
8302/**
8303 * curr_task - return the current task for a given cpu.
8304 * @cpu: the processor in question.
8305 *
8306 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8307 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008308struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008309{
8310 return cpu_curr(cpu);
8311}
8312
8313/**
8314 * set_curr_task - set the current task for a given cpu.
8315 * @cpu: the processor in question.
8316 * @p: the task pointer to set.
8317 *
8318 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008319 * are serviced on a separate stack. It allows the architecture to switch the
8320 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008321 * must be called with all CPU's synchronized, and interrupts disabled, the
8322 * and caller must save the original value of the current task (see
8323 * curr_task() above) and restore that value before reenabling interrupts and
8324 * re-starting the system.
8325 *
8326 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8327 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008328void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008329{
8330 cpu_curr(cpu) = p;
8331}
8332
8333#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008334
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008335#ifdef CONFIG_FAIR_GROUP_SCHED
8336static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008337{
8338 int i;
8339
8340 for_each_possible_cpu(i) {
8341 if (tg->cfs_rq)
8342 kfree(tg->cfs_rq[i]);
8343 if (tg->se)
8344 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008345 }
8346
8347 kfree(tg->cfs_rq);
8348 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008349}
8350
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008351static
8352int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008353{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008354 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008355 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008356 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008357 int i;
8358
Mike Travis434d53b2008-04-04 18:11:04 -07008359 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008360 if (!tg->cfs_rq)
8361 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008362 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008363 if (!tg->se)
8364 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008365
8366 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008367
8368 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008369 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008370
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008371 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8372 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008373 if (!cfs_rq)
8374 goto err;
8375
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008376 se = kmalloc_node(sizeof(struct sched_entity),
8377 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008378 if (!se)
8379 goto err;
8380
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008381 parent_se = parent ? parent->se[i] : NULL;
8382 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008383 }
8384
8385 return 1;
8386
8387 err:
8388 return 0;
8389}
8390
8391static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8392{
8393 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8394 &cpu_rq(cpu)->leaf_cfs_rq_list);
8395}
8396
8397static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8398{
8399 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8400}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008401#else /* !CONFG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008402static inline void free_fair_sched_group(struct task_group *tg)
8403{
8404}
8405
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008406static inline
8407int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008408{
8409 return 1;
8410}
8411
8412static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8413{
8414}
8415
8416static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8417{
8418}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008419#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008420
8421#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008422static void free_rt_sched_group(struct task_group *tg)
8423{
8424 int i;
8425
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008426 destroy_rt_bandwidth(&tg->rt_bandwidth);
8427
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008428 for_each_possible_cpu(i) {
8429 if (tg->rt_rq)
8430 kfree(tg->rt_rq[i]);
8431 if (tg->rt_se)
8432 kfree(tg->rt_se[i]);
8433 }
8434
8435 kfree(tg->rt_rq);
8436 kfree(tg->rt_se);
8437}
8438
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008439static
8440int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008441{
8442 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008443 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008444 struct rq *rq;
8445 int i;
8446
Mike Travis434d53b2008-04-04 18:11:04 -07008447 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008448 if (!tg->rt_rq)
8449 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008450 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008451 if (!tg->rt_se)
8452 goto err;
8453
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008454 init_rt_bandwidth(&tg->rt_bandwidth,
8455 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008456
8457 for_each_possible_cpu(i) {
8458 rq = cpu_rq(i);
8459
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008460 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8461 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8462 if (!rt_rq)
8463 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008464
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008465 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8466 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8467 if (!rt_se)
8468 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008469
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008470 parent_se = parent ? parent->rt_se[i] : NULL;
8471 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008472 }
8473
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008474 return 1;
8475
8476 err:
8477 return 0;
8478}
8479
8480static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8481{
8482 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8483 &cpu_rq(cpu)->leaf_rt_rq_list);
8484}
8485
8486static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8487{
8488 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8489}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008490#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008491static inline void free_rt_sched_group(struct task_group *tg)
8492{
8493}
8494
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008495static inline
8496int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008497{
8498 return 1;
8499}
8500
8501static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8502{
8503}
8504
8505static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8506{
8507}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008508#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008509
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008510#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008511static void free_sched_group(struct task_group *tg)
8512{
8513 free_fair_sched_group(tg);
8514 free_rt_sched_group(tg);
8515 kfree(tg);
8516}
8517
8518/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008519struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008520{
8521 struct task_group *tg;
8522 unsigned long flags;
8523 int i;
8524
8525 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8526 if (!tg)
8527 return ERR_PTR(-ENOMEM);
8528
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008529 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008530 goto err;
8531
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008532 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008533 goto err;
8534
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008535 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008536 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008537 register_fair_sched_group(tg, i);
8538 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008539 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008540 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008541
8542 WARN_ON(!parent); /* root should already exist */
8543
8544 tg->parent = parent;
8545 list_add_rcu(&tg->siblings, &parent->children);
8546 INIT_LIST_HEAD(&tg->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008547 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008548
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008549 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008550
8551err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008552 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008553 return ERR_PTR(-ENOMEM);
8554}
8555
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008556/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008557static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008558{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008559 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008560 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008561}
8562
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008563/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008564void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008565{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008566 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008567 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008568
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008569 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008570 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008571 unregister_fair_sched_group(tg, i);
8572 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008573 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008574 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008575 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008576 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008577
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008578 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008579 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008580}
8581
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008582/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008583 * The caller of this function should have put the task in its new group
8584 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8585 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008586 */
8587void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008588{
8589 int on_rq, running;
8590 unsigned long flags;
8591 struct rq *rq;
8592
8593 rq = task_rq_lock(tsk, &flags);
8594
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008595 update_rq_clock(rq);
8596
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008597 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008598 on_rq = tsk->se.on_rq;
8599
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008600 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008601 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008602 if (unlikely(running))
8603 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008604
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008605 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008606
Peter Zijlstra810b3812008-02-29 15:21:01 -05008607#ifdef CONFIG_FAIR_GROUP_SCHED
8608 if (tsk->sched_class->moved_group)
8609 tsk->sched_class->moved_group(tsk);
8610#endif
8611
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008612 if (unlikely(running))
8613 tsk->sched_class->set_curr_task(rq);
8614 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008615 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008616
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008617 task_rq_unlock(rq, &flags);
8618}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008619#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008620
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008621#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008622static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008623{
8624 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008625 int on_rq;
8626
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008627 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008628 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008629 dequeue_entity(cfs_rq, se, 0);
8630
8631 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008632 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008633
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008634 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008635 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008636}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008637
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008638static void set_se_shares(struct sched_entity *se, unsigned long shares)
8639{
8640 struct cfs_rq *cfs_rq = se->cfs_rq;
8641 struct rq *rq = cfs_rq->rq;
8642 unsigned long flags;
8643
8644 spin_lock_irqsave(&rq->lock, flags);
8645 __set_se_shares(se, shares);
8646 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008647}
8648
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008649static DEFINE_MUTEX(shares_mutex);
8650
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008651int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008652{
8653 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008654 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008655
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008656 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008657 * We can't change the weight of the root cgroup.
8658 */
8659 if (!tg->se[0])
8660 return -EINVAL;
8661
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008662 if (shares < MIN_SHARES)
8663 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008664 else if (shares > MAX_SHARES)
8665 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008666
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008667 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008668 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008669 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008670
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008671 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008672 for_each_possible_cpu(i)
8673 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008674 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008675 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008676
8677 /* wait for any ongoing reference to this group to finish */
8678 synchronize_sched();
8679
8680 /*
8681 * Now we are free to modify the group's share on each cpu
8682 * w/o tripping rebalance_share or load_balance_fair.
8683 */
8684 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008685 for_each_possible_cpu(i) {
8686 /*
8687 * force a rebalance
8688 */
8689 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008690 set_se_shares(tg->se[i], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008691 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008692
8693 /*
8694 * Enable load balance activity on this group, by inserting it back on
8695 * each cpu's rq->leaf_cfs_rq_list.
8696 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008697 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008698 for_each_possible_cpu(i)
8699 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008700 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008701 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008702done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008703 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008704 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008705}
8706
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008707unsigned long sched_group_shares(struct task_group *tg)
8708{
8709 return tg->shares;
8710}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008711#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008712
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008713#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008714/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008715 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008716 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008717static DEFINE_MUTEX(rt_constraints_mutex);
8718
8719static unsigned long to_ratio(u64 period, u64 runtime)
8720{
8721 if (runtime == RUNTIME_INF)
8722 return 1ULL << 16;
8723
Roman Zippel6f6d6a12008-05-01 04:34:28 -07008724 return div64_u64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008725}
8726
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008727#ifdef CONFIG_CGROUP_SCHED
8728static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8729{
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008730 struct task_group *tgi, *parent = tg->parent;
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008731 unsigned long total = 0;
8732
8733 if (!parent) {
8734 if (global_rt_period() < period)
8735 return 0;
8736
8737 return to_ratio(period, runtime) <
8738 to_ratio(global_rt_period(), global_rt_runtime());
8739 }
8740
8741 if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period)
8742 return 0;
8743
8744 rcu_read_lock();
8745 list_for_each_entry_rcu(tgi, &parent->children, siblings) {
8746 if (tgi == tg)
8747 continue;
8748
8749 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8750 tgi->rt_bandwidth.rt_runtime);
8751 }
8752 rcu_read_unlock();
8753
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008754 return total + to_ratio(period, runtime) <=
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008755 to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period),
8756 parent->rt_bandwidth.rt_runtime);
8757}
8758#elif defined CONFIG_USER_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008759static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008760{
8761 struct task_group *tgi;
8762 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008763 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008764 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008765
8766 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008767 list_for_each_entry_rcu(tgi, &task_groups, list) {
8768 if (tgi == tg)
8769 continue;
8770
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008771 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8772 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008773 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008774 rcu_read_unlock();
8775
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008776 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008777}
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008778#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008779
Dhaval Giani521f1a242008-02-28 15:21:56 +05308780/* Must be called with tasklist_lock held */
8781static inline int tg_has_rt_tasks(struct task_group *tg)
8782{
8783 struct task_struct *g, *p;
8784 do_each_thread(g, p) {
8785 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8786 return 1;
8787 } while_each_thread(g, p);
8788 return 0;
8789}
8790
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008791static int tg_set_bandwidth(struct task_group *tg,
8792 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008793{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008794 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008795
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008796 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308797 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008798 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308799 err = -EBUSY;
8800 goto unlock;
8801 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008802 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8803 err = -EINVAL;
8804 goto unlock;
8805 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008806
8807 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008808 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8809 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008810
8811 for_each_possible_cpu(i) {
8812 struct rt_rq *rt_rq = tg->rt_rq[i];
8813
8814 spin_lock(&rt_rq->rt_runtime_lock);
8815 rt_rq->rt_runtime = rt_runtime;
8816 spin_unlock(&rt_rq->rt_runtime_lock);
8817 }
8818 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008819 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308820 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008821 mutex_unlock(&rt_constraints_mutex);
8822
8823 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008824}
8825
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008826int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8827{
8828 u64 rt_runtime, rt_period;
8829
8830 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8831 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8832 if (rt_runtime_us < 0)
8833 rt_runtime = RUNTIME_INF;
8834
8835 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8836}
8837
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008838long sched_group_rt_runtime(struct task_group *tg)
8839{
8840 u64 rt_runtime_us;
8841
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008842 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008843 return -1;
8844
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008845 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008846 do_div(rt_runtime_us, NSEC_PER_USEC);
8847 return rt_runtime_us;
8848}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008849
8850int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8851{
8852 u64 rt_runtime, rt_period;
8853
8854 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8855 rt_runtime = tg->rt_bandwidth.rt_runtime;
8856
8857 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8858}
8859
8860long sched_group_rt_period(struct task_group *tg)
8861{
8862 u64 rt_period_us;
8863
8864 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8865 do_div(rt_period_us, NSEC_PER_USEC);
8866 return rt_period_us;
8867}
8868
8869static int sched_rt_global_constraints(void)
8870{
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008871 struct task_group *tg = &root_task_group;
8872 u64 rt_runtime, rt_period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008873 int ret = 0;
8874
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008875 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8876 rt_runtime = tg->rt_bandwidth.rt_runtime;
8877
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008878 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008879 if (!__rt_schedulable(tg, rt_period, rt_runtime))
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008880 ret = -EINVAL;
8881 mutex_unlock(&rt_constraints_mutex);
8882
8883 return ret;
8884}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008885#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008886static int sched_rt_global_constraints(void)
8887{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008888 unsigned long flags;
8889 int i;
8890
8891 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8892 for_each_possible_cpu(i) {
8893 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8894
8895 spin_lock(&rt_rq->rt_runtime_lock);
8896 rt_rq->rt_runtime = global_rt_runtime();
8897 spin_unlock(&rt_rq->rt_runtime_lock);
8898 }
8899 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8900
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008901 return 0;
8902}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008903#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008904
8905int sched_rt_handler(struct ctl_table *table, int write,
8906 struct file *filp, void __user *buffer, size_t *lenp,
8907 loff_t *ppos)
8908{
8909 int ret;
8910 int old_period, old_runtime;
8911 static DEFINE_MUTEX(mutex);
8912
8913 mutex_lock(&mutex);
8914 old_period = sysctl_sched_rt_period;
8915 old_runtime = sysctl_sched_rt_runtime;
8916
8917 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8918
8919 if (!ret && write) {
8920 ret = sched_rt_global_constraints();
8921 if (ret) {
8922 sysctl_sched_rt_period = old_period;
8923 sysctl_sched_rt_runtime = old_runtime;
8924 } else {
8925 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8926 def_rt_bandwidth.rt_period =
8927 ns_to_ktime(global_rt_period());
8928 }
8929 }
8930 mutex_unlock(&mutex);
8931
8932 return ret;
8933}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008934
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008935#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008936
8937/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008938static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008939{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008940 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8941 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008942}
8943
8944static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02008945cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008946{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008947 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008948
Paul Menage2b01dfe2007-10-24 18:23:50 +02008949 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008950 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008951 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008952 return &init_task_group.css;
8953 }
8954
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008955 parent = cgroup_tg(cgrp->parent);
8956 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008957 if (IS_ERR(tg))
8958 return ERR_PTR(-ENOMEM);
8959
8960 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008961 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008962
8963 return &tg->css;
8964}
8965
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008966static void
8967cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008968{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008969 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008970
8971 sched_destroy_group(tg);
8972}
8973
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008974static int
8975cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
8976 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008977{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008978#ifdef CONFIG_RT_GROUP_SCHED
8979 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008980 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008981 return -EINVAL;
8982#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008983 /* We don't support RT-tasks being in separate groups */
8984 if (tsk->sched_class != &fair_sched_class)
8985 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008986#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008987
8988 return 0;
8989}
8990
8991static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02008992cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008993 struct cgroup *old_cont, struct task_struct *tsk)
8994{
8995 sched_move_task(tsk);
8996}
8997
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008998#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07008999static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009000 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009001{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009002 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009003}
9004
Paul Menagef4c753b2008-04-29 00:59:56 -07009005static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009006{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009007 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009008
9009 return (u64) tg->shares;
9010}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009011#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009012
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009013#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07009014static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009015 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009016{
Paul Menage06ecb272008-04-29 01:00:06 -07009017 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009018}
9019
Paul Menage06ecb272008-04-29 01:00:06 -07009020static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009021{
Paul Menage06ecb272008-04-29 01:00:06 -07009022 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009023}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009024
9025static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9026 u64 rt_period_us)
9027{
9028 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9029}
9030
9031static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9032{
9033 return sched_group_rt_period(cgroup_tg(cgrp));
9034}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009035#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009036
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009037static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009038#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009039 {
9040 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009041 .read_u64 = cpu_shares_read_u64,
9042 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009043 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009044#endif
9045#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009046 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009047 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009048 .read_s64 = cpu_rt_runtime_read,
9049 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009050 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009051 {
9052 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009053 .read_u64 = cpu_rt_period_read_uint,
9054 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009055 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009056#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009057};
9058
9059static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9060{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009061 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009062}
9063
9064struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009065 .name = "cpu",
9066 .create = cpu_cgroup_create,
9067 .destroy = cpu_cgroup_destroy,
9068 .can_attach = cpu_cgroup_can_attach,
9069 .attach = cpu_cgroup_attach,
9070 .populate = cpu_cgroup_populate,
9071 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009072 .early_init = 1,
9073};
9074
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009075#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009076
9077#ifdef CONFIG_CGROUP_CPUACCT
9078
9079/*
9080 * CPU accounting code for task groups.
9081 *
9082 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9083 * (balbir@in.ibm.com).
9084 */
9085
9086/* track cpu usage of a group of tasks */
9087struct cpuacct {
9088 struct cgroup_subsys_state css;
9089 /* cpuusage holds pointer to a u64-type object on every cpu */
9090 u64 *cpuusage;
9091};
9092
9093struct cgroup_subsys cpuacct_subsys;
9094
9095/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309096static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009097{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309098 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009099 struct cpuacct, css);
9100}
9101
9102/* return cpu accounting group to which this task belongs */
9103static inline struct cpuacct *task_ca(struct task_struct *tsk)
9104{
9105 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9106 struct cpuacct, css);
9107}
9108
9109/* create a new cpu accounting group */
9110static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309111 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009112{
9113 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9114
9115 if (!ca)
9116 return ERR_PTR(-ENOMEM);
9117
9118 ca->cpuusage = alloc_percpu(u64);
9119 if (!ca->cpuusage) {
9120 kfree(ca);
9121 return ERR_PTR(-ENOMEM);
9122 }
9123
9124 return &ca->css;
9125}
9126
9127/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009128static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309129cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009130{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309131 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009132
9133 free_percpu(ca->cpuusage);
9134 kfree(ca);
9135}
9136
9137/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309138static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009139{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309140 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009141 u64 totalcpuusage = 0;
9142 int i;
9143
9144 for_each_possible_cpu(i) {
9145 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9146
9147 /*
9148 * Take rq->lock to make 64-bit addition safe on 32-bit
9149 * platforms.
9150 */
9151 spin_lock_irq(&cpu_rq(i)->lock);
9152 totalcpuusage += *cpuusage;
9153 spin_unlock_irq(&cpu_rq(i)->lock);
9154 }
9155
9156 return totalcpuusage;
9157}
9158
Dhaval Giani0297b802008-02-29 10:02:44 +05309159static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9160 u64 reset)
9161{
9162 struct cpuacct *ca = cgroup_ca(cgrp);
9163 int err = 0;
9164 int i;
9165
9166 if (reset) {
9167 err = -EINVAL;
9168 goto out;
9169 }
9170
9171 for_each_possible_cpu(i) {
9172 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9173
9174 spin_lock_irq(&cpu_rq(i)->lock);
9175 *cpuusage = 0;
9176 spin_unlock_irq(&cpu_rq(i)->lock);
9177 }
9178out:
9179 return err;
9180}
9181
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009182static struct cftype files[] = {
9183 {
9184 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009185 .read_u64 = cpuusage_read,
9186 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009187 },
9188};
9189
Dhaval Giani32cd7562008-02-29 10:02:43 +05309190static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009191{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309192 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009193}
9194
9195/*
9196 * charge this task's execution time to its accounting group.
9197 *
9198 * called with rq->lock held.
9199 */
9200static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9201{
9202 struct cpuacct *ca;
9203
9204 if (!cpuacct_subsys.active)
9205 return;
9206
9207 ca = task_ca(tsk);
9208 if (ca) {
9209 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
9210
9211 *cpuusage += cputime;
9212 }
9213}
9214
9215struct cgroup_subsys cpuacct_subsys = {
9216 .name = "cpuacct",
9217 .create = cpuacct_create,
9218 .destroy = cpuacct_destroy,
9219 .populate = cpuacct_populate,
9220 .subsys_id = cpuacct_subsys_id,
9221};
9222#endif /* CONFIG_CGROUP_CPUACCT */