blob: 7d282c52bd42289c0274ee0c03a333ea6361068b [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 Molnar62160e32007-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 Haskins1f11eb6a2008-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 *
1483aggregate(struct task_group *tg, struct sched_domain *sd)
1484{
1485 return &tg->cfs_rq[sd->first_cpu]->aggregate;
1486}
1487
1488typedef void (*aggregate_func)(struct task_group *, struct sched_domain *);
1489
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,
1496 struct sched_domain *sd)
1497{
1498 struct task_group *parent, *child;
1499
1500 rcu_read_lock();
1501 parent = &root_task_group;
1502down:
1503 (*down)(parent, sd);
1504 list_for_each_entry_rcu(child, &parent->children, siblings) {
1505 parent = child;
1506 goto down;
1507
1508up:
1509 continue;
1510 }
1511 (*up)(parent, sd);
1512
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 */
1523static
1524void aggregate_group_weight(struct task_group *tg, struct sched_domain *sd)
1525{
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
1535 aggregate(tg, sd)->rq_weight = rq_weight;
1536 aggregate(tg, sd)->task_weight = task_weight;
1537}
1538
1539/*
1540 * Compute the weight of this group on the given cpus.
1541 */
1542static
1543void aggregate_group_shares(struct task_group *tg, struct sched_domain *sd)
1544{
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
1551 if ((!shares && aggregate(tg, sd)->rq_weight) || shares > tg->shares)
1552 shares = tg->shares;
1553
1554 aggregate(tg, sd)->shares = shares;
1555}
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 */
1561static
1562void aggregate_group_load(struct task_group *tg, struct sched_domain *sd)
1563{
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 {
1574 load = aggregate(tg->parent, sd)->load;
1575
1576 /*
1577 * shares is our weight in the parent's rq so
1578 * shares/parent->rq_weight gives our fraction of the load
1579 */
1580 load *= aggregate(tg, sd)->shares;
1581 load /= aggregate(tg->parent, sd)->rq_weight + 1;
1582 }
1583
1584 aggregate(tg, sd)->load = load;
1585}
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
1593__update_group_shares_cpu(struct task_group *tg, struct sched_domain *sd,
1594 int tcpu)
1595{
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 */
1621 shares = aggregate(tg, sd)->shares * rq_weight;
1622 shares /= aggregate(tg, sd)->rq_weight + 1;
1623
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
1642__move_group_shares(struct task_group *tg, struct sched_domain *sd,
1643 int scpu, int dcpu)
1644{
1645 unsigned long shares;
1646
1647 shares = tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1648
1649 __update_group_shares_cpu(tg, sd, scpu);
1650 __update_group_shares_cpu(tg, sd, dcpu);
1651
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
1666move_group_shares(struct task_group *tg, struct sched_domain *sd,
1667 int scpu, int dcpu)
1668{
1669 while (tg) {
1670 __move_group_shares(tg, sd, scpu, dcpu);
1671 tg = tg->parent;
1672 }
1673}
1674
1675static
1676void aggregate_group_set_shares(struct task_group *tg, struct sched_domain *sd)
1677{
1678 unsigned long shares = aggregate(tg, sd)->shares;
1679 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);
1686 __update_group_shares_cpu(tg, sd, i);
1687 spin_unlock_irqrestore(&rq->lock, flags);
1688 }
1689
1690 aggregate_group_shares(tg, sd);
1691
1692 /*
1693 * ensure we never loose shares due to rounding errors in the
1694 * above redistribution.
1695 */
1696 shares -= aggregate(tg, sd)->shares;
1697 if (shares) {
1698 tg->cfs_rq[sd->first_cpu]->shares += shares;
1699 aggregate(tg, sd)->shares += shares;
1700 }
1701}
1702
1703/*
1704 * Calculate the accumulative weight and recursive load of each task group
1705 * while walking down the tree.
1706 */
1707static
1708void aggregate_get_down(struct task_group *tg, struct sched_domain *sd)
1709{
1710 aggregate_group_weight(tg, sd);
1711 aggregate_group_shares(tg, sd);
1712 aggregate_group_load(tg, sd);
1713}
1714
1715/*
1716 * Rebalance the cpu shares while walking back up the tree.
1717 */
1718static
1719void aggregate_get_up(struct task_group *tg, struct sched_domain *sd)
1720{
1721 aggregate_group_set_shares(tg, sd);
1722}
1723
1724static DEFINE_PER_CPU(spinlock_t, aggregate_lock);
1725
1726static void __init init_aggregate(void)
1727{
1728 int i;
1729
1730 for_each_possible_cpu(i)
1731 spin_lock_init(&per_cpu(aggregate_lock, i));
1732}
1733
1734static int get_aggregate(struct sched_domain *sd)
1735{
1736 if (!spin_trylock(&per_cpu(aggregate_lock, sd->first_cpu)))
1737 return 0;
1738
1739 aggregate_walk_tree(aggregate_get_down, aggregate_get_up, sd);
1740 return 1;
1741}
1742
1743static void put_aggregate(struct sched_domain *sd)
1744{
1745 spin_unlock(&per_cpu(aggregate_lock, sd->first_cpu));
1746}
1747
1748static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1749{
1750 cfs_rq->shares = shares;
1751}
1752
1753#else
1754
1755static inline void init_aggregate(void)
1756{
1757}
1758
1759static inline int get_aggregate(struct sched_domain *sd)
1760{
1761 return 0;
1762}
1763
1764static inline void put_aggregate(struct sched_domain *sd)
1765{
1766}
1767#endif
1768
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001769#endif
1770
Ingo Molnardd41f592007-07-09 18:51:59 +02001771#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001772#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001773#include "sched_fair.c"
1774#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001775#ifdef CONFIG_SCHED_DEBUG
1776# include "sched_debug.c"
1777#endif
1778
1779#define sched_class_highest (&rt_sched_class)
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04001780#define for_each_class(class) \
1781 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001782
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001783static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001784{
1785 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001786}
1787
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001788static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001789{
1790 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001791}
1792
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001793static void set_load_weight(struct task_struct *p)
1794{
1795 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001796 p->se.load.weight = prio_to_weight[0] * 2;
1797 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1798 return;
1799 }
1800
1801 /*
1802 * SCHED_IDLE tasks get minimal weight:
1803 */
1804 if (p->policy == SCHED_IDLE) {
1805 p->se.load.weight = WEIGHT_IDLEPRIO;
1806 p->se.load.inv_weight = WMULT_IDLEPRIO;
1807 return;
1808 }
1809
1810 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1811 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001812}
1813
Ingo Molnar8159f872007-08-09 11:16:49 +02001814static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001815{
1816 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001817 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001818 p->se.on_rq = 1;
1819}
1820
Ingo Molnar69be72c2007-08-09 11:16:49 +02001821static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001822{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001823 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001824 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001825}
1826
1827/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001828 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001829 */
Ingo Molnar14531182007-07-09 18:51:59 +02001830static inline int __normal_prio(struct task_struct *p)
1831{
Ingo Molnardd41f592007-07-09 18:51:59 +02001832 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001833}
1834
1835/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001836 * Calculate the expected normal priority: i.e. priority
1837 * without taking RT-inheritance into account. Might be
1838 * boosted by interactivity modifiers. Changes upon fork,
1839 * setprio syscalls, and whenever the interactivity
1840 * estimator recalculates.
1841 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001842static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001843{
1844 int prio;
1845
Ingo Molnare05606d2007-07-09 18:51:59 +02001846 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001847 prio = MAX_RT_PRIO-1 - p->rt_priority;
1848 else
1849 prio = __normal_prio(p);
1850 return prio;
1851}
1852
1853/*
1854 * Calculate the current priority, i.e. the priority
1855 * taken into account by the scheduler. This value might
1856 * be boosted by RT tasks, or might be boosted by
1857 * interactivity modifiers. Will be RT if the task got
1858 * RT-boosted. If not then it returns p->normal_prio.
1859 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001860static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001861{
1862 p->normal_prio = normal_prio(p);
1863 /*
1864 * If we are RT tasks or we were boosted to RT priority,
1865 * keep the priority unchanged. Otherwise, update priority
1866 * to the normal priority:
1867 */
1868 if (!rt_prio(p->prio))
1869 return p->normal_prio;
1870 return p->prio;
1871}
1872
1873/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001874 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001876static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001878 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001879 rq->nr_uninterruptible--;
1880
Ingo Molnar8159f872007-08-09 11:16:49 +02001881 enqueue_task(rq, p, wakeup);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001882 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
1885/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 * deactivate_task - remove a task from the runqueue.
1887 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001888static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001890 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001891 rq->nr_uninterruptible++;
1892
Ingo Molnar69be72c2007-08-09 11:16:49 +02001893 dequeue_task(rq, p, sleep);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001894 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895}
1896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897/**
1898 * task_curr - is this task currently executing on a CPU?
1899 * @p: the task in question.
1900 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001901inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902{
1903 return cpu_curr(task_cpu(p)) == p;
1904}
1905
Ingo Molnardd41f592007-07-09 18:51:59 +02001906static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1907{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001908 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001909#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001910 /*
1911 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1912 * successfuly executed on another CPU. We must ensure that updates of
1913 * per-task data have been completed by this moment.
1914 */
1915 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001916 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001917#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001918}
1919
Steven Rostedtcb469842008-01-25 21:08:22 +01001920static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1921 const struct sched_class *prev_class,
1922 int oldprio, int running)
1923{
1924 if (prev_class != p->sched_class) {
1925 if (prev_class->switched_from)
1926 prev_class->switched_from(rq, p, running);
1927 p->sched_class->switched_to(rq, p, running);
1928 } else
1929 p->sched_class->prio_changed(rq, p, oldprio, running);
1930}
1931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001933
Thomas Gleixnere958b362008-06-04 23:22:32 +02001934/* Used instead of source_load when we know the type == 0 */
1935static unsigned long weighted_cpuload(const int cpu)
1936{
1937 return cpu_rq(cpu)->load.weight;
1938}
1939
Ingo Molnarcc367732007-10-15 17:00:18 +02001940/*
1941 * Is this task likely cache-hot:
1942 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001943static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001944task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1945{
1946 s64 delta;
1947
Ingo Molnarf540a602008-03-15 17:10:34 +01001948 /*
1949 * Buddy candidates are cache hot:
1950 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01001951 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01001952 return 1;
1953
Ingo Molnarcc367732007-10-15 17:00:18 +02001954 if (p->sched_class != &fair_sched_class)
1955 return 0;
1956
Ingo Molnar6bc16652007-10-15 17:00:18 +02001957 if (sysctl_sched_migration_cost == -1)
1958 return 1;
1959 if (sysctl_sched_migration_cost == 0)
1960 return 0;
1961
Ingo Molnarcc367732007-10-15 17:00:18 +02001962 delta = now - p->se.exec_start;
1963
1964 return delta < (s64)sysctl_sched_migration_cost;
1965}
1966
1967
Ingo Molnardd41f592007-07-09 18:51:59 +02001968void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001969{
Ingo Molnardd41f592007-07-09 18:51:59 +02001970 int old_cpu = task_cpu(p);
1971 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001972 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1973 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001974 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001975
1976 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001977
1978#ifdef CONFIG_SCHEDSTATS
1979 if (p->se.wait_start)
1980 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001981 if (p->se.sleep_start)
1982 p->se.sleep_start -= clock_offset;
1983 if (p->se.block_start)
1984 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001985 if (old_cpu != new_cpu) {
1986 schedstat_inc(p, se.nr_migrations);
1987 if (task_hot(p, old_rq->clock, NULL))
1988 schedstat_inc(p, se.nr_forced2_migrations);
1989 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001990#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001991 p->se.vruntime -= old_cfsrq->min_vruntime -
1992 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001993
1994 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001995}
1996
Ingo Molnar70b97a72006-07-03 00:25:42 -07001997struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Ingo Molnar36c8b582006-07-03 00:25:41 -07002000 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 int dest_cpu;
2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002004};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006/*
2007 * The task's runqueue lock must be held.
2008 * Returns true if you have to wait for migration thread.
2009 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002010static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002011migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002013 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015 /*
2016 * If the task is not on a runqueue (and not running), then
2017 * it is sufficient to simply update the task's cpu field.
2018 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002019 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 set_task_cpu(p, dest_cpu);
2021 return 0;
2022 }
2023
2024 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 req->task = p;
2026 req->dest_cpu = dest_cpu;
2027 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 return 1;
2030}
2031
2032/*
2033 * wait_task_inactive - wait for a thread to unschedule.
2034 *
2035 * The caller must ensure that the task *will* unschedule sometime soon,
2036 * else this function might spin for a *long* time. This function can't
2037 * be called with interrupts off, or it may introduce deadlock with
2038 * smp_call_function() if an IPI is sent by the same process we are
2039 * waiting to become inactive.
2040 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002041void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
2043 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002044 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002045 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Andi Kleen3a5c3592007-10-15 17:00:14 +02002047 for (;;) {
2048 /*
2049 * We do the initial early heuristics without holding
2050 * any task-queue locks at all. We'll only try to get
2051 * the runqueue lock when things look like they will
2052 * work out!
2053 */
2054 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002055
Andi Kleen3a5c3592007-10-15 17:00:14 +02002056 /*
2057 * If the task is actively running on another CPU
2058 * still, just relax and busy-wait without holding
2059 * any locks.
2060 *
2061 * NOTE! Since we don't hold any locks, it's not
2062 * even sure that "rq" stays as the right runqueue!
2063 * But we don't care, since "task_running()" will
2064 * return false if the runqueue has changed and p
2065 * is actually now running somewhere else!
2066 */
2067 while (task_running(rq, p))
2068 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002069
Andi Kleen3a5c3592007-10-15 17:00:14 +02002070 /*
2071 * Ok, time to look more closely! We need the rq
2072 * lock now, to be *sure*. If we're wrong, we'll
2073 * just go back and repeat.
2074 */
2075 rq = task_rq_lock(p, &flags);
2076 running = task_running(rq, p);
2077 on_rq = p->se.on_rq;
2078 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002079
Andi Kleen3a5c3592007-10-15 17:00:14 +02002080 /*
2081 * Was it really running after all now that we
2082 * checked with the proper locks actually held?
2083 *
2084 * Oops. Go back and try again..
2085 */
2086 if (unlikely(running)) {
2087 cpu_relax();
2088 continue;
2089 }
2090
2091 /*
2092 * It's not enough that it's not actively running,
2093 * it must be off the runqueue _entirely_, and not
2094 * preempted!
2095 *
2096 * So if it wa still runnable (but just not actively
2097 * running right now), it's preempted, and we should
2098 * yield - it could be a while.
2099 */
2100 if (unlikely(on_rq)) {
2101 schedule_timeout_uninterruptible(1);
2102 continue;
2103 }
2104
2105 /*
2106 * Ahh, all good. It wasn't running, and it wasn't
2107 * runnable, which means that it will never become
2108 * running in the future either. We're all done!
2109 */
2110 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112}
2113
2114/***
2115 * kick_process - kick a running thread to enter/exit the kernel
2116 * @p: the to-be-kicked thread
2117 *
2118 * Cause a process which is running on another CPU to enter
2119 * kernel-mode, without any delay. (to get signals handled.)
2120 *
2121 * NOTE: this function doesnt have to take the runqueue lock,
2122 * because all it wants to ensure is that the remote task enters
2123 * the kernel. If the IPI races and the task has been migrated
2124 * to another CPU then no harm is done and the purpose has been
2125 * achieved as well.
2126 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002127void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
2129 int cpu;
2130
2131 preempt_disable();
2132 cpu = task_cpu(p);
2133 if ((cpu != smp_processor_id()) && task_curr(p))
2134 smp_send_reschedule(cpu);
2135 preempt_enable();
2136}
2137
2138/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002139 * Return a low guess at the load of a migration-source cpu weighted
2140 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 *
2142 * We want to under-estimate the load of migration sources, to
2143 * balance conservatively.
2144 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002145static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002146{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002147 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002148 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002149
Peter Williams2dd73a42006-06-27 02:54:34 -07002150 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002151 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002152
Ingo Molnardd41f592007-07-09 18:51:59 +02002153 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154}
2155
2156/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002157 * Return a high guess at the load of a migration-target cpu weighted
2158 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002160static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002161{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002162 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002163 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002164
Peter Williams2dd73a42006-06-27 02:54:34 -07002165 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002166 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002167
Ingo Molnardd41f592007-07-09 18:51:59 +02002168 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002169}
2170
2171/*
2172 * Return the average load per task on the cpu's run queue
2173 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002174static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07002175{
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);
Peter Williams2dd73a42006-06-27 02:54:34 -07002178 unsigned long n = rq->nr_running;
2179
Ingo Molnardd41f592007-07-09 18:51:59 +02002180 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
2182
Nick Piggin147cbb42005-06-25 14:57:19 -07002183/*
2184 * find_idlest_group finds and returns the least busy CPU group within the
2185 * domain.
2186 */
2187static struct sched_group *
2188find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2189{
2190 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2191 unsigned long min_load = ULONG_MAX, this_load = 0;
2192 int load_idx = sd->forkexec_idx;
2193 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2194
2195 do {
2196 unsigned long load, avg_load;
2197 int local_group;
2198 int i;
2199
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002200 /* Skip over this group if it has no CPUs allowed */
2201 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002202 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002203
Nick Piggin147cbb42005-06-25 14:57:19 -07002204 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07002205
2206 /* Tally up the load of all CPUs in the group */
2207 avg_load = 0;
2208
2209 for_each_cpu_mask(i, group->cpumask) {
2210 /* Bias balancing toward cpus of our domain */
2211 if (local_group)
2212 load = source_load(i, load_idx);
2213 else
2214 load = target_load(i, load_idx);
2215
2216 avg_load += load;
2217 }
2218
2219 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002220 avg_load = sg_div_cpu_power(group,
2221 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002222
2223 if (local_group) {
2224 this_load = avg_load;
2225 this = group;
2226 } else if (avg_load < min_load) {
2227 min_load = avg_load;
2228 idlest = group;
2229 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002230 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002231
2232 if (!idlest || 100*this_load < imbalance*min_load)
2233 return NULL;
2234 return idlest;
2235}
2236
2237/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002238 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002239 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002240static int
Mike Travis7c16ec52008-04-04 18:11:11 -07002241find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
2242 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07002243{
2244 unsigned long load, min_load = ULONG_MAX;
2245 int idlest = -1;
2246 int i;
2247
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002248 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07002249 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002250
Mike Travis7c16ec52008-04-04 18:11:11 -07002251 for_each_cpu_mask(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002252 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002253
2254 if (load < min_load || (load == min_load && i == this_cpu)) {
2255 min_load = load;
2256 idlest = i;
2257 }
2258 }
2259
2260 return idlest;
2261}
2262
Nick Piggin476d1392005-06-25 14:57:29 -07002263/*
2264 * sched_balance_self: balance the current task (running on cpu) in domains
2265 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2266 * SD_BALANCE_EXEC.
2267 *
2268 * Balance, ie. select the least loaded group.
2269 *
2270 * Returns the target CPU number, or the same CPU if no balancing is needed.
2271 *
2272 * preempt must be disabled.
2273 */
2274static int sched_balance_self(int cpu, int flag)
2275{
2276 struct task_struct *t = current;
2277 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002278
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002279 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002280 /*
2281 * If power savings logic is enabled for a domain, stop there.
2282 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002283 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2284 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002285 if (tmp->flags & flag)
2286 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002287 }
Nick Piggin476d1392005-06-25 14:57:29 -07002288
2289 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07002290 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07002291 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002292 int new_cpu, weight;
2293
2294 if (!(sd->flags & flag)) {
2295 sd = sd->child;
2296 continue;
2297 }
Nick Piggin476d1392005-06-25 14:57:29 -07002298
2299 span = sd->span;
2300 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002301 if (!group) {
2302 sd = sd->child;
2303 continue;
2304 }
Nick Piggin476d1392005-06-25 14:57:29 -07002305
Mike Travis7c16ec52008-04-04 18:11:11 -07002306 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002307 if (new_cpu == -1 || new_cpu == cpu) {
2308 /* Now try balancing at a lower domain level of cpu */
2309 sd = sd->child;
2310 continue;
2311 }
Nick Piggin476d1392005-06-25 14:57:29 -07002312
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002313 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002314 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07002315 sd = NULL;
2316 weight = cpus_weight(span);
2317 for_each_domain(cpu, tmp) {
2318 if (weight <= cpus_weight(tmp->span))
2319 break;
2320 if (tmp->flags & flag)
2321 sd = tmp;
2322 }
2323 /* while loop will break here if sd == NULL */
2324 }
2325
2326 return cpu;
2327}
2328
2329#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331/***
2332 * try_to_wake_up - wake up a thread
2333 * @p: the to-be-woken-up thread
2334 * @state: the mask of task states that can be woken
2335 * @sync: do a synchronous wakeup?
2336 *
2337 * Put it on the run-queue if it's not already there. The "current"
2338 * thread is always on the run-queue (except when the actual
2339 * re-schedule is in progress), and as such you're allowed to do
2340 * the simpler "current->state = TASK_RUNNING" to mark yourself
2341 * runnable without the overhead of this.
2342 *
2343 * returns failure only if the task is already active.
2344 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002345static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
Ingo Molnarcc367732007-10-15 17:00:18 +02002347 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 unsigned long flags;
2349 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002350 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Ingo Molnarb85d0662008-03-16 20:03:22 +01002352 if (!sched_feat(SYNC_WAKEUPS))
2353 sync = 0;
2354
Linus Torvalds04e2f172008-02-23 18:05:03 -08002355 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 rq = task_rq_lock(p, &flags);
2357 old_state = p->state;
2358 if (!(old_state & state))
2359 goto out;
2360
Ingo Molnardd41f592007-07-09 18:51:59 +02002361 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 goto out_running;
2363
2364 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002365 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 this_cpu = smp_processor_id();
2367
2368#ifdef CONFIG_SMP
2369 if (unlikely(task_running(rq, p)))
2370 goto out_activate;
2371
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002372 cpu = p->sched_class->select_task_rq(p, sync);
2373 if (cpu != orig_cpu) {
2374 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 task_rq_unlock(rq, &flags);
2376 /* might preempt at this point */
2377 rq = task_rq_lock(p, &flags);
2378 old_state = p->state;
2379 if (!(old_state & state))
2380 goto out;
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 this_cpu = smp_processor_id();
2385 cpu = task_cpu(p);
2386 }
2387
Gregory Haskinse7693a32008-01-25 21:08:09 +01002388#ifdef CONFIG_SCHEDSTATS
2389 schedstat_inc(rq, ttwu_count);
2390 if (cpu == this_cpu)
2391 schedstat_inc(rq, ttwu_local);
2392 else {
2393 struct sched_domain *sd;
2394 for_each_domain(this_cpu, sd) {
2395 if (cpu_isset(cpu, sd->span)) {
2396 schedstat_inc(sd, ttwu_wake_remote);
2397 break;
2398 }
2399 }
2400 }
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002401#endif /* CONFIG_SCHEDSTATS */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403out_activate:
2404#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002405 schedstat_inc(p, se.nr_wakeups);
2406 if (sync)
2407 schedstat_inc(p, se.nr_wakeups_sync);
2408 if (orig_cpu != cpu)
2409 schedstat_inc(p, se.nr_wakeups_migrate);
2410 if (cpu == this_cpu)
2411 schedstat_inc(p, se.nr_wakeups_local);
2412 else
2413 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002414 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002415 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 success = 1;
2417
2418out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002419 check_preempt_curr(rq, p);
2420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002422#ifdef CONFIG_SMP
2423 if (p->sched_class->task_wake_up)
2424 p->sched_class->task_wake_up(rq, p);
2425#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426out:
2427 task_rq_unlock(rq, &flags);
2428
2429 return success;
2430}
2431
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002432int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002434 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436EXPORT_SYMBOL(wake_up_process);
2437
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002438int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{
2440 return try_to_wake_up(p, state, 0);
2441}
2442
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443/*
2444 * Perform scheduler related setup for a newly forked process p.
2445 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002446 *
2447 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002449static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
Ingo Molnardd41f592007-07-09 18:51:59 +02002451 p->se.exec_start = 0;
2452 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002453 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002454 p->se.last_wakeup = 0;
2455 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002456
2457#ifdef CONFIG_SCHEDSTATS
2458 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002459 p->se.sum_sleep_runtime = 0;
2460 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002461 p->se.block_start = 0;
2462 p->se.sleep_max = 0;
2463 p->se.block_max = 0;
2464 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002465 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002466 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002467#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002468
Peter Zijlstrafa717062008-01-25 21:08:27 +01002469 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002470 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002471 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002472
Avi Kivitye107be32007-07-26 13:40:43 +02002473#ifdef CONFIG_PREEMPT_NOTIFIERS
2474 INIT_HLIST_HEAD(&p->preempt_notifiers);
2475#endif
2476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 /*
2478 * We mark the process as running here, but have not actually
2479 * inserted it onto the runqueue yet. This guarantees that
2480 * nobody will actually run it, and a signal or other external
2481 * event cannot wake it up and insert it on the runqueue either.
2482 */
2483 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002484}
2485
2486/*
2487 * fork()/clone()-time setup:
2488 */
2489void sched_fork(struct task_struct *p, int clone_flags)
2490{
2491 int cpu = get_cpu();
2492
2493 __sched_fork(p);
2494
2495#ifdef CONFIG_SMP
2496 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2497#endif
Ingo Molnar02e4bac22007-10-15 17:00:11 +02002498 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002499
2500 /*
2501 * Make sure we do not leak PI boosting priority to the child:
2502 */
2503 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002504 if (!rt_prio(p->prio))
2505 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002506
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002507#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002508 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002509 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002511#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002512 p->oncpu = 0;
2513#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002515 /* Want to start with kernel preemption disabled. */
Al Viroa1261f542005-11-13 16:06:55 -08002516 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002518 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519}
2520
2521/*
2522 * wake_up_new_task - wake up a newly created task for the first time.
2523 *
2524 * This function will do some initial scheduler statistics housekeeping
2525 * that must be done for every newly created context, then puts the task
2526 * on the runqueue and wakes it.
2527 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002528void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529{
2530 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002531 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002535 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 p->prio = effective_prio(p);
2538
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002539 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002540 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002543 * Let the scheduling class do new task startup
2544 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002546 p->sched_class->task_new(rq, p);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02002547 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002549 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002550#ifdef CONFIG_SMP
2551 if (p->sched_class->task_wake_up)
2552 p->sched_class->task_wake_up(rq, p);
2553#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002554 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555}
2556
Avi Kivitye107be32007-07-26 13:40:43 +02002557#ifdef CONFIG_PREEMPT_NOTIFIERS
2558
2559/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002560 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2561 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002562 */
2563void preempt_notifier_register(struct preempt_notifier *notifier)
2564{
2565 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2566}
2567EXPORT_SYMBOL_GPL(preempt_notifier_register);
2568
2569/**
2570 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002571 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002572 *
2573 * This is safe to call from within a preemption notifier.
2574 */
2575void preempt_notifier_unregister(struct preempt_notifier *notifier)
2576{
2577 hlist_del(&notifier->link);
2578}
2579EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2580
2581static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2582{
2583 struct preempt_notifier *notifier;
2584 struct hlist_node *node;
2585
2586 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2587 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2588}
2589
2590static void
2591fire_sched_out_preempt_notifiers(struct task_struct *curr,
2592 struct task_struct *next)
2593{
2594 struct preempt_notifier *notifier;
2595 struct hlist_node *node;
2596
2597 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2598 notifier->ops->sched_out(notifier, next);
2599}
2600
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002601#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002602
2603static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2604{
2605}
2606
2607static void
2608fire_sched_out_preempt_notifiers(struct task_struct *curr,
2609 struct task_struct *next)
2610{
2611}
2612
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002613#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002616 * prepare_task_switch - prepare to switch tasks
2617 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002618 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002619 * @next: the task we are going to switch to.
2620 *
2621 * This is called with the rq lock held and interrupts off. It must
2622 * be paired with a subsequent finish_task_switch after the context
2623 * switch.
2624 *
2625 * prepare_task_switch sets up locking and calls architecture specific
2626 * hooks.
2627 */
Avi Kivitye107be32007-07-26 13:40:43 +02002628static inline void
2629prepare_task_switch(struct rq *rq, struct task_struct *prev,
2630 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002631{
Avi Kivitye107be32007-07-26 13:40:43 +02002632 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002633 prepare_lock_switch(rq, next);
2634 prepare_arch_switch(next);
2635}
2636
2637/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002639 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 * @prev: the thread we just switched away from.
2641 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002642 * finish_task_switch must be called after the context switch, paired
2643 * with a prepare_task_switch call before the context switch.
2644 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2645 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 *
2647 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002648 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 * with the lock held can cause deadlocks; see schedule() for
2650 * details.)
2651 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002652static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 __releases(rq->lock)
2654{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002656 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
2658 rq->prev_mm = NULL;
2659
2660 /*
2661 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002662 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002663 * schedule one last time. The schedule call will never return, and
2664 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002665 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 * still held, otherwise prev could be scheduled on another cpu, die
2667 * there before we look at prev->state, and then the reference would
2668 * be dropped twice.
2669 * Manfred Spraul <manfred@colorfullife.com>
2670 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002671 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002672 finish_arch_switch(prev);
2673 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002674#ifdef CONFIG_SMP
2675 if (current->sched_class->post_schedule)
2676 current->sched_class->post_schedule(rq);
2677#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002678
Avi Kivitye107be32007-07-26 13:40:43 +02002679 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 if (mm)
2681 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002682 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002683 /*
2684 * Remove function-return probe instances associated with this
2685 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002686 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002687 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690}
2691
2692/**
2693 * schedule_tail - first thing a freshly forked thread must call.
2694 * @prev: the thread we just switched away from.
2695 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002696asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 __releases(rq->lock)
2698{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002699 struct rq *rq = this_rq();
2700
Nick Piggin4866cde2005-06-25 14:57:23 -07002701 finish_task_switch(rq, prev);
2702#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2703 /* In this case, finish_task_switch does not reenable preemption */
2704 preempt_enable();
2705#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002707 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708}
2709
2710/*
2711 * context_switch - switch to the new MM and the new
2712 * thread's register state.
2713 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002714static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002715context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002716 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717{
Ingo Molnardd41f592007-07-09 18:51:59 +02002718 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Avi Kivitye107be32007-07-26 13:40:43 +02002720 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002721 mm = next->mm;
2722 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002723 /*
2724 * For paravirt, this is coupled with an exit in switch_to to
2725 * combine the page table reload and the switch backend into
2726 * one hypercall.
2727 */
2728 arch_enter_lazy_cpu_mode();
2729
Ingo Molnardd41f592007-07-09 18:51:59 +02002730 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 next->active_mm = oldmm;
2732 atomic_inc(&oldmm->mm_count);
2733 enter_lazy_tlb(oldmm, next);
2734 } else
2735 switch_mm(oldmm, mm, next);
2736
Ingo Molnardd41f592007-07-09 18:51:59 +02002737 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 rq->prev_mm = oldmm;
2740 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002741 /*
2742 * Since the runqueue lock will be released by the next
2743 * task (which is an invalid locking op but in the case
2744 * of the scheduler it's an obvious special-case), so we
2745 * do an early lockdep release here:
2746 */
2747#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002748 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002749#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
2751 /* Here we just switch the register state and the stack. */
2752 switch_to(prev, next, prev);
2753
Ingo Molnardd41f592007-07-09 18:51:59 +02002754 barrier();
2755 /*
2756 * this_rq must be evaluated again because prev may have moved
2757 * CPUs since it called schedule(), thus the 'rq' on its stack
2758 * frame will be invalid.
2759 */
2760 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761}
2762
2763/*
2764 * nr_running, nr_uninterruptible and nr_context_switches:
2765 *
2766 * externally visible scheduler statistics: current number of runnable
2767 * threads, current number of uninterruptible-sleeping threads, total
2768 * number of context switches performed since bootup.
2769 */
2770unsigned long nr_running(void)
2771{
2772 unsigned long i, sum = 0;
2773
2774 for_each_online_cpu(i)
2775 sum += cpu_rq(i)->nr_running;
2776
2777 return sum;
2778}
2779
2780unsigned long nr_uninterruptible(void)
2781{
2782 unsigned long i, sum = 0;
2783
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002784 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 sum += cpu_rq(i)->nr_uninterruptible;
2786
2787 /*
2788 * Since we read the counters lockless, it might be slightly
2789 * inaccurate. Do not allow it to go below zero though:
2790 */
2791 if (unlikely((long)sum < 0))
2792 sum = 0;
2793
2794 return sum;
2795}
2796
2797unsigned long long nr_context_switches(void)
2798{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002799 int i;
2800 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002802 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 sum += cpu_rq(i)->nr_switches;
2804
2805 return sum;
2806}
2807
2808unsigned long nr_iowait(void)
2809{
2810 unsigned long i, sum = 0;
2811
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002812 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2814
2815 return sum;
2816}
2817
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002818unsigned long nr_active(void)
2819{
2820 unsigned long i, running = 0, uninterruptible = 0;
2821
2822 for_each_online_cpu(i) {
2823 running += cpu_rq(i)->nr_running;
2824 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2825 }
2826
2827 if (unlikely((long)uninterruptible < 0))
2828 uninterruptible = 0;
2829
2830 return running + uninterruptible;
2831}
2832
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002834 * Update rq->cpu_load[] statistics. This function is usually called every
2835 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002836 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002837static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002838{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002839 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002840 int i, scale;
2841
2842 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002843
2844 /* Update our load: */
2845 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2846 unsigned long old_load, new_load;
2847
2848 /* scale is effectively 1 << i now, and >> i divides by scale */
2849
2850 old_load = this_rq->cpu_load[i];
2851 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002852 /*
2853 * Round up the averaging division if load is increasing. This
2854 * prevents us from getting stuck on 9 if the load is 10, for
2855 * example.
2856 */
2857 if (new_load > old_load)
2858 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002859 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2860 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002861}
2862
Ingo Molnardd41f592007-07-09 18:51:59 +02002863#ifdef CONFIG_SMP
2864
Ingo Molnar48f24c42006-07-03 00:25:40 -07002865/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 * double_rq_lock - safely lock two runqueues
2867 *
2868 * Note this does not disable interrupts like task_rq_lock,
2869 * you need to do so manually before calling.
2870 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002871static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 __acquires(rq1->lock)
2873 __acquires(rq2->lock)
2874{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002875 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 if (rq1 == rq2) {
2877 spin_lock(&rq1->lock);
2878 __acquire(rq2->lock); /* Fake it out ;) */
2879 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002880 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 spin_lock(&rq1->lock);
2882 spin_lock(&rq2->lock);
2883 } else {
2884 spin_lock(&rq2->lock);
2885 spin_lock(&rq1->lock);
2886 }
2887 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002888 update_rq_clock(rq1);
2889 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890}
2891
2892/*
2893 * double_rq_unlock - safely unlock two runqueues
2894 *
2895 * Note this does not restore interrupts like task_rq_unlock,
2896 * you need to do so manually after calling.
2897 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002898static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 __releases(rq1->lock)
2900 __releases(rq2->lock)
2901{
2902 spin_unlock(&rq1->lock);
2903 if (rq1 != rq2)
2904 spin_unlock(&rq2->lock);
2905 else
2906 __release(rq2->lock);
2907}
2908
2909/*
2910 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2911 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002912static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 __releases(this_rq->lock)
2914 __acquires(busiest->lock)
2915 __acquires(this_rq->lock)
2916{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002917 int ret = 0;
2918
Kirill Korotaev054b9102006-12-10 02:20:11 -08002919 if (unlikely(!irqs_disabled())) {
2920 /* printk() doesn't work good under rq->lock */
2921 spin_unlock(&this_rq->lock);
2922 BUG_ON(1);
2923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002925 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 spin_unlock(&this_rq->lock);
2927 spin_lock(&busiest->lock);
2928 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002929 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 } else
2931 spin_lock(&busiest->lock);
2932 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002933 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934}
2935
2936/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 * If dest_cpu is allowed for this process, migrate the task to it.
2938 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002939 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 * the cpu_allowed mask is restored.
2941 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002942static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002944 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002946 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
2948 rq = task_rq_lock(p, &flags);
2949 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2950 || unlikely(cpu_is_offline(dest_cpu)))
2951 goto out;
2952
2953 /* force the process onto the specified CPU */
2954 if (migrate_task(p, dest_cpu, &req)) {
2955 /* Need to wait for migration thread (might exit: take ref). */
2956 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 get_task_struct(mt);
2959 task_rq_unlock(rq, &flags);
2960 wake_up_process(mt);
2961 put_task_struct(mt);
2962 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 return;
2965 }
2966out:
2967 task_rq_unlock(rq, &flags);
2968}
2969
2970/*
Nick Piggin476d1392005-06-25 14:57:29 -07002971 * sched_exec - execve() is a valuable balancing opportunity, because at
2972 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 */
2974void sched_exec(void)
2975{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002977 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002979 if (new_cpu != this_cpu)
2980 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981}
2982
2983/*
2984 * pull_task - move a task from a remote runqueue to the local runqueue.
2985 * Both runqueues must be locked.
2986 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002987static void pull_task(struct rq *src_rq, struct task_struct *p,
2988 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002990 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002992 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 /*
2994 * Note that idle threads have a prio of MAX_PRIO, for this test
2995 * to be always true for them.
2996 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002997 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998}
2999
3000/*
3001 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
3002 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003003static
Ingo Molnar70b97a72006-07-03 00:25:42 -07003004int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003005 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003006 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007{
3008 /*
3009 * We do not migrate tasks that are:
3010 * 1) running (obviously), or
3011 * 2) cannot be migrated to this CPU due to cpus_allowed, or
3012 * 3) are cache-hot on their current CPU.
3013 */
Ingo Molnarcc367732007-10-15 17:00:18 +02003014 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
3015 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003017 }
Nick Piggin81026792005-06-25 14:57:07 -07003018 *all_pinned = 0;
3019
Ingo Molnarcc367732007-10-15 17:00:18 +02003020 if (task_running(rq, p)) {
3021 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07003022 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
Ingo Molnarda84d962007-10-15 17:00:18 +02003025 /*
3026 * Aggressive migration if:
3027 * 1) task is cache cold, or
3028 * 2) too many balance attempts have failed.
3029 */
3030
Ingo Molnar6bc16652007-10-15 17:00:18 +02003031 if (!task_hot(p, rq->clock, sd) ||
3032 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003033#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02003034 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003035 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02003036 schedstat_inc(p, se.nr_forced_migrations);
3037 }
Ingo Molnarda84d962007-10-15 17:00:18 +02003038#endif
3039 return 1;
3040 }
3041
Ingo Molnarcc367732007-10-15 17:00:18 +02003042 if (task_hot(p, rq->clock, sd)) {
3043 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02003044 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 return 1;
3047}
3048
Peter Williamse1d14842007-10-24 18:23:51 +02003049static unsigned long
3050balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3051 unsigned long max_load_move, struct sched_domain *sd,
3052 enum cpu_idle_type idle, int *all_pinned,
3053 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003054{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003055 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02003056 struct task_struct *p;
3057 long rem_load_move = max_load_move;
3058
Peter Williamse1d14842007-10-24 18:23:51 +02003059 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003060 goto out;
3061
3062 pinned = 1;
3063
3064 /*
3065 * Start the load-balancing iterator:
3066 */
3067 p = iterator->start(iterator->arg);
3068next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003069 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003070 goto out;
3071 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003072 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02003073 * skip a task if it will be the highest priority task (i.e. smallest
3074 * prio value) on its new queue regardless of its load weight
3075 */
3076 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
3077 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003078 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003079 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003080 p = iterator->next(iterator->arg);
3081 goto next;
3082 }
3083
3084 pull_task(busiest, p, this_rq, this_cpu);
3085 pulled++;
3086 rem_load_move -= p->se.load.weight;
3087
3088 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003089 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003090 */
Peter Williamse1d14842007-10-24 18:23:51 +02003091 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003092 if (p->prio < *this_best_prio)
3093 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003094 p = iterator->next(iterator->arg);
3095 goto next;
3096 }
3097out:
3098 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003099 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003100 * so we can safely collect pull_task() stats here rather than
3101 * inside pull_task().
3102 */
3103 schedstat_add(sd, lb_gained[idle], pulled);
3104
3105 if (all_pinned)
3106 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003107
3108 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003109}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003110
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111/*
Peter Williams43010652007-08-09 11:16:46 +02003112 * move_tasks tries to move up to max_load_move weighted load from busiest to
3113 * this_rq, as part of a balancing operation within domain "sd".
3114 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 *
3116 * Called with both runqueues locked.
3117 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003118static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003119 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003120 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003121 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003123 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003124 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003125 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
Ingo Molnardd41f592007-07-09 18:51:59 +02003127 do {
Peter Williams43010652007-08-09 11:16:46 +02003128 total_load_moved +=
3129 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003130 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003131 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003132 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02003133 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
Peter Williams43010652007-08-09 11:16:46 +02003135 return total_load_moved > 0;
3136}
3137
Peter Williamse1d14842007-10-24 18:23:51 +02003138static int
3139iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3140 struct sched_domain *sd, enum cpu_idle_type idle,
3141 struct rq_iterator *iterator)
3142{
3143 struct task_struct *p = iterator->start(iterator->arg);
3144 int pinned = 0;
3145
3146 while (p) {
3147 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3148 pull_task(busiest, p, this_rq, this_cpu);
3149 /*
3150 * Right now, this is only the second place pull_task()
3151 * is called, so we can safely collect pull_task()
3152 * stats here rather than inside pull_task().
3153 */
3154 schedstat_inc(sd, lb_gained[idle]);
3155
3156 return 1;
3157 }
3158 p = iterator->next(iterator->arg);
3159 }
3160
3161 return 0;
3162}
3163
Peter Williams43010652007-08-09 11:16:46 +02003164/*
3165 * move_one_task tries to move exactly one task from busiest to this_rq, as
3166 * part of active balancing operations within "domain".
3167 * Returns 1 if successful and 0 otherwise.
3168 *
3169 * Called with both runqueues locked.
3170 */
3171static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3172 struct sched_domain *sd, enum cpu_idle_type idle)
3173{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003174 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003175
3176 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003177 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003178 return 1;
3179
3180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181}
3182
3183/*
3184 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003185 * domain. It calculates and returns the amount of weighted load which
3186 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 */
3188static struct sched_group *
3189find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003190 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003191 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192{
3193 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3194 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003195 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003196 unsigned long busiest_load_per_task, busiest_nr_running;
3197 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003198 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003199#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3200 int power_savings_balance = 1;
3201 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3202 unsigned long min_nr_running = ULONG_MAX;
3203 struct sched_group *group_min = NULL, *group_leader = NULL;
3204#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
3206 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003207 busiest_load_per_task = busiest_nr_running = 0;
3208 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003209 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003210 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003211 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003212 load_idx = sd->newidle_idx;
3213 else
3214 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
3216 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003217 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 int local_group;
3219 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003220 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003221 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003222 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
3224 local_group = cpu_isset(this_cpu, group->cpumask);
3225
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003226 if (local_group)
3227 balance_cpu = first_cpu(group->cpumask);
3228
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003230 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02003231 max_cpu_load = 0;
3232 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
3234 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003235 struct rq *rq;
3236
3237 if (!cpu_isset(i, *cpus))
3238 continue;
3239
3240 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003241
Suresh Siddha9439aab2007-07-19 21:28:35 +02003242 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003243 *sd_idle = 0;
3244
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003246 if (local_group) {
3247 if (idle_cpu(i) && !first_idle_cpu) {
3248 first_idle_cpu = 1;
3249 balance_cpu = i;
3250 }
3251
Nick Piggina2000572006-02-10 01:51:02 -08003252 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003253 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003254 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003255 if (load > max_cpu_load)
3256 max_cpu_load = load;
3257 if (min_cpu_load > load)
3258 min_cpu_load = load;
3259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
3261 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003262 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003263 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 }
3265
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003266 /*
3267 * First idle cpu or the first cpu(busiest) in this sched group
3268 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003269 * domains. In the newly idle case, we will allow all the cpu's
3270 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003271 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003272 if (idle != CPU_NEWLY_IDLE && local_group &&
3273 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003274 *balance = 0;
3275 goto ret;
3276 }
3277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003279 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
3281 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003282 avg_load = sg_div_cpu_power(group,
3283 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
Ken Chen908a7c12007-10-17 16:55:11 +02003285 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
3286 __group_imb = 1;
3287
Eric Dumazet5517d862007-05-08 00:32:57 -07003288 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 if (local_group) {
3291 this_load = avg_load;
3292 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003293 this_nr_running = sum_nr_running;
3294 this_load_per_task = sum_weighted_load;
3295 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003296 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 max_load = avg_load;
3298 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003299 busiest_nr_running = sum_nr_running;
3300 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003301 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003303
3304#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3305 /*
3306 * Busy processors will not participate in power savings
3307 * balance.
3308 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003309 if (idle == CPU_NOT_IDLE ||
3310 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3311 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003312
3313 /*
3314 * If the local group is idle or completely loaded
3315 * no need to do power savings balance at this domain
3316 */
3317 if (local_group && (this_nr_running >= group_capacity ||
3318 !this_nr_running))
3319 power_savings_balance = 0;
3320
Ingo Molnardd41f592007-07-09 18:51:59 +02003321 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003322 * If a group is already running at full capacity or idle,
3323 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003324 */
3325 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003326 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003327 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003328
Ingo Molnardd41f592007-07-09 18:51:59 +02003329 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003330 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003331 * This is the group from where we need to pick up the load
3332 * for saving power
3333 */
3334 if ((sum_nr_running < min_nr_running) ||
3335 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003336 first_cpu(group->cpumask) <
3337 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003338 group_min = group;
3339 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003340 min_load_per_task = sum_weighted_load /
3341 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003342 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003343
Ingo Molnardd41f592007-07-09 18:51:59 +02003344 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003345 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003346 * capacity but still has some space to pick up some load
3347 * from other group and save more power
3348 */
3349 if (sum_nr_running <= group_capacity - 1) {
3350 if (sum_nr_running > leader_nr_running ||
3351 (sum_nr_running == leader_nr_running &&
3352 first_cpu(group->cpumask) >
3353 first_cpu(group_leader->cpumask))) {
3354 group_leader = group;
3355 leader_nr_running = sum_nr_running;
3356 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003357 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003358group_next:
3359#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 group = group->next;
3361 } while (group != sd->groups);
3362
Peter Williams2dd73a42006-06-27 02:54:34 -07003363 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 goto out_balanced;
3365
3366 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3367
3368 if (this_load >= avg_load ||
3369 100*max_load <= sd->imbalance_pct*this_load)
3370 goto out_balanced;
3371
Peter Williams2dd73a42006-06-27 02:54:34 -07003372 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003373 if (group_imb)
3374 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3375
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 /*
3377 * We're trying to get all the cpus to the average_load, so we don't
3378 * want to push ourselves above the average load, nor do we wish to
3379 * reduce the max loaded cpu below the average load, as either of these
3380 * actions would just result in more rebalancing later, and ping-pong
3381 * tasks around. Thus we look for the minimum possible imbalance.
3382 * Negative imbalances (*we* are more loaded than anyone else) will
3383 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003384 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 * appear as very large values with unsigned longs.
3386 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003387 if (max_load <= busiest_load_per_task)
3388 goto out_balanced;
3389
3390 /*
3391 * In the presence of smp nice balancing, certain scenarios can have
3392 * max load less than avg load(as we skip the groups at or below
3393 * its cpu_power, while calculating max_load..)
3394 */
3395 if (max_load < avg_load) {
3396 *imbalance = 0;
3397 goto small_imbalance;
3398 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003399
3400 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003401 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003402
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003404 *imbalance = min(max_pull * busiest->__cpu_power,
3405 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 / SCHED_LOAD_SCALE;
3407
Peter Williams2dd73a42006-06-27 02:54:34 -07003408 /*
3409 * if *imbalance is less than the average load per runnable task
3410 * there is no gaurantee that any tasks will be moved so we'll have
3411 * a think about bumping its value to force at least one task to be
3412 * moved
3413 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003414 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003415 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003416 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
Peter Williams2dd73a42006-06-27 02:54:34 -07003418small_imbalance:
3419 pwr_move = pwr_now = 0;
3420 imbn = 2;
3421 if (this_nr_running) {
3422 this_load_per_task /= this_nr_running;
3423 if (busiest_load_per_task > this_load_per_task)
3424 imbn = 1;
3425 } else
3426 this_load_per_task = SCHED_LOAD_SCALE;
3427
Ingo Molnardd41f592007-07-09 18:51:59 +02003428 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3429 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003430 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 return busiest;
3432 }
3433
3434 /*
3435 * OK, we don't have enough imbalance to justify moving tasks,
3436 * however we may be able to increase total CPU power used by
3437 * moving them.
3438 */
3439
Eric Dumazet5517d862007-05-08 00:32:57 -07003440 pwr_now += busiest->__cpu_power *
3441 min(busiest_load_per_task, max_load);
3442 pwr_now += this->__cpu_power *
3443 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 pwr_now /= SCHED_LOAD_SCALE;
3445
3446 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003447 tmp = sg_div_cpu_power(busiest,
3448 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003450 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003451 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452
3453 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003454 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003455 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003456 tmp = sg_div_cpu_power(this,
3457 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003459 tmp = sg_div_cpu_power(this,
3460 busiest_load_per_task * SCHED_LOAD_SCALE);
3461 pwr_move += this->__cpu_power *
3462 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 pwr_move /= SCHED_LOAD_SCALE;
3464
3465 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003466 if (pwr_move > pwr_now)
3467 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 }
3469
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 return busiest;
3471
3472out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003473#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003474 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003475 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003477 if (this == group_leader && group_leader != group_min) {
3478 *imbalance = min_load_per_task;
3479 return group_min;
3480 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003481#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003482ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 *imbalance = 0;
3484 return NULL;
3485}
3486
3487/*
3488 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3489 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003490static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003491find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003492 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003494 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003495 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 int i;
3497
3498 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003499 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003500
3501 if (!cpu_isset(i, *cpus))
3502 continue;
3503
Ingo Molnar48f24c42006-07-03 00:25:40 -07003504 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003505 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
Ingo Molnardd41f592007-07-09 18:51:59 +02003507 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003508 continue;
3509
Ingo Molnardd41f592007-07-09 18:51:59 +02003510 if (wl > max_load) {
3511 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003512 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 }
3514 }
3515
3516 return busiest;
3517}
3518
3519/*
Nick Piggin77391d72005-06-25 14:57:30 -07003520 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3521 * so long as it is large enough.
3522 */
3523#define MAX_PINNED_INTERVAL 512
3524
3525/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3527 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003529static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003530 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003531 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532{
Peter Williams43010652007-08-09 11:16:46 +02003533 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003536 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003537 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003538 int unlock_aggregate;
Nick Piggin5969fe02005-09-10 00:26:19 -07003539
Mike Travis7c16ec52008-04-04 18:11:11 -07003540 cpus_setall(*cpus);
3541
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003542 unlock_aggregate = get_aggregate(sd);
3543
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003544 /*
3545 * When power savings policy is enabled for the parent domain, idle
3546 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003547 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003548 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003549 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003550 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003551 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003552 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
Ingo Molnar2d723762007-10-15 17:00:12 +02003554 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003556redo:
3557 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003558 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003559
Chen, Kenneth W06066712006-12-10 02:20:35 -08003560 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003561 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003562
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 if (!group) {
3564 schedstat_inc(sd, lb_nobusyg[idle]);
3565 goto out_balanced;
3566 }
3567
Mike Travis7c16ec52008-04-04 18:11:11 -07003568 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 if (!busiest) {
3570 schedstat_inc(sd, lb_nobusyq[idle]);
3571 goto out_balanced;
3572 }
3573
Nick Piggindb935db2005-06-25 14:57:11 -07003574 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575
3576 schedstat_add(sd, lb_imbalance[idle], imbalance);
3577
Peter Williams43010652007-08-09 11:16:46 +02003578 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 if (busiest->nr_running > 1) {
3580 /*
3581 * Attempt to move tasks. If find_busiest_group has found
3582 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003583 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 * correctly treated as an imbalance.
3585 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003586 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003587 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003588 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003589 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003590 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003591 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003592
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003593 /*
3594 * some other cpu did the load balance for us.
3595 */
Peter Williams43010652007-08-09 11:16:46 +02003596 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003597 resched_cpu(this_cpu);
3598
Nick Piggin81026792005-06-25 14:57:07 -07003599 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003600 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003601 cpu_clear(cpu_of(busiest), *cpus);
3602 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003603 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003604 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 }
Nick Piggin81026792005-06-25 14:57:07 -07003607
Peter Williams43010652007-08-09 11:16:46 +02003608 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 schedstat_inc(sd, lb_failed[idle]);
3610 sd->nr_balance_failed++;
3611
3612 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003614 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003615
3616 /* don't kick the migration_thread, if the curr
3617 * task on busiest cpu can't be moved to this_cpu
3618 */
3619 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003620 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003621 all_pinned = 1;
3622 goto out_one_pinned;
3623 }
3624
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 if (!busiest->active_balance) {
3626 busiest->active_balance = 1;
3627 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003628 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003630 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003631 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 wake_up_process(busiest->migration_thread);
3633
3634 /*
3635 * We've kicked active balancing, reset the failure
3636 * counter.
3637 */
Nick Piggin39507452005-06-25 14:57:09 -07003638 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 }
Nick Piggin81026792005-06-25 14:57:07 -07003640 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 sd->nr_balance_failed = 0;
3642
Nick Piggin81026792005-06-25 14:57:07 -07003643 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 /* We were unbalanced, so reset the balancing interval */
3645 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003646 } else {
3647 /*
3648 * If we've begun active balancing, start to back off. This
3649 * case may not be covered by the all_pinned logic if there
3650 * is only 1 task on the busy runqueue (because we don't call
3651 * move_tasks).
3652 */
3653 if (sd->balance_interval < sd->max_interval)
3654 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 }
3656
Peter Williams43010652007-08-09 11:16:46 +02003657 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003658 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003659 ld_moved = -1;
3660
3661 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
3663out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 schedstat_inc(sd, lb_balanced[idle]);
3665
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003666 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003667
3668out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003670 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3671 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 sd->balance_interval *= 2;
3673
Ingo Molnar48f24c42006-07-03 00:25:40 -07003674 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003675 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003676 ld_moved = -1;
3677 else
3678 ld_moved = 0;
3679out:
3680 if (unlock_aggregate)
3681 put_aggregate(sd);
3682 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683}
3684
3685/*
3686 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3687 * tasks if there is an imbalance.
3688 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003689 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 * this_rq is locked.
3691 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003692static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003693load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3694 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695{
3696 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003697 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003699 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003700 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003701 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003702
3703 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003704
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003705 /*
3706 * When power savings policy is enabled for the parent domain, idle
3707 * sibling can pick up load irrespective of busy siblings. In this case,
3708 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003709 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003710 */
3711 if (sd->flags & SD_SHARE_CPUPOWER &&
3712 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003713 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
Ingo Molnar2d723762007-10-15 17:00:12 +02003715 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003716redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003717 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003718 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003720 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003721 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 }
3723
Mike Travis7c16ec52008-04-04 18:11:11 -07003724 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003725 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003726 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003727 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 }
3729
Nick Piggindb935db2005-06-25 14:57:11 -07003730 BUG_ON(busiest == this_rq);
3731
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003732 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003733
Peter Williams43010652007-08-09 11:16:46 +02003734 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003735 if (busiest->nr_running > 1) {
3736 /* Attempt to move tasks */
3737 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003738 /* this_rq->clock is already updated */
3739 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003740 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003741 imbalance, sd, CPU_NEWLY_IDLE,
3742 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003743 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003744
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003745 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003746 cpu_clear(cpu_of(busiest), *cpus);
3747 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003748 goto redo;
3749 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003750 }
3751
Peter Williams43010652007-08-09 11:16:46 +02003752 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003753 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003754 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3755 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003756 return -1;
3757 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003758 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
Peter Williams43010652007-08-09 11:16:46 +02003760 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003761
3762out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003763 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003764 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003765 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003766 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003767 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003768
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003769 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770}
3771
3772/*
3773 * idle_balance is called by schedule() if this_cpu is about to become
3774 * idle. Attempts to pull tasks from other CPUs.
3775 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003776static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777{
3778 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003779 int pulled_task = -1;
3780 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003781 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
3783 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003784 unsigned long interval;
3785
3786 if (!(sd->flags & SD_LOAD_BALANCE))
3787 continue;
3788
3789 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003790 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003791 pulled_task = load_balance_newidle(this_cpu, this_rq,
3792 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003793
3794 interval = msecs_to_jiffies(sd->balance_interval);
3795 if (time_after(next_balance, sd->last_balance + interval))
3796 next_balance = sd->last_balance + interval;
3797 if (pulled_task)
3798 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003800 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003801 /*
3802 * We are going idle. next_balance may be set based on
3803 * a busy processor. So reset next_balance.
3804 */
3805 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807}
3808
3809/*
3810 * active_load_balance is run by migration threads. It pushes running tasks
3811 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3812 * running on each physical CPU where possible, and avoids physical /
3813 * logical imbalances.
3814 *
3815 * Called with busiest_rq locked.
3816 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003817static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818{
Nick Piggin39507452005-06-25 14:57:09 -07003819 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003820 struct sched_domain *sd;
3821 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003822
Ingo Molnar48f24c42006-07-03 00:25:40 -07003823 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003824 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003825 return;
3826
3827 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
3829 /*
Nick Piggin39507452005-06-25 14:57:09 -07003830 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003831 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003832 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 */
Nick Piggin39507452005-06-25 14:57:09 -07003834 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
Nick Piggin39507452005-06-25 14:57:09 -07003836 /* move a task from busiest_rq to target_rq */
3837 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003838 update_rq_clock(busiest_rq);
3839 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
Nick Piggin39507452005-06-25 14:57:09 -07003841 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003842 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003843 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003844 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003845 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
Ingo Molnar48f24c42006-07-03 00:25:40 -07003848 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003849 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850
Peter Williams43010652007-08-09 11:16:46 +02003851 if (move_one_task(target_rq, target_cpu, busiest_rq,
3852 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003853 schedstat_inc(sd, alb_pushed);
3854 else
3855 schedstat_inc(sd, alb_failed);
3856 }
Nick Piggin39507452005-06-25 14:57:09 -07003857 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858}
3859
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003860#ifdef CONFIG_NO_HZ
3861static struct {
3862 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003863 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003864} nohz ____cacheline_aligned = {
3865 .load_balancer = ATOMIC_INIT(-1),
3866 .cpu_mask = CPU_MASK_NONE,
3867};
3868
Christoph Lameter7835b982006-12-10 02:20:22 -08003869/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003870 * This routine will try to nominate the ilb (idle load balancing)
3871 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3872 * load balancing on behalf of all those cpus. If all the cpus in the system
3873 * go into this tickless mode, then there will be no ilb owner (as there is
3874 * no need for one) and all the cpus will sleep till the next wakeup event
3875 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003876 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003877 * For the ilb owner, tick is not stopped. And this tick will be used
3878 * for idle load balancing. ilb owner will still be part of
3879 * nohz.cpu_mask..
3880 *
3881 * While stopping the tick, this cpu will become the ilb owner if there
3882 * is no other owner. And will be the owner till that cpu becomes busy
3883 * or if all cpus in the system stop their ticks at which point
3884 * there is no need for ilb owner.
3885 *
3886 * When the ilb owner becomes busy, it nominates another owner, during the
3887 * next busy scheduler_tick()
3888 */
3889int select_nohz_load_balancer(int stop_tick)
3890{
3891 int cpu = smp_processor_id();
3892
3893 if (stop_tick) {
3894 cpu_set(cpu, nohz.cpu_mask);
3895 cpu_rq(cpu)->in_nohz_recently = 1;
3896
3897 /*
3898 * If we are going offline and still the leader, give up!
3899 */
3900 if (cpu_is_offline(cpu) &&
3901 atomic_read(&nohz.load_balancer) == cpu) {
3902 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3903 BUG();
3904 return 0;
3905 }
3906
3907 /* time for ilb owner also to sleep */
3908 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3909 if (atomic_read(&nohz.load_balancer) == cpu)
3910 atomic_set(&nohz.load_balancer, -1);
3911 return 0;
3912 }
3913
3914 if (atomic_read(&nohz.load_balancer) == -1) {
3915 /* make me the ilb owner */
3916 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3917 return 1;
3918 } else if (atomic_read(&nohz.load_balancer) == cpu)
3919 return 1;
3920 } else {
3921 if (!cpu_isset(cpu, nohz.cpu_mask))
3922 return 0;
3923
3924 cpu_clear(cpu, nohz.cpu_mask);
3925
3926 if (atomic_read(&nohz.load_balancer) == cpu)
3927 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3928 BUG();
3929 }
3930 return 0;
3931}
3932#endif
3933
3934static DEFINE_SPINLOCK(balancing);
3935
3936/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003937 * It checks each scheduling domain to see if it is due to be balanced,
3938 * and initiates a balancing operation if so.
3939 *
3940 * Balancing parameters are set up in arch_init_sched_domains.
3941 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003942static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003943{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003944 int balance = 1;
3945 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003946 unsigned long interval;
3947 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003948 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003949 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003950 int update_next_balance = 0;
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003951 int need_serialize;
Mike Travis7c16ec52008-04-04 18:11:11 -07003952 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003954 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 if (!(sd->flags & SD_LOAD_BALANCE))
3956 continue;
3957
3958 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003959 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 interval *= sd->busy_factor;
3961
3962 /* scale ms to jiffies */
3963 interval = msecs_to_jiffies(interval);
3964 if (unlikely(!interval))
3965 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003966 if (interval > HZ*NR_CPUS/10)
3967 interval = HZ*NR_CPUS/10;
3968
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003969 need_serialize = sd->flags & SD_SERIALIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003971 if (need_serialize) {
Christoph Lameter08c183f2006-12-10 02:20:29 -08003972 if (!spin_trylock(&balancing))
3973 goto out;
3974 }
3975
Christoph Lameterc9819f42006-12-10 02:20:25 -08003976 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003977 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003978 /*
3979 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003980 * longer idle, or one of our SMT siblings is
3981 * not idle.
3982 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003983 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003985 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 }
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003987 if (need_serialize)
Christoph Lameter08c183f2006-12-10 02:20:29 -08003988 spin_unlock(&balancing);
3989out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003990 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003991 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003992 update_next_balance = 1;
3993 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003994
3995 /*
3996 * Stop the load balance at this level. There is another
3997 * CPU in our sched group which is doing load balancing more
3998 * actively.
3999 */
4000 if (!balance)
4001 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004003
4004 /*
4005 * next_balance will be updated only when there is a need.
4006 * When the cpu is attached to null domain for ex, it will not be
4007 * updated.
4008 */
4009 if (likely(update_next_balance))
4010 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004011}
4012
4013/*
4014 * run_rebalance_domains is triggered when needed from the scheduler tick.
4015 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4016 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4017 */
4018static void run_rebalance_domains(struct softirq_action *h)
4019{
Ingo Molnardd41f592007-07-09 18:51:59 +02004020 int this_cpu = smp_processor_id();
4021 struct rq *this_rq = cpu_rq(this_cpu);
4022 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4023 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004024
Ingo Molnardd41f592007-07-09 18:51:59 +02004025 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004026
4027#ifdef CONFIG_NO_HZ
4028 /*
4029 * If this cpu is the owner for idle load balancing, then do the
4030 * balancing on behalf of the other idle cpus whose ticks are
4031 * stopped.
4032 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004033 if (this_rq->idle_at_tick &&
4034 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004035 cpumask_t cpus = nohz.cpu_mask;
4036 struct rq *rq;
4037 int balance_cpu;
4038
Ingo Molnardd41f592007-07-09 18:51:59 +02004039 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004040 for_each_cpu_mask(balance_cpu, cpus) {
4041 /*
4042 * If this cpu gets work to do, stop the load balancing
4043 * work being done for other cpus. Next load
4044 * balancing owner will pick it up.
4045 */
4046 if (need_resched())
4047 break;
4048
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004049 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004050
4051 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004052 if (time_after(this_rq->next_balance, rq->next_balance))
4053 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004054 }
4055 }
4056#endif
4057}
4058
4059/*
4060 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4061 *
4062 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4063 * idle load balancing owner or decide to stop the periodic load balancing,
4064 * if the whole system is idle.
4065 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004066static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004067{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004068#ifdef CONFIG_NO_HZ
4069 /*
4070 * If we were in the nohz mode recently and busy at the current
4071 * scheduler tick, then check if we need to nominate new idle
4072 * load balancer.
4073 */
4074 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4075 rq->in_nohz_recently = 0;
4076
4077 if (atomic_read(&nohz.load_balancer) == cpu) {
4078 cpu_clear(cpu, nohz.cpu_mask);
4079 atomic_set(&nohz.load_balancer, -1);
4080 }
4081
4082 if (atomic_read(&nohz.load_balancer) == -1) {
4083 /*
4084 * simple selection for now: Nominate the
4085 * first cpu in the nohz list to be the next
4086 * ilb owner.
4087 *
4088 * TBD: Traverse the sched domains and nominate
4089 * the nearest cpu in the nohz.cpu_mask.
4090 */
4091 int ilb = first_cpu(nohz.cpu_mask);
4092
Mike Travis434d53b2008-04-04 18:11:04 -07004093 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004094 resched_cpu(ilb);
4095 }
4096 }
4097
4098 /*
4099 * If this cpu is idle and doing idle load balancing for all the
4100 * cpus with ticks stopped, is it time for that to stop?
4101 */
4102 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
4103 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4104 resched_cpu(cpu);
4105 return;
4106 }
4107
4108 /*
4109 * If this cpu is idle and the idle load balancing is done by
4110 * someone else, then no need raise the SCHED_SOFTIRQ
4111 */
4112 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
4113 cpu_isset(cpu, nohz.cpu_mask))
4114 return;
4115#endif
4116 if (time_after_eq(jiffies, rq->next_balance))
4117 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118}
Ingo Molnardd41f592007-07-09 18:51:59 +02004119
4120#else /* CONFIG_SMP */
4121
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122/*
4123 * on UP we do not need to balance between CPUs:
4124 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004125static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126{
4127}
Ingo Molnardd41f592007-07-09 18:51:59 +02004128
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129#endif
4130
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131DEFINE_PER_CPU(struct kernel_stat, kstat);
4132
4133EXPORT_PER_CPU_SYMBOL(kstat);
4134
4135/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02004136 * Return p->sum_exec_runtime plus any more ns on the sched_clock
4137 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02004139unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004142 u64 ns, delta_exec;
4143 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004144
Ingo Molnar41b86e92007-07-09 18:51:58 +02004145 rq = task_rq_lock(p, &flags);
4146 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004147 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02004148 update_rq_clock(rq);
4149 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004150 if ((s64)delta_exec > 0)
4151 ns += delta_exec;
4152 }
4153 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004154
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 return ns;
4156}
4157
4158/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 * Account user cpu time to a process.
4160 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161 * @cputime: the cpu time spent in user space since the last update
4162 */
4163void account_user_time(struct task_struct *p, cputime_t cputime)
4164{
4165 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4166 cputime64_t tmp;
4167
4168 p->utime = cputime_add(p->utime, cputime);
4169
4170 /* Add user time to cpustat. */
4171 tmp = cputime_to_cputime64(cputime);
4172 if (TASK_NICE(p) > 0)
4173 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4174 else
4175 cpustat->user = cputime64_add(cpustat->user, tmp);
4176}
4177
4178/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004179 * Account guest cpu time to a process.
4180 * @p: the process that the cpu time gets accounted to
4181 * @cputime: the cpu time spent in virtual machine since the last update
4182 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004183static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004184{
4185 cputime64_t tmp;
4186 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4187
4188 tmp = cputime_to_cputime64(cputime);
4189
4190 p->utime = cputime_add(p->utime, cputime);
4191 p->gtime = cputime_add(p->gtime, cputime);
4192
4193 cpustat->user = cputime64_add(cpustat->user, tmp);
4194 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4195}
4196
4197/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004198 * Account scaled user cpu time to a process.
4199 * @p: the process that the cpu time gets accounted to
4200 * @cputime: the cpu time spent in user space since the last update
4201 */
4202void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4203{
4204 p->utimescaled = cputime_add(p->utimescaled, cputime);
4205}
4206
4207/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 * Account system cpu time to a process.
4209 * @p: the process that the cpu time gets accounted to
4210 * @hardirq_offset: the offset to subtract from hardirq_count()
4211 * @cputime: the cpu time spent in kernel space since the last update
4212 */
4213void account_system_time(struct task_struct *p, int hardirq_offset,
4214 cputime_t cputime)
4215{
4216 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004217 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 cputime64_t tmp;
4219
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004220 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
4221 account_guest_time(p, cputime);
4222 return;
4223 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004224
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 p->stime = cputime_add(p->stime, cputime);
4226
4227 /* Add system time to cpustat. */
4228 tmp = cputime_to_cputime64(cputime);
4229 if (hardirq_count() - hardirq_offset)
4230 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4231 else if (softirq_count())
4232 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004233 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004235 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4237 else
4238 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4239 /* Account for system time used */
4240 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241}
4242
4243/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004244 * Account scaled system cpu time to a process.
4245 * @p: the process that the cpu time gets accounted to
4246 * @hardirq_offset: the offset to subtract from hardirq_count()
4247 * @cputime: the cpu time spent in kernel space since the last update
4248 */
4249void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4250{
4251 p->stimescaled = cputime_add(p->stimescaled, cputime);
4252}
4253
4254/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 * Account for involuntary wait time.
4256 * @p: the process from which the cpu time has been stolen
4257 * @steal: the cpu time spent in involuntary wait
4258 */
4259void account_steal_time(struct task_struct *p, cputime_t steal)
4260{
4261 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4262 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004263 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
4265 if (p == rq->idle) {
4266 p->stime = cputime_add(p->stime, steal);
4267 if (atomic_read(&rq->nr_iowait) > 0)
4268 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4269 else
4270 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004271 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4273}
4274
Christoph Lameter7835b982006-12-10 02:20:22 -08004275/*
4276 * This function gets called by the timer code, with HZ frequency.
4277 * We call it with interrupts disabled.
4278 *
4279 * It also gets called by the fork code, when changing the parent's
4280 * timeslices.
4281 */
4282void scheduler_tick(void)
4283{
Christoph Lameter7835b982006-12-10 02:20:22 -08004284 int cpu = smp_processor_id();
4285 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004286 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004287
4288 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004289
Ingo Molnardd41f592007-07-09 18:51:59 +02004290 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004291 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004292 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004293 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004294 spin_unlock(&rq->lock);
4295
Christoph Lametere418e1c2006-12-10 02:20:23 -08004296#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004297 rq->idle_at_tick = idle_cpu(cpu);
4298 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004299#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300}
4301
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
4303
Srinivasa Ds43627582008-02-23 15:24:04 -08004304void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305{
4306 /*
4307 * Underflow?
4308 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004309 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4310 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 preempt_count() += val;
4312 /*
4313 * Spinlock count overflowing soon?
4314 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004315 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4316 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317}
4318EXPORT_SYMBOL(add_preempt_count);
4319
Srinivasa Ds43627582008-02-23 15:24:04 -08004320void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321{
4322 /*
4323 * Underflow?
4324 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004325 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4326 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 /*
4328 * Is the spinlock portion underflowing?
4329 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004330 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4331 !(preempt_count() & PREEMPT_MASK)))
4332 return;
4333
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 preempt_count() -= val;
4335}
4336EXPORT_SYMBOL(sub_preempt_count);
4337
4338#endif
4339
4340/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004341 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004343static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344{
Satyam Sharma838225b2007-10-24 18:23:50 +02004345 struct pt_regs *regs = get_irq_regs();
4346
4347 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4348 prev->comm, prev->pid, preempt_count());
4349
Ingo Molnardd41f592007-07-09 18:51:59 +02004350 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07004351 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02004352 if (irqs_disabled())
4353 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004354
4355 if (regs)
4356 show_regs(regs);
4357 else
4358 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004359}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
Ingo Molnardd41f592007-07-09 18:51:59 +02004361/*
4362 * Various schedule()-time debugging checks and statistics:
4363 */
4364static inline void schedule_debug(struct task_struct *prev)
4365{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004367 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 * schedule() atomically, we ignore that path for now.
4369 * Otherwise, whine if we are scheduling when we should not be.
4370 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02004371 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02004372 __schedule_bug(prev);
4373
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4375
Ingo Molnar2d723762007-10-15 17:00:12 +02004376 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004377#ifdef CONFIG_SCHEDSTATS
4378 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004379 schedstat_inc(this_rq(), bkl_count);
4380 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004381 }
4382#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004383}
4384
4385/*
4386 * Pick up the highest-prio task:
4387 */
4388static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004389pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004390{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004391 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004392 struct task_struct *p;
4393
4394 /*
4395 * Optimization: we know that if all tasks are in
4396 * the fair class we can call that function directly:
4397 */
4398 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004399 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004400 if (likely(p))
4401 return p;
4402 }
4403
4404 class = sched_class_highest;
4405 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004406 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004407 if (p)
4408 return p;
4409 /*
4410 * Will never be NULL as the idle class always
4411 * returns a non-NULL p:
4412 */
4413 class = class->next;
4414 }
4415}
4416
4417/*
4418 * schedule() is the main scheduler function.
4419 */
4420asmlinkage void __sched schedule(void)
4421{
4422 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004423 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004424 struct rq *rq;
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004425 int cpu, hrtick = sched_feat(HRTICK);
Ingo Molnardd41f592007-07-09 18:51:59 +02004426
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427need_resched:
4428 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004429 cpu = smp_processor_id();
4430 rq = cpu_rq(cpu);
4431 rcu_qsctr_inc(cpu);
4432 prev = rq->curr;
4433 switch_count = &prev->nivcsw;
4434
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 release_kernel_lock(prev);
4436need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437
Ingo Molnardd41f592007-07-09 18:51:59 +02004438 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004440 if (hrtick)
4441 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004442
Ingo Molnar1e819952007-10-15 17:00:13 +02004443 /*
4444 * Do the rq-clock update outside the rq lock:
4445 */
4446 local_irq_disable();
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004447 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004448 spin_lock(&rq->lock);
4449 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450
Ingo Molnardd41f592007-07-09 18:51:59 +02004451 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Oleg Nesterov16882c12008-06-08 21:20:41 +04004452 if (unlikely(signal_pending_state(prev->state, prev)))
Ingo Molnardd41f592007-07-09 18:51:59 +02004453 prev->state = TASK_RUNNING;
Oleg Nesterov16882c12008-06-08 21:20:41 +04004454 else
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004455 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004456 switch_count = &prev->nvcsw;
4457 }
4458
Steven Rostedt9a897c52008-01-25 21:08:22 +01004459#ifdef CONFIG_SMP
4460 if (prev->sched_class->pre_schedule)
4461 prev->sched_class->pre_schedule(rq, prev);
4462#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004463
Ingo Molnardd41f592007-07-09 18:51:59 +02004464 if (unlikely(!rq->nr_running))
4465 idle_balance(cpu, rq);
4466
Ingo Molnar31ee5292007-08-09 11:16:49 +02004467 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004468 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004471 sched_info_switch(prev, next);
4472
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 rq->nr_switches++;
4474 rq->curr = next;
4475 ++*switch_count;
4476
Ingo Molnardd41f592007-07-09 18:51:59 +02004477 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004478 /*
4479 * the context switch might have flipped the stack from under
4480 * us, hence refresh the local variables.
4481 */
4482 cpu = smp_processor_id();
4483 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484 } else
4485 spin_unlock_irq(&rq->lock);
4486
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004487 if (hrtick)
4488 hrtick_set(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004489
4490 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004492
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493 preempt_enable_no_resched();
4494 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4495 goto need_resched;
4496}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497EXPORT_SYMBOL(schedule);
4498
4499#ifdef CONFIG_PREEMPT
4500/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004501 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004502 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 * occur there and call schedule directly.
4504 */
4505asmlinkage void __sched preempt_schedule(void)
4506{
4507 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004508
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 /*
4510 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004511 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004513 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 return;
4515
Andi Kleen3a5c3592007-10-15 17:00:14 +02004516 do {
4517 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004518 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004519 sub_preempt_count(PREEMPT_ACTIVE);
4520
4521 /*
4522 * Check again in case we missed a preemption opportunity
4523 * between schedule and now.
4524 */
4525 barrier();
4526 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528EXPORT_SYMBOL(preempt_schedule);
4529
4530/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004531 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 * off of irq context.
4533 * Note, that this is called and return with irqs disabled. This will
4534 * protect us against recursive calling from irq.
4535 */
4536asmlinkage void __sched preempt_schedule_irq(void)
4537{
4538 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004539
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004540 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 BUG_ON(ti->preempt_count || !irqs_disabled());
4542
Andi Kleen3a5c3592007-10-15 17:00:14 +02004543 do {
4544 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004545 local_irq_enable();
4546 schedule();
4547 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004548 sub_preempt_count(PREEMPT_ACTIVE);
4549
4550 /*
4551 * Check again in case we missed a preemption opportunity
4552 * between schedule and now.
4553 */
4554 barrier();
4555 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556}
4557
4558#endif /* CONFIG_PREEMPT */
4559
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004560int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4561 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004563 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565EXPORT_SYMBOL(default_wake_function);
4566
4567/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004568 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4569 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 * number) then we wake all the non-exclusive tasks and one exclusive task.
4571 *
4572 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004573 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4575 */
4576static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4577 int nr_exclusive, int sync, void *key)
4578{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004579 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004581 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004582 unsigned flags = curr->flags;
4583
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004585 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 break;
4587 }
4588}
4589
4590/**
4591 * __wake_up - wake up threads blocked on a waitqueue.
4592 * @q: the waitqueue
4593 * @mode: which threads
4594 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004595 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004597void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004598 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599{
4600 unsigned long flags;
4601
4602 spin_lock_irqsave(&q->lock, flags);
4603 __wake_up_common(q, mode, nr_exclusive, 0, key);
4604 spin_unlock_irqrestore(&q->lock, flags);
4605}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606EXPORT_SYMBOL(__wake_up);
4607
4608/*
4609 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4610 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004611void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612{
4613 __wake_up_common(q, mode, 1, 0, NULL);
4614}
4615
4616/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004617 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 * @q: the waitqueue
4619 * @mode: which threads
4620 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4621 *
4622 * The sync wakeup differs that the waker knows that it will schedule
4623 * away soon, so while the target thread will be woken up, it will not
4624 * be migrated to another CPU - ie. the two threads are 'synchronized'
4625 * with each other. This can prevent needless bouncing between CPUs.
4626 *
4627 * On UP it can prevent extra preemption.
4628 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004629void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004630__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631{
4632 unsigned long flags;
4633 int sync = 1;
4634
4635 if (unlikely(!q))
4636 return;
4637
4638 if (unlikely(!nr_exclusive))
4639 sync = 0;
4640
4641 spin_lock_irqsave(&q->lock, flags);
4642 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4643 spin_unlock_irqrestore(&q->lock, flags);
4644}
4645EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4646
Ingo Molnarb15136e2007-10-24 18:23:48 +02004647void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648{
4649 unsigned long flags;
4650
4651 spin_lock_irqsave(&x->wait.lock, flags);
4652 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004653 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 spin_unlock_irqrestore(&x->wait.lock, flags);
4655}
4656EXPORT_SYMBOL(complete);
4657
Ingo Molnarb15136e2007-10-24 18:23:48 +02004658void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659{
4660 unsigned long flags;
4661
4662 spin_lock_irqsave(&x->wait.lock, flags);
4663 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004664 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 spin_unlock_irqrestore(&x->wait.lock, flags);
4666}
4667EXPORT_SYMBOL(complete_all);
4668
Andi Kleen8cbbe862007-10-15 17:00:14 +02004669static inline long __sched
4670do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 if (!x->done) {
4673 DECLARE_WAITQUEUE(wait, current);
4674
4675 wait.flags |= WQ_FLAG_EXCLUSIVE;
4676 __add_wait_queue_tail(&x->wait, &wait);
4677 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004678 if ((state == TASK_INTERRUPTIBLE &&
4679 signal_pending(current)) ||
4680 (state == TASK_KILLABLE &&
4681 fatal_signal_pending(current))) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04004682 timeout = -ERESTARTSYS;
4683 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004684 }
4685 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004687 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004689 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004691 if (!x->done)
4692 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 }
4694 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04004695 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004696}
4697
4698static long __sched
4699wait_for_common(struct completion *x, long timeout, int state)
4700{
4701 might_sleep();
4702
4703 spin_lock_irq(&x->wait.lock);
4704 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004706 return timeout;
4707}
4708
Ingo Molnarb15136e2007-10-24 18:23:48 +02004709void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004710{
4711 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712}
4713EXPORT_SYMBOL(wait_for_completion);
4714
Ingo Molnarb15136e2007-10-24 18:23:48 +02004715unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4717{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004718 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719}
4720EXPORT_SYMBOL(wait_for_completion_timeout);
4721
Andi Kleen8cbbe862007-10-15 17:00:14 +02004722int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723{
Andi Kleen51e97992007-10-18 21:32:55 +02004724 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4725 if (t == -ERESTARTSYS)
4726 return t;
4727 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728}
4729EXPORT_SYMBOL(wait_for_completion_interruptible);
4730
Ingo Molnarb15136e2007-10-24 18:23:48 +02004731unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732wait_for_completion_interruptible_timeout(struct completion *x,
4733 unsigned long timeout)
4734{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004735 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736}
4737EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4738
Matthew Wilcox009e5772007-12-06 12:29:54 -05004739int __sched wait_for_completion_killable(struct completion *x)
4740{
4741 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4742 if (t == -ERESTARTSYS)
4743 return t;
4744 return 0;
4745}
4746EXPORT_SYMBOL(wait_for_completion_killable);
4747
Andi Kleen8cbbe862007-10-15 17:00:14 +02004748static long __sched
4749sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004750{
4751 unsigned long flags;
4752 wait_queue_t wait;
4753
4754 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755
Andi Kleen8cbbe862007-10-15 17:00:14 +02004756 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
Andi Kleen8cbbe862007-10-15 17:00:14 +02004758 spin_lock_irqsave(&q->lock, flags);
4759 __add_wait_queue(q, &wait);
4760 spin_unlock(&q->lock);
4761 timeout = schedule_timeout(timeout);
4762 spin_lock_irq(&q->lock);
4763 __remove_wait_queue(q, &wait);
4764 spin_unlock_irqrestore(&q->lock, flags);
4765
4766 return timeout;
4767}
4768
4769void __sched interruptible_sleep_on(wait_queue_head_t *q)
4770{
4771 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773EXPORT_SYMBOL(interruptible_sleep_on);
4774
Ingo Molnar0fec1712007-07-09 18:52:01 +02004775long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004776interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004778 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4781
Ingo Molnar0fec1712007-07-09 18:52:01 +02004782void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004784 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786EXPORT_SYMBOL(sleep_on);
4787
Ingo Molnar0fec1712007-07-09 18:52:01 +02004788long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004790 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792EXPORT_SYMBOL(sleep_on_timeout);
4793
Ingo Molnarb29739f2006-06-27 02:54:51 -07004794#ifdef CONFIG_RT_MUTEXES
4795
4796/*
4797 * rt_mutex_setprio - set the current priority of a task
4798 * @p: task
4799 * @prio: prio value (kernel-internal form)
4800 *
4801 * This function changes the 'effective' priority of a task. It does
4802 * not touch ->normal_prio like __setscheduler().
4803 *
4804 * Used by the rt_mutex code to implement priority inheritance logic.
4805 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004806void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004807{
4808 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004809 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004810 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004811 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004812
4813 BUG_ON(prio < 0 || prio > MAX_PRIO);
4814
4815 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004816 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004817
Andrew Mortond5f9f942007-05-08 20:27:06 -07004818 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004819 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004820 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004821 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004822 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004823 if (running)
4824 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004825
4826 if (rt_prio(prio))
4827 p->sched_class = &rt_sched_class;
4828 else
4829 p->sched_class = &fair_sched_class;
4830
Ingo Molnarb29739f2006-06-27 02:54:51 -07004831 p->prio = prio;
4832
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004833 if (running)
4834 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004835 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004836 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004837
4838 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004839 }
4840 task_rq_unlock(rq, &flags);
4841}
4842
4843#endif
4844
Ingo Molnar36c8b582006-07-03 00:25:41 -07004845void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846{
Ingo Molnardd41f592007-07-09 18:51:59 +02004847 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004849 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850
4851 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4852 return;
4853 /*
4854 * We have to be careful, if called from sys_setpriority(),
4855 * the task might be in the middle of scheduling on another CPU.
4856 */
4857 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004858 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 /*
4860 * The RT priorities are set via sched_setscheduler(), but we still
4861 * allow the 'normal' nice value to be set - but as expected
4862 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004863 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004865 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 p->static_prio = NICE_TO_PRIO(nice);
4867 goto out_unlock;
4868 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004869 on_rq = p->se.on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004870 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004871 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004874 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004875 old_prio = p->prio;
4876 p->prio = effective_prio(p);
4877 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878
Ingo Molnardd41f592007-07-09 18:51:59 +02004879 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004880 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004882 * If the task increased its priority or is running and
4883 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004885 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 resched_task(rq->curr);
4887 }
4888out_unlock:
4889 task_rq_unlock(rq, &flags);
4890}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891EXPORT_SYMBOL(set_user_nice);
4892
Matt Mackalle43379f2005-05-01 08:59:00 -07004893/*
4894 * can_nice - check if a task can reduce its nice value
4895 * @p: task
4896 * @nice: nice value
4897 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004898int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004899{
Matt Mackall024f4742005-08-18 11:24:19 -07004900 /* convert nice value [19,-20] to rlimit style value [1,40] */
4901 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004902
Matt Mackalle43379f2005-05-01 08:59:00 -07004903 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4904 capable(CAP_SYS_NICE));
4905}
4906
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907#ifdef __ARCH_WANT_SYS_NICE
4908
4909/*
4910 * sys_nice - change the priority of the current process.
4911 * @increment: priority increment
4912 *
4913 * sys_setpriority is a more generic, but much slower function that
4914 * does similar things.
4915 */
4916asmlinkage long sys_nice(int increment)
4917{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004918 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919
4920 /*
4921 * Setpriority might change our priority at the same moment.
4922 * We don't have to worry. Conceptually one call occurs first
4923 * and we have a single winner.
4924 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004925 if (increment < -40)
4926 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 if (increment > 40)
4928 increment = 40;
4929
4930 nice = PRIO_TO_NICE(current->static_prio) + increment;
4931 if (nice < -20)
4932 nice = -20;
4933 if (nice > 19)
4934 nice = 19;
4935
Matt Mackalle43379f2005-05-01 08:59:00 -07004936 if (increment < 0 && !can_nice(current, nice))
4937 return -EPERM;
4938
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 retval = security_task_setnice(current, nice);
4940 if (retval)
4941 return retval;
4942
4943 set_user_nice(current, nice);
4944 return 0;
4945}
4946
4947#endif
4948
4949/**
4950 * task_prio - return the priority value of a given task.
4951 * @p: the task in question.
4952 *
4953 * This is the priority value as seen by users in /proc.
4954 * RT tasks are offset by -200. Normal tasks are centered
4955 * around 0, value goes from -16 to +15.
4956 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004957int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958{
4959 return p->prio - MAX_RT_PRIO;
4960}
4961
4962/**
4963 * task_nice - return the nice value of a given task.
4964 * @p: the task in question.
4965 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004966int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967{
4968 return TASK_NICE(p);
4969}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004970EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971
4972/**
4973 * idle_cpu - is a given cpu idle currently?
4974 * @cpu: the processor in question.
4975 */
4976int idle_cpu(int cpu)
4977{
4978 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4979}
4980
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981/**
4982 * idle_task - return the idle task for a given cpu.
4983 * @cpu: the processor in question.
4984 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004985struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986{
4987 return cpu_rq(cpu)->idle;
4988}
4989
4990/**
4991 * find_process_by_pid - find a process with a matching PID value.
4992 * @pid: the pid in question.
4993 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004994static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004996 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997}
4998
4999/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005000static void
5001__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002{
Ingo Molnardd41f592007-07-09 18:51:59 +02005003 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005004
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005006 switch (p->policy) {
5007 case SCHED_NORMAL:
5008 case SCHED_BATCH:
5009 case SCHED_IDLE:
5010 p->sched_class = &fair_sched_class;
5011 break;
5012 case SCHED_FIFO:
5013 case SCHED_RR:
5014 p->sched_class = &rt_sched_class;
5015 break;
5016 }
5017
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005019 p->normal_prio = normal_prio(p);
5020 /* we are holding p->pi_lock already */
5021 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005022 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023}
5024
5025/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005026 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027 * @p: the task in question.
5028 * @policy: new policy.
5029 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005030 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005031 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005033int sched_setscheduler(struct task_struct *p, int policy,
5034 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005036 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005038 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005039 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040
Steven Rostedt66e53932006-06-27 02:54:44 -07005041 /* may grab non-irq protected spin_locks */
5042 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043recheck:
5044 /* double check policy once rq lock held */
5045 if (policy < 0)
5046 policy = oldpolicy = p->policy;
5047 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005048 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5049 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005050 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051 /*
5052 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005053 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5054 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 */
5056 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005057 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005058 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005060 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 return -EINVAL;
5062
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005063 /*
5064 * Allow unprivileged RT tasks to decrease priority:
5065 */
5066 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005067 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005068 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005069
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005070 if (!lock_task_sighand(p, &flags))
5071 return -ESRCH;
5072 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5073 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005074
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005075 /* can't set/change the rt policy */
5076 if (policy != p->policy && !rlim_rtprio)
5077 return -EPERM;
5078
5079 /* can't increase priority */
5080 if (param->sched_priority > p->rt_priority &&
5081 param->sched_priority > rlim_rtprio)
5082 return -EPERM;
5083 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005084 /*
5085 * Like positive nice levels, dont allow tasks to
5086 * move out of SCHED_IDLE either:
5087 */
5088 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5089 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005090
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005091 /* can't change other user's priorities */
5092 if ((current->euid != p->euid) &&
5093 (current->euid != p->uid))
5094 return -EPERM;
5095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005097#ifdef CONFIG_RT_GROUP_SCHED
5098 /*
5099 * Do not allow realtime tasks into groups that have no runtime
5100 * assigned.
5101 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02005102 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005103 return -EPERM;
5104#endif
5105
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 retval = security_task_setscheduler(p, policy, param);
5107 if (retval)
5108 return retval;
5109 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005110 * make sure no PI-waiters arrive (or leave) while we are
5111 * changing the priority of the task:
5112 */
5113 spin_lock_irqsave(&p->pi_lock, flags);
5114 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 * To be able to change p->policy safely, the apropriate
5116 * runqueue lock must be held.
5117 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005118 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 /* recheck policy now with rq lock held */
5120 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5121 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005122 __task_rq_unlock(rq);
5123 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 goto recheck;
5125 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005126 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005127 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005128 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005129 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005130 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005131 if (running)
5132 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02005133
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005135 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02005136
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005137 if (running)
5138 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005139 if (on_rq) {
5140 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005141
5142 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005144 __task_rq_unlock(rq);
5145 spin_unlock_irqrestore(&p->pi_lock, flags);
5146
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005147 rt_mutex_adjust_pi(p);
5148
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 return 0;
5150}
5151EXPORT_SYMBOL_GPL(sched_setscheduler);
5152
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005153static int
5154do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 struct sched_param lparam;
5157 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005158 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159
5160 if (!param || pid < 0)
5161 return -EINVAL;
5162 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5163 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005164
5165 rcu_read_lock();
5166 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005168 if (p != NULL)
5169 retval = sched_setscheduler(p, policy, &lparam);
5170 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005171
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172 return retval;
5173}
5174
5175/**
5176 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5177 * @pid: the pid in question.
5178 * @policy: new policy.
5179 * @param: structure containing the new RT priority.
5180 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005181asmlinkage long
5182sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183{
Jason Baronc21761f2006-01-18 17:43:03 -08005184 /* negative values for policy are not valid */
5185 if (policy < 0)
5186 return -EINVAL;
5187
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 return do_sched_setscheduler(pid, policy, param);
5189}
5190
5191/**
5192 * sys_sched_setparam - set/change the RT priority of a thread
5193 * @pid: the pid in question.
5194 * @param: structure containing the new RT priority.
5195 */
5196asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5197{
5198 return do_sched_setscheduler(pid, -1, param);
5199}
5200
5201/**
5202 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5203 * @pid: the pid in question.
5204 */
5205asmlinkage long sys_sched_getscheduler(pid_t pid)
5206{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005207 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005208 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209
5210 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005211 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212
5213 retval = -ESRCH;
5214 read_lock(&tasklist_lock);
5215 p = find_process_by_pid(pid);
5216 if (p) {
5217 retval = security_task_getscheduler(p);
5218 if (!retval)
5219 retval = p->policy;
5220 }
5221 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 return retval;
5223}
5224
5225/**
5226 * sys_sched_getscheduler - get the RT priority of a thread
5227 * @pid: the pid in question.
5228 * @param: structure containing the RT priority.
5229 */
5230asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5231{
5232 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005233 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005234 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235
5236 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005237 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238
5239 read_lock(&tasklist_lock);
5240 p = find_process_by_pid(pid);
5241 retval = -ESRCH;
5242 if (!p)
5243 goto out_unlock;
5244
5245 retval = security_task_getscheduler(p);
5246 if (retval)
5247 goto out_unlock;
5248
5249 lp.sched_priority = p->rt_priority;
5250 read_unlock(&tasklist_lock);
5251
5252 /*
5253 * This one might sleep, we cannot do it with a spinlock held ...
5254 */
5255 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5256
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 return retval;
5258
5259out_unlock:
5260 read_unlock(&tasklist_lock);
5261 return retval;
5262}
5263
Mike Travisb53e9212008-04-04 18:11:08 -07005264long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07005267 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005268 struct task_struct *p;
5269 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005271 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 read_lock(&tasklist_lock);
5273
5274 p = find_process_by_pid(pid);
5275 if (!p) {
5276 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005277 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278 return -ESRCH;
5279 }
5280
5281 /*
5282 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005283 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284 * usage count and then drop tasklist_lock.
5285 */
5286 get_task_struct(p);
5287 read_unlock(&tasklist_lock);
5288
5289 retval = -EPERM;
5290 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5291 !capable(CAP_SYS_NICE))
5292 goto out_unlock;
5293
David Quigleye7834f82006-06-23 02:03:59 -07005294 retval = security_task_setscheduler(p, 0, NULL);
5295 if (retval)
5296 goto out_unlock;
5297
Mike Travisf9a86fc2008-04-04 18:11:07 -07005298 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005300 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005301 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
Paul Menage8707d8b2007-10-18 23:40:22 -07005303 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005304 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005305 if (!cpus_subset(new_mask, cpus_allowed)) {
5306 /*
5307 * We must have raced with a concurrent cpuset
5308 * update. Just reset the cpus_allowed to the
5309 * cpuset's cpus_allowed
5310 */
5311 new_mask = cpus_allowed;
5312 goto again;
5313 }
5314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315out_unlock:
5316 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005317 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 return retval;
5319}
5320
5321static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5322 cpumask_t *new_mask)
5323{
5324 if (len < sizeof(cpumask_t)) {
5325 memset(new_mask, 0, sizeof(cpumask_t));
5326 } else if (len > sizeof(cpumask_t)) {
5327 len = sizeof(cpumask_t);
5328 }
5329 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5330}
5331
5332/**
5333 * sys_sched_setaffinity - set the cpu affinity of a process
5334 * @pid: pid of the process
5335 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5336 * @user_mask_ptr: user-space pointer to the new cpu mask
5337 */
5338asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5339 unsigned long __user *user_mask_ptr)
5340{
5341 cpumask_t new_mask;
5342 int retval;
5343
5344 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5345 if (retval)
5346 return retval;
5347
Mike Travisb53e9212008-04-04 18:11:08 -07005348 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349}
5350
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351long sched_getaffinity(pid_t pid, cpumask_t *mask)
5352{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005353 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005356 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357 read_lock(&tasklist_lock);
5358
5359 retval = -ESRCH;
5360 p = find_process_by_pid(pid);
5361 if (!p)
5362 goto out_unlock;
5363
David Quigleye7834f82006-06-23 02:03:59 -07005364 retval = security_task_getscheduler(p);
5365 if (retval)
5366 goto out_unlock;
5367
Jack Steiner2f7016d2006-02-01 03:05:18 -08005368 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369
5370out_unlock:
5371 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005372 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373
Ulrich Drepper9531b622007-08-09 11:16:46 +02005374 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375}
5376
5377/**
5378 * sys_sched_getaffinity - get the cpu affinity of a process
5379 * @pid: pid of the process
5380 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5381 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5382 */
5383asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5384 unsigned long __user *user_mask_ptr)
5385{
5386 int ret;
5387 cpumask_t mask;
5388
5389 if (len < sizeof(cpumask_t))
5390 return -EINVAL;
5391
5392 ret = sched_getaffinity(pid, &mask);
5393 if (ret < 0)
5394 return ret;
5395
5396 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5397 return -EFAULT;
5398
5399 return sizeof(cpumask_t);
5400}
5401
5402/**
5403 * sys_sched_yield - yield the current processor to other threads.
5404 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005405 * This function yields the current CPU to other tasks. If there are no
5406 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407 */
5408asmlinkage long sys_sched_yield(void)
5409{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005410 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411
Ingo Molnar2d723762007-10-15 17:00:12 +02005412 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005413 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
5415 /*
5416 * Since we are going to call schedule() anyway, there's
5417 * no need to preempt or enable interrupts:
5418 */
5419 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005420 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 _raw_spin_unlock(&rq->lock);
5422 preempt_enable_no_resched();
5423
5424 schedule();
5425
5426 return 0;
5427}
5428
Andrew Mortone7b38402006-06-30 01:56:00 -07005429static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005431#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5432 __might_sleep(__FILE__, __LINE__);
5433#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005434 /*
5435 * The BKS might be reacquired before we have dropped
5436 * PREEMPT_ACTIVE, which could trigger a second
5437 * cond_resched() call.
5438 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 do {
5440 add_preempt_count(PREEMPT_ACTIVE);
5441 schedule();
5442 sub_preempt_count(PREEMPT_ACTIVE);
5443 } while (need_resched());
5444}
5445
Herbert Xu02b67cc32008-01-25 21:08:28 +01005446int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447{
Ingo Molnar94142322006-12-29 16:48:13 -08005448 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5449 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 __cond_resched();
5451 return 1;
5452 }
5453 return 0;
5454}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005455EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456
5457/*
5458 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5459 * call schedule, and on return reacquire the lock.
5460 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005461 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462 * operations here to prevent schedule() from being called twice (once via
5463 * spin_unlock(), once by hand).
5464 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005465int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466{
Nick Piggin95c354f2008-01-30 13:31:20 +01005467 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005468 int ret = 0;
5469
Nick Piggin95c354f2008-01-30 13:31:20 +01005470 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005472 if (resched && need_resched())
5473 __cond_resched();
5474 else
5475 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005476 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005479 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481EXPORT_SYMBOL(cond_resched_lock);
5482
5483int __sched cond_resched_softirq(void)
5484{
5485 BUG_ON(!in_softirq());
5486
Ingo Molnar94142322006-12-29 16:48:13 -08005487 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005488 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489 __cond_resched();
5490 local_bh_disable();
5491 return 1;
5492 }
5493 return 0;
5494}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495EXPORT_SYMBOL(cond_resched_softirq);
5496
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497/**
5498 * yield - yield the current processor to other threads.
5499 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005500 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 * thread runnable and calls sys_sched_yield().
5502 */
5503void __sched yield(void)
5504{
5505 set_current_state(TASK_RUNNING);
5506 sys_sched_yield();
5507}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508EXPORT_SYMBOL(yield);
5509
5510/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005511 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512 * that process accounting knows that this is a task in IO wait state.
5513 *
5514 * But don't do that if it is a deliberate, throttling IO wait (this task
5515 * has set its backing_dev_info: the queue against which it should throttle)
5516 */
5517void __sched io_schedule(void)
5518{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005519 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005521 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522 atomic_inc(&rq->nr_iowait);
5523 schedule();
5524 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005525 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527EXPORT_SYMBOL(io_schedule);
5528
5529long __sched io_schedule_timeout(long timeout)
5530{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005531 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 long ret;
5533
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005534 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535 atomic_inc(&rq->nr_iowait);
5536 ret = schedule_timeout(timeout);
5537 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005538 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539 return ret;
5540}
5541
5542/**
5543 * sys_sched_get_priority_max - return maximum RT priority.
5544 * @policy: scheduling class.
5545 *
5546 * this syscall returns the maximum rt_priority that can be used
5547 * by a given scheduling class.
5548 */
5549asmlinkage long sys_sched_get_priority_max(int policy)
5550{
5551 int ret = -EINVAL;
5552
5553 switch (policy) {
5554 case SCHED_FIFO:
5555 case SCHED_RR:
5556 ret = MAX_USER_RT_PRIO-1;
5557 break;
5558 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005559 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005560 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561 ret = 0;
5562 break;
5563 }
5564 return ret;
5565}
5566
5567/**
5568 * sys_sched_get_priority_min - return minimum RT priority.
5569 * @policy: scheduling class.
5570 *
5571 * this syscall returns the minimum rt_priority that can be used
5572 * by a given scheduling class.
5573 */
5574asmlinkage long sys_sched_get_priority_min(int policy)
5575{
5576 int ret = -EINVAL;
5577
5578 switch (policy) {
5579 case SCHED_FIFO:
5580 case SCHED_RR:
5581 ret = 1;
5582 break;
5583 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005584 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005585 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586 ret = 0;
5587 }
5588 return ret;
5589}
5590
5591/**
5592 * sys_sched_rr_get_interval - return the default timeslice of a process.
5593 * @pid: pid of the process.
5594 * @interval: userspace pointer to the timeslice value.
5595 *
5596 * this syscall writes the default timeslice value of a given process
5597 * into the user-space timespec buffer. A value of '0' means infinity.
5598 */
5599asmlinkage
5600long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5601{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005602 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005603 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005604 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606
5607 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005608 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609
5610 retval = -ESRCH;
5611 read_lock(&tasklist_lock);
5612 p = find_process_by_pid(pid);
5613 if (!p)
5614 goto out_unlock;
5615
5616 retval = security_task_getscheduler(p);
5617 if (retval)
5618 goto out_unlock;
5619
Ingo Molnar77034932007-12-04 17:04:39 +01005620 /*
5621 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5622 * tasks that are on an otherwise idle runqueue:
5623 */
5624 time_slice = 0;
5625 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005626 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005627 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005628 struct sched_entity *se = &p->se;
5629 unsigned long flags;
5630 struct rq *rq;
5631
5632 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005633 if (rq->cfs.load.weight)
5634 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005635 task_rq_unlock(rq, &flags);
5636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005638 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005641
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642out_unlock:
5643 read_unlock(&tasklist_lock);
5644 return retval;
5645}
5646
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005647static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005648
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005649void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005652 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005655 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005656 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005657#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005659 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005661 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662#else
5663 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005664 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005666 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667#endif
5668#ifdef CONFIG_DEBUG_STACK_USAGE
5669 {
Al Viro10ebffd2005-11-13 16:06:56 -08005670 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671 while (!*n)
5672 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005673 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674 }
5675#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005676 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005677 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005679 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680}
5681
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005682void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005684 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685
Ingo Molnar4bd77322007-07-11 21:21:47 +02005686#if BITS_PER_LONG == 32
5687 printk(KERN_INFO
5688 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005690 printk(KERN_INFO
5691 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692#endif
5693 read_lock(&tasklist_lock);
5694 do_each_thread(g, p) {
5695 /*
5696 * reset the NMI-timeout, listing all files on a slow
5697 * console might take alot of time:
5698 */
5699 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005700 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005701 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702 } while_each_thread(g, p);
5703
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005704 touch_all_softlockup_watchdogs();
5705
Ingo Molnardd41f592007-07-09 18:51:59 +02005706#ifdef CONFIG_SCHED_DEBUG
5707 sysrq_sched_debug_show();
5708#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005710 /*
5711 * Only show locks if all tasks are dumped:
5712 */
5713 if (state_filter == -1)
5714 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715}
5716
Ingo Molnar1df21052007-07-09 18:51:58 +02005717void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5718{
Ingo Molnardd41f592007-07-09 18:51:59 +02005719 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005720}
5721
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005722/**
5723 * init_idle - set up an idle thread for a given CPU
5724 * @idle: task in question
5725 * @cpu: cpu the idle task belongs to
5726 *
5727 * NOTE: this function does not set the idle thread's NEED_RESCHED
5728 * flag, to make booting more robust.
5729 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005730void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005732 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733 unsigned long flags;
5734
Ingo Molnardd41f592007-07-09 18:51:59 +02005735 __sched_fork(idle);
5736 idle->se.exec_start = sched_clock();
5737
Ingo Molnarb29739f2006-06-27 02:54:51 -07005738 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005740 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741
5742 spin_lock_irqsave(&rq->lock, flags);
5743 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005744#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5745 idle->oncpu = 1;
5746#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 spin_unlock_irqrestore(&rq->lock, flags);
5748
5749 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005750#if defined(CONFIG_PREEMPT)
5751 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5752#else
Al Viroa1261f542005-11-13 16:06:55 -08005753 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005754#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005755 /*
5756 * The idle tasks have their own, simple scheduling class:
5757 */
5758 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759}
5760
5761/*
5762 * In a system that switches off the HZ timer nohz_cpu_mask
5763 * indicates which cpus entered this state. This is used
5764 * in the rcu update to wait only for active cpus. For system
5765 * which do not switch off the HZ timer nohz_cpu_mask should
5766 * always be CPU_MASK_NONE.
5767 */
5768cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5769
Ingo Molnar19978ca2007-11-09 22:39:38 +01005770/*
5771 * Increase the granularity value when there are more CPUs,
5772 * because with more CPUs the 'effective latency' as visible
5773 * to users decreases. But the relationship is not linear,
5774 * so pick a second-best guess by going with the log2 of the
5775 * number of CPUs.
5776 *
5777 * This idea comes from the SD scheduler of Con Kolivas:
5778 */
5779static inline void sched_init_granularity(void)
5780{
5781 unsigned int factor = 1 + ilog2(num_online_cpus());
5782 const unsigned long limit = 200000000;
5783
5784 sysctl_sched_min_granularity *= factor;
5785 if (sysctl_sched_min_granularity > limit)
5786 sysctl_sched_min_granularity = limit;
5787
5788 sysctl_sched_latency *= factor;
5789 if (sysctl_sched_latency > limit)
5790 sysctl_sched_latency = limit;
5791
5792 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005793}
5794
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795#ifdef CONFIG_SMP
5796/*
5797 * This is how migration works:
5798 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005799 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800 * runqueue and wake up that CPU's migration thread.
5801 * 2) we down() the locked semaphore => thread blocks.
5802 * 3) migration thread wakes up (implicitly it forces the migrated
5803 * thread off the CPU)
5804 * 4) it gets the migration request and checks whether the migrated
5805 * task is still in the wrong runqueue.
5806 * 5) if it's in the wrong runqueue then the migration thread removes
5807 * it and puts it into the right queue.
5808 * 6) migration thread up()s the semaphore.
5809 * 7) we wake up and the migration is done.
5810 */
5811
5812/*
5813 * Change a given task's CPU affinity. Migrate the thread to a
5814 * proper CPU and schedule it away if the CPU it's executing on
5815 * is removed from the allowed bitmask.
5816 *
5817 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005818 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 * call is not atomic; no spinlocks may be held.
5820 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005821int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005823 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005825 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005826 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827
5828 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005829 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 ret = -EINVAL;
5831 goto out;
5832 }
5833
David Rientjes9985b0b2008-06-05 12:57:11 -07005834 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current &&
5835 !cpus_equal(p->cpus_allowed, *new_mask))) {
5836 ret = -EINVAL;
5837 goto out;
5838 }
5839
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005840 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005841 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005842 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005843 p->cpus_allowed = *new_mask;
5844 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005845 }
5846
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005848 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849 goto out;
5850
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005851 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852 /* Need help from migration thread: drop lock and wait. */
5853 task_rq_unlock(rq, &flags);
5854 wake_up_process(rq->migration_thread);
5855 wait_for_completion(&req.done);
5856 tlb_migrate_finish(p->mm);
5857 return 0;
5858 }
5859out:
5860 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005861
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 return ret;
5863}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005864EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865
5866/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005867 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868 * this because either it can't run here any more (set_cpus_allowed()
5869 * away from this CPU, or CPU going down), or because we're
5870 * attempting to rebalance this task on exec (sched_exec).
5871 *
5872 * So we race with normal scheduler movements, but that's OK, as long
5873 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005874 *
5875 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005877static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005879 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005880 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881
5882 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005883 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884
5885 rq_src = cpu_rq(src_cpu);
5886 rq_dest = cpu_rq(dest_cpu);
5887
5888 double_rq_lock(rq_src, rq_dest);
5889 /* Already moved. */
5890 if (task_cpu(p) != src_cpu)
5891 goto out;
5892 /* Affinity changed (again). */
5893 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5894 goto out;
5895
Ingo Molnardd41f592007-07-09 18:51:59 +02005896 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005897 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005898 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005899
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005901 if (on_rq) {
5902 activate_task(rq_dest, p, 0);
5903 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005905 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906out:
5907 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005908 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909}
5910
5911/*
5912 * migration_thread - this is a highprio system thread that performs
5913 * thread migration by bumping thread off CPU then 'pushing' onto
5914 * another runqueue.
5915 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005916static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005919 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920
5921 rq = cpu_rq(cpu);
5922 BUG_ON(rq->migration_thread != current);
5923
5924 set_current_state(TASK_INTERRUPTIBLE);
5925 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005926 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 spin_lock_irq(&rq->lock);
5930
5931 if (cpu_is_offline(cpu)) {
5932 spin_unlock_irq(&rq->lock);
5933 goto wait_to_die;
5934 }
5935
5936 if (rq->active_balance) {
5937 active_load_balance(rq, cpu);
5938 rq->active_balance = 0;
5939 }
5940
5941 head = &rq->migration_queue;
5942
5943 if (list_empty(head)) {
5944 spin_unlock_irq(&rq->lock);
5945 schedule();
5946 set_current_state(TASK_INTERRUPTIBLE);
5947 continue;
5948 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005949 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950 list_del_init(head->next);
5951
Nick Piggin674311d2005-06-25 14:57:27 -07005952 spin_unlock(&rq->lock);
5953 __migrate_task(req->task, cpu, req->dest_cpu);
5954 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955
5956 complete(&req->done);
5957 }
5958 __set_current_state(TASK_RUNNING);
5959 return 0;
5960
5961wait_to_die:
5962 /* Wait for kthread_stop */
5963 set_current_state(TASK_INTERRUPTIBLE);
5964 while (!kthread_should_stop()) {
5965 schedule();
5966 set_current_state(TASK_INTERRUPTIBLE);
5967 }
5968 __set_current_state(TASK_RUNNING);
5969 return 0;
5970}
5971
5972#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005973
5974static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5975{
5976 int ret;
5977
5978 local_irq_disable();
5979 ret = __migrate_task(p, src_cpu, dest_cpu);
5980 local_irq_enable();
5981 return ret;
5982}
5983
Kirill Korotaev054b9102006-12-10 02:20:11 -08005984/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005985 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005986 * NOTE: interrupts should be disabled by the caller
5987 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005988static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005990 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005992 struct rq *rq;
5993 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994
Andi Kleen3a5c3592007-10-15 17:00:14 +02005995 do {
5996 /* On same node? */
5997 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5998 cpus_and(mask, mask, p->cpus_allowed);
5999 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000
Andi Kleen3a5c3592007-10-15 17:00:14 +02006001 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07006002 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006003 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
Andi Kleen3a5c3592007-10-15 17:00:14 +02006005 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07006006 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07006007 cpumask_t cpus_allowed;
6008
6009 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd642007-10-18 23:40:46 -07006010 /*
6011 * Try to stay on the same cpuset, where the
6012 * current cpuset may be a subset of all cpus.
6013 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006014 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07006015 * called within calls to cpuset_lock/cpuset_unlock.
6016 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02006017 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07006018 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006019 dest_cpu = any_online_cpu(p->cpus_allowed);
6020 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021
Andi Kleen3a5c3592007-10-15 17:00:14 +02006022 /*
6023 * Don't tell them about moving exiting tasks or
6024 * kernel threads (both mm NULL), since they never
6025 * leave kernel.
6026 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006027 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006028 printk(KERN_INFO "process %d (%s) no "
6029 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006030 task_pid_nr(p), p->comm, dead_cpu);
6031 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006032 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006033 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034}
6035
6036/*
6037 * While a dead CPU has no uninterruptible tasks queued at this point,
6038 * it might still have a nonzero ->nr_uninterruptible counter, because
6039 * for performance reasons the counter is not stricly tracking tasks to
6040 * their home CPUs. So we just add the counter to another CPU's counter,
6041 * to keep the global sum constant after CPU-down:
6042 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006043static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044{
Mike Travis7c16ec52008-04-04 18:11:11 -07006045 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046 unsigned long flags;
6047
6048 local_irq_save(flags);
6049 double_rq_lock(rq_src, rq_dest);
6050 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6051 rq_src->nr_uninterruptible = 0;
6052 double_rq_unlock(rq_src, rq_dest);
6053 local_irq_restore(flags);
6054}
6055
6056/* Run through task list and migrate tasks from the dead cpu. */
6057static void migrate_live_tasks(int src_cpu)
6058{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006059 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006061 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062
Ingo Molnar48f24c42006-07-03 00:25:40 -07006063 do_each_thread(t, p) {
6064 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065 continue;
6066
Ingo Molnar48f24c42006-07-03 00:25:40 -07006067 if (task_cpu(p) == src_cpu)
6068 move_task_off_dead_cpu(src_cpu, p);
6069 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006071 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072}
6073
Ingo Molnardd41f592007-07-09 18:51:59 +02006074/*
6075 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006076 * It does so by boosting its priority to highest possible.
6077 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078 */
6079void sched_idle_next(void)
6080{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006081 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006082 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083 struct task_struct *p = rq->idle;
6084 unsigned long flags;
6085
6086 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006087 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088
Ingo Molnar48f24c42006-07-03 00:25:40 -07006089 /*
6090 * Strictly not necessary since rest of the CPUs are stopped by now
6091 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092 */
6093 spin_lock_irqsave(&rq->lock, flags);
6094
Ingo Molnardd41f592007-07-09 18:51:59 +02006095 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006096
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006097 update_rq_clock(rq);
6098 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099
6100 spin_unlock_irqrestore(&rq->lock, flags);
6101}
6102
Ingo Molnar48f24c42006-07-03 00:25:40 -07006103/*
6104 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105 * offline.
6106 */
6107void idle_task_exit(void)
6108{
6109 struct mm_struct *mm = current->active_mm;
6110
6111 BUG_ON(cpu_online(smp_processor_id()));
6112
6113 if (mm != &init_mm)
6114 switch_mm(mm, &init_mm, current);
6115 mmdrop(mm);
6116}
6117
Kirill Korotaev054b9102006-12-10 02:20:11 -08006118/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006119static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006121 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122
6123 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006124 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125
6126 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006127 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128
Ingo Molnar48f24c42006-07-03 00:25:40 -07006129 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130
6131 /*
6132 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006133 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134 * fine.
6135 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006136 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006137 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006138 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139
Ingo Molnar48f24c42006-07-03 00:25:40 -07006140 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141}
6142
6143/* release_task() removes task from tasklist, so we won't find dead tasks. */
6144static void migrate_dead_tasks(unsigned int dead_cpu)
6145{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006146 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006147 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148
Ingo Molnardd41f592007-07-09 18:51:59 +02006149 for ( ; ; ) {
6150 if (!rq->nr_running)
6151 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006152 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006153 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006154 if (!next)
6155 break;
6156 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006157
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158 }
6159}
6160#endif /* CONFIG_HOTPLUG_CPU */
6161
Nick Piggine692ab52007-07-26 13:40:43 +02006162#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6163
6164static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006165 {
6166 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006167 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006168 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006169 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006170};
6171
6172static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006173 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006174 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006175 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006176 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006177 .child = sd_ctl_dir,
6178 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006179 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006180};
6181
6182static struct ctl_table *sd_alloc_ctl_entry(int n)
6183{
6184 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006185 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006186
Nick Piggine692ab52007-07-26 13:40:43 +02006187 return entry;
6188}
6189
Milton Miller6382bc92007-10-15 17:00:19 +02006190static void sd_free_ctl_entry(struct ctl_table **tablep)
6191{
Milton Millercd7900762007-10-17 16:55:11 +02006192 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006193
Milton Millercd7900762007-10-17 16:55:11 +02006194 /*
6195 * In the intermediate directories, both the child directory and
6196 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006197 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02006198 * static strings and all have proc handlers.
6199 */
6200 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006201 if (entry->child)
6202 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02006203 if (entry->proc_handler == NULL)
6204 kfree(entry->procname);
6205 }
Milton Miller6382bc92007-10-15 17:00:19 +02006206
6207 kfree(*tablep);
6208 *tablep = NULL;
6209}
6210
Nick Piggine692ab52007-07-26 13:40:43 +02006211static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006212set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006213 const char *procname, void *data, int maxlen,
6214 mode_t mode, proc_handler *proc_handler)
6215{
Nick Piggine692ab52007-07-26 13:40:43 +02006216 entry->procname = procname;
6217 entry->data = data;
6218 entry->maxlen = maxlen;
6219 entry->mode = mode;
6220 entry->proc_handler = proc_handler;
6221}
6222
6223static struct ctl_table *
6224sd_alloc_ctl_domain_table(struct sched_domain *sd)
6225{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006226 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02006227
Milton Millerad1cdc12007-10-15 17:00:19 +02006228 if (table == NULL)
6229 return NULL;
6230
Alexey Dobriyane0361852007-08-09 11:16:46 +02006231 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006232 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006233 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006234 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006235 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006236 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006237 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006238 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006239 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006240 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006241 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006242 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006243 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006244 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006245 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006246 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006247 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006248 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006249 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006250 &sd->cache_nice_tries,
6251 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006252 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006253 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02006254 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006255
6256 return table;
6257}
6258
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006259static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006260{
6261 struct ctl_table *entry, *table;
6262 struct sched_domain *sd;
6263 int domain_num = 0, i;
6264 char buf[32];
6265
6266 for_each_domain(cpu, sd)
6267 domain_num++;
6268 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006269 if (table == NULL)
6270 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006271
6272 i = 0;
6273 for_each_domain(cpu, sd) {
6274 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006275 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006276 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006277 entry->child = sd_alloc_ctl_domain_table(sd);
6278 entry++;
6279 i++;
6280 }
6281 return table;
6282}
6283
6284static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006285static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006286{
6287 int i, cpu_num = num_online_cpus();
6288 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6289 char buf[32];
6290
Milton Miller73785472007-10-24 18:23:48 +02006291 WARN_ON(sd_ctl_dir[0].child);
6292 sd_ctl_dir[0].child = entry;
6293
Milton Millerad1cdc12007-10-15 17:00:19 +02006294 if (entry == NULL)
6295 return;
6296
Milton Miller97b6ea72007-10-15 17:00:19 +02006297 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006298 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006299 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006300 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006301 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006302 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006303 }
Milton Miller73785472007-10-24 18:23:48 +02006304
6305 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006306 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6307}
Milton Miller6382bc92007-10-15 17:00:19 +02006308
Milton Miller73785472007-10-24 18:23:48 +02006309/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006310static void unregister_sched_domain_sysctl(void)
6311{
Milton Miller73785472007-10-24 18:23:48 +02006312 if (sd_sysctl_header)
6313 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006314 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006315 if (sd_ctl_dir[0].child)
6316 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006317}
Nick Piggine692ab52007-07-26 13:40:43 +02006318#else
Milton Miller6382bc92007-10-15 17:00:19 +02006319static void register_sched_domain_sysctl(void)
6320{
6321}
6322static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006323{
6324}
6325#endif
6326
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006327static void set_rq_online(struct rq *rq)
6328{
6329 if (!rq->online) {
6330 const struct sched_class *class;
6331
6332 cpu_set(rq->cpu, rq->rd->online);
6333 rq->online = 1;
6334
6335 for_each_class(class) {
6336 if (class->rq_online)
6337 class->rq_online(rq);
6338 }
6339 }
6340}
6341
6342static void set_rq_offline(struct rq *rq)
6343{
6344 if (rq->online) {
6345 const struct sched_class *class;
6346
6347 for_each_class(class) {
6348 if (class->rq_offline)
6349 class->rq_offline(rq);
6350 }
6351
6352 cpu_clear(rq->cpu, rq->rd->online);
6353 rq->online = 0;
6354 }
6355}
6356
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357/*
6358 * migration_call - callback that gets triggered when a CPU is added.
6359 * Here we can start up the necessary migration thread for the new CPU.
6360 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006361static int __cpuinit
6362migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006365 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006367 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368
6369 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006370
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006372 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006373 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374 if (IS_ERR(p))
6375 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376 kthread_bind(p, cpu);
6377 /* Must be high prio: stop_machine expects to yield to it. */
6378 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006379 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380 task_rq_unlock(rq, &flags);
6381 cpu_rq(cpu)->migration_thread = p;
6382 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006383
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006385 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006386 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006388
6389 /* Update our root-domain */
6390 rq = cpu_rq(cpu);
6391 spin_lock_irqsave(&rq->lock, flags);
6392 if (rq->rd) {
6393 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006394
6395 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006396 }
6397 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006399
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400#ifdef CONFIG_HOTPLUG_CPU
6401 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006402 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006403 if (!cpu_rq(cpu)->migration_thread)
6404 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006405 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006406 kthread_bind(cpu_rq(cpu)->migration_thread,
6407 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408 kthread_stop(cpu_rq(cpu)->migration_thread);
6409 cpu_rq(cpu)->migration_thread = NULL;
6410 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006411
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006413 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006414 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415 migrate_live_tasks(cpu);
6416 rq = cpu_rq(cpu);
6417 kthread_stop(rq->migration_thread);
6418 rq->migration_thread = NULL;
6419 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006420 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006421 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006422 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006424 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6425 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006427 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006428 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429 migrate_nr_uninterruptible(rq);
6430 BUG_ON(rq->nr_running != 0);
6431
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006432 /*
6433 * No need to migrate the tasks: it was best-effort if
6434 * they didn't take sched_hotcpu_mutex. Just wake up
6435 * the requestors.
6436 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437 spin_lock_irq(&rq->lock);
6438 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006439 struct migration_req *req;
6440
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006442 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443 list_del_init(&req->list);
6444 complete(&req->done);
6445 }
6446 spin_unlock_irq(&rq->lock);
6447 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006448
Gregory Haskins08f503b2008-03-10 17:59:11 -04006449 case CPU_DYING:
6450 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006451 /* Update our root-domain */
6452 rq = cpu_rq(cpu);
6453 spin_lock_irqsave(&rq->lock, flags);
6454 if (rq->rd) {
6455 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006456 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006457 }
6458 spin_unlock_irqrestore(&rq->lock, flags);
6459 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460#endif
6461 }
6462 return NOTIFY_OK;
6463}
6464
6465/* Register at highest priority so that task migration (migrate_all_tasks)
6466 * happens before everything else.
6467 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006468static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469 .notifier_call = migration_call,
6470 .priority = 10
6471};
6472
Adrian Bunke6fe6642007-11-09 22:39:39 +01006473void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474{
6475 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006476 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006477
6478 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006479 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6480 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6482 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483}
6484#endif
6485
6486#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006487
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006488#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006489
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306490static inline const char *sd_level_to_string(enum sched_domain_level lvl)
6491{
6492 switch (lvl) {
6493 case SD_LV_NONE:
6494 return "NONE";
6495 case SD_LV_SIBLING:
6496 return "SIBLING";
6497 case SD_LV_MC:
6498 return "MC";
6499 case SD_LV_CPU:
6500 return "CPU";
6501 case SD_LV_NODE:
6502 return "NODE";
6503 case SD_LV_ALLNODES:
6504 return "ALLNODES";
6505 case SD_LV_MAX:
6506 return "MAX";
6507
6508 }
6509 return "MAX";
6510}
6511
Mike Travis7c16ec52008-04-04 18:11:11 -07006512static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6513 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006514{
6515 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006516 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006517
Mike Travis434d53b2008-04-04 18:11:04 -07006518 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006519 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006520
6521 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6522
6523 if (!(sd->flags & SD_LOAD_BALANCE)) {
6524 printk("does not load-balance\n");
6525 if (sd->parent)
6526 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6527 " has parent");
6528 return -1;
6529 }
6530
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306531 printk(KERN_CONT "span %s level %s\n",
6532 str, sd_level_to_string(sd->level));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006533
6534 if (!cpu_isset(cpu, sd->span)) {
6535 printk(KERN_ERR "ERROR: domain->span does not contain "
6536 "CPU%d\n", cpu);
6537 }
6538 if (!cpu_isset(cpu, group->cpumask)) {
6539 printk(KERN_ERR "ERROR: domain->groups does not contain"
6540 " CPU%d\n", cpu);
6541 }
6542
6543 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6544 do {
6545 if (!group) {
6546 printk("\n");
6547 printk(KERN_ERR "ERROR: group is NULL\n");
6548 break;
6549 }
6550
6551 if (!group->__cpu_power) {
6552 printk(KERN_CONT "\n");
6553 printk(KERN_ERR "ERROR: domain->cpu_power not "
6554 "set\n");
6555 break;
6556 }
6557
6558 if (!cpus_weight(group->cpumask)) {
6559 printk(KERN_CONT "\n");
6560 printk(KERN_ERR "ERROR: empty group\n");
6561 break;
6562 }
6563
Mike Travis7c16ec52008-04-04 18:11:11 -07006564 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006565 printk(KERN_CONT "\n");
6566 printk(KERN_ERR "ERROR: repeated CPUs\n");
6567 break;
6568 }
6569
Mike Travis7c16ec52008-04-04 18:11:11 -07006570 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006571
Mike Travis434d53b2008-04-04 18:11:04 -07006572 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006573 printk(KERN_CONT " %s", str);
6574
6575 group = group->next;
6576 } while (group != sd->groups);
6577 printk(KERN_CONT "\n");
6578
Mike Travis7c16ec52008-04-04 18:11:11 -07006579 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006580 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6581
Mike Travis7c16ec52008-04-04 18:11:11 -07006582 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006583 printk(KERN_ERR "ERROR: parent span is not a superset "
6584 "of domain->span\n");
6585 return 0;
6586}
6587
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588static void sched_domain_debug(struct sched_domain *sd, int cpu)
6589{
Mike Travis7c16ec52008-04-04 18:11:11 -07006590 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591 int level = 0;
6592
Nick Piggin41c7ce92005-06-25 14:57:24 -07006593 if (!sd) {
6594 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6595 return;
6596 }
6597
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6599
Mike Travis7c16ec52008-04-04 18:11:11 -07006600 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6601 if (!groupmask) {
6602 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6603 return;
6604 }
6605
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006606 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006607 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609 level++;
6610 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006611 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006612 break;
6613 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006614 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006616#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006617# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006618#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006620static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006621{
6622 if (cpus_weight(sd->span) == 1)
6623 return 1;
6624
6625 /* Following flags need at least 2 groups */
6626 if (sd->flags & (SD_LOAD_BALANCE |
6627 SD_BALANCE_NEWIDLE |
6628 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006629 SD_BALANCE_EXEC |
6630 SD_SHARE_CPUPOWER |
6631 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006632 if (sd->groups != sd->groups->next)
6633 return 0;
6634 }
6635
6636 /* Following flags don't use groups */
6637 if (sd->flags & (SD_WAKE_IDLE |
6638 SD_WAKE_AFFINE |
6639 SD_WAKE_BALANCE))
6640 return 0;
6641
6642 return 1;
6643}
6644
Ingo Molnar48f24c42006-07-03 00:25:40 -07006645static int
6646sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006647{
6648 unsigned long cflags = sd->flags, pflags = parent->flags;
6649
6650 if (sd_degenerate(parent))
6651 return 1;
6652
6653 if (!cpus_equal(sd->span, parent->span))
6654 return 0;
6655
6656 /* Does parent contain flags not in child? */
6657 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6658 if (cflags & SD_WAKE_AFFINE)
6659 pflags &= ~SD_WAKE_BALANCE;
6660 /* Flags needing groups don't count if only 1 group in parent */
6661 if (parent->groups == parent->groups->next) {
6662 pflags &= ~(SD_LOAD_BALANCE |
6663 SD_BALANCE_NEWIDLE |
6664 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006665 SD_BALANCE_EXEC |
6666 SD_SHARE_CPUPOWER |
6667 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006668 }
6669 if (~cflags & pflags)
6670 return 0;
6671
6672 return 1;
6673}
6674
Gregory Haskins57d885f2008-01-25 21:08:18 +01006675static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6676{
6677 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006678
6679 spin_lock_irqsave(&rq->lock, flags);
6680
6681 if (rq->rd) {
6682 struct root_domain *old_rd = rq->rd;
6683
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006684 if (cpu_isset(rq->cpu, old_rd->online))
6685 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006686
Gregory Haskinsdc938522008-01-25 21:08:26 +01006687 cpu_clear(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006688
Gregory Haskins57d885f2008-01-25 21:08:18 +01006689 if (atomic_dec_and_test(&old_rd->refcount))
6690 kfree(old_rd);
6691 }
6692
6693 atomic_inc(&rd->refcount);
6694 rq->rd = rd;
6695
Gregory Haskinsdc938522008-01-25 21:08:26 +01006696 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006697 if (cpu_isset(rq->cpu, cpu_online_map))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006698 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006699
6700 spin_unlock_irqrestore(&rq->lock, flags);
6701}
6702
Gregory Haskinsdc938522008-01-25 21:08:26 +01006703static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006704{
6705 memset(rd, 0, sizeof(*rd));
6706
Gregory Haskinsdc938522008-01-25 21:08:26 +01006707 cpus_clear(rd->span);
6708 cpus_clear(rd->online);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006709
6710 cpupri_init(&rd->cpupri);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006711}
6712
6713static void init_defrootdomain(void)
6714{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006715 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006716 atomic_set(&def_root_domain.refcount, 1);
6717}
6718
Gregory Haskinsdc938522008-01-25 21:08:26 +01006719static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006720{
6721 struct root_domain *rd;
6722
6723 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6724 if (!rd)
6725 return NULL;
6726
Gregory Haskinsdc938522008-01-25 21:08:26 +01006727 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006728
6729 return rd;
6730}
6731
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006733 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734 * hold the hotplug lock.
6735 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006736static void
6737cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006739 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006740 struct sched_domain *tmp;
6741
6742 /* Remove the sched domains which do not contribute to scheduling. */
6743 for (tmp = sd; tmp; tmp = tmp->parent) {
6744 struct sched_domain *parent = tmp->parent;
6745 if (!parent)
6746 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006747 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006748 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006749 if (parent->parent)
6750 parent->parent->child = tmp;
6751 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006752 }
6753
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006754 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006755 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006756 if (sd)
6757 sd->child = NULL;
6758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759
6760 sched_domain_debug(sd, cpu);
6761
Gregory Haskins57d885f2008-01-25 21:08:18 +01006762 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006763 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764}
6765
6766/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006767static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768
6769/* Setup the mask of cpus configured for isolated domains */
6770static int __init isolated_cpu_setup(char *str)
6771{
6772 int ints[NR_CPUS], i;
6773
6774 str = get_options(str, ARRAY_SIZE(ints), ints);
6775 cpus_clear(cpu_isolated_map);
6776 for (i = 1; i <= ints[0]; i++)
6777 if (ints[i] < NR_CPUS)
6778 cpu_set(ints[i], cpu_isolated_map);
6779 return 1;
6780}
6781
Ingo Molnar8927f492007-10-15 17:00:13 +02006782__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006783
6784/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006785 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6786 * to a function which identifies what group(along with sched group) a CPU
6787 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6788 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789 *
6790 * init_sched_build_groups will build a circular linked list of the groups
6791 * covered by the given span, and will set each group's ->cpumask correctly,
6792 * and ->cpu_power to 0.
6793 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006794static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006795init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006796 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006797 struct sched_group **sg,
6798 cpumask_t *tmpmask),
6799 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800{
6801 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802 int i;
6803
Mike Travis7c16ec52008-04-04 18:11:11 -07006804 cpus_clear(*covered);
6805
6806 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006807 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006808 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809 int j;
6810
Mike Travis7c16ec52008-04-04 18:11:11 -07006811 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006812 continue;
6813
Mike Travis7c16ec52008-04-04 18:11:11 -07006814 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006815 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816
Mike Travis7c16ec52008-04-04 18:11:11 -07006817 for_each_cpu_mask(j, *span) {
6818 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006819 continue;
6820
Mike Travis7c16ec52008-04-04 18:11:11 -07006821 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822 cpu_set(j, sg->cpumask);
6823 }
6824 if (!first)
6825 first = sg;
6826 if (last)
6827 last->next = sg;
6828 last = sg;
6829 }
6830 last->next = first;
6831}
6832
John Hawkes9c1cfda2005-09-06 15:18:14 -07006833#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834
John Hawkes9c1cfda2005-09-06 15:18:14 -07006835#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006836
John Hawkes9c1cfda2005-09-06 15:18:14 -07006837/**
6838 * find_next_best_node - find the next node to include in a sched_domain
6839 * @node: node whose sched_domain we're building
6840 * @used_nodes: nodes already in the sched_domain
6841 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006842 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006843 * finds the closest node not already in the @used_nodes map.
6844 *
6845 * Should use nodemask_t.
6846 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006847static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006848{
6849 int i, n, val, min_val, best_node = 0;
6850
6851 min_val = INT_MAX;
6852
6853 for (i = 0; i < MAX_NUMNODES; i++) {
6854 /* Start at @node */
6855 n = (node + i) % MAX_NUMNODES;
6856
6857 if (!nr_cpus_node(n))
6858 continue;
6859
6860 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006861 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006862 continue;
6863
6864 /* Simple min distance search */
6865 val = node_distance(node, n);
6866
6867 if (val < min_val) {
6868 min_val = val;
6869 best_node = n;
6870 }
6871 }
6872
Mike Travisc5f59f02008-04-04 18:11:10 -07006873 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006874 return best_node;
6875}
6876
6877/**
6878 * sched_domain_node_span - get a cpumask for a node's sched_domain
6879 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07006880 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07006881 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006882 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006883 * should be one that prevents unnecessary balancing, but also spreads tasks
6884 * out optimally.
6885 */
Mike Travis4bdbaad32008-04-15 16:35:52 -07006886static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006887{
Mike Travisc5f59f02008-04-04 18:11:10 -07006888 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07006889 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006890 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006891
Mike Travis4bdbaad32008-04-15 16:35:52 -07006892 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07006893 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006894
Mike Travis4bdbaad32008-04-15 16:35:52 -07006895 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07006896 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006897
6898 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07006899 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006900
Mike Travisc5f59f02008-04-04 18:11:10 -07006901 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad32008-04-15 16:35:52 -07006902 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006903 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006904}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006905#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006906
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006907int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006908
John Hawkes9c1cfda2005-09-06 15:18:14 -07006909/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006910 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006911 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912#ifdef CONFIG_SCHED_SMT
6913static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006914static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006915
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006916static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006917cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6918 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006920 if (sg)
6921 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006922 return cpu;
6923}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006924#endif /* CONFIG_SCHED_SMT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006925
Ingo Molnar48f24c42006-07-03 00:25:40 -07006926/*
6927 * multi-core sched-domains:
6928 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006929#ifdef CONFIG_SCHED_MC
6930static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006931static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006932#endif /* CONFIG_SCHED_MC */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006933
6934#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006935static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006936cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6937 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006938{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006939 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07006940
6941 *mask = per_cpu(cpu_sibling_map, cpu);
6942 cpus_and(*mask, *mask, *cpu_map);
6943 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006944 if (sg)
6945 *sg = &per_cpu(sched_group_core, group);
6946 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006947}
6948#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006949static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006950cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6951 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006952{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006953 if (sg)
6954 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006955 return cpu;
6956}
6957#endif
6958
Linus Torvalds1da177e2005-04-16 15:20:36 -07006959static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006960static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006961
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006962static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006963cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6964 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006965{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006966 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006967#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07006968 *mask = cpu_coregroup_map(cpu);
6969 cpus_and(*mask, *mask, *cpu_map);
6970 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006971#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07006972 *mask = per_cpu(cpu_sibling_map, cpu);
6973 cpus_and(*mask, *mask, *cpu_map);
6974 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006976 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006977#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006978 if (sg)
6979 *sg = &per_cpu(sched_group_phys, group);
6980 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981}
6982
6983#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006984/*
6985 * The init_sched_build_groups can't handle what we want to do with node
6986 * groups, so roll our own. Now each node has its own list of groups which
6987 * gets dynamically allocated.
6988 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07006990static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006991
6992static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006993static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006994
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006995static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006996 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006998 int group;
6999
Mike Travis7c16ec52008-04-04 18:11:11 -07007000 *nodemask = node_to_cpumask(cpu_to_node(cpu));
7001 cpus_and(*nodemask, *nodemask, *cpu_map);
7002 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007003
7004 if (sg)
7005 *sg = &per_cpu(sched_group_allnodes, group);
7006 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007008
Siddha, Suresh B08069032006-03-27 01:15:23 -08007009static void init_numa_sched_groups_power(struct sched_group *group_head)
7010{
7011 struct sched_group *sg = group_head;
7012 int j;
7013
7014 if (!sg)
7015 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007016 do {
7017 for_each_cpu_mask(j, sg->cpumask) {
7018 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007019
Andi Kleen3a5c3592007-10-15 17:00:14 +02007020 sd = &per_cpu(phys_domains, j);
7021 if (j != first_cpu(sd->groups->cpumask)) {
7022 /*
7023 * Only add "power" once for each
7024 * physical package.
7025 */
7026 continue;
7027 }
7028
7029 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007030 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007031 sg = sg->next;
7032 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007033}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007034#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007036#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007037/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07007038static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007039{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007040 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007041
7042 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007043 struct sched_group **sched_group_nodes
7044 = sched_group_nodes_bycpu[cpu];
7045
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007046 if (!sched_group_nodes)
7047 continue;
7048
7049 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007050 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7051
Mike Travis7c16ec52008-04-04 18:11:11 -07007052 *nodemask = node_to_cpumask(i);
7053 cpus_and(*nodemask, *nodemask, *cpu_map);
7054 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007055 continue;
7056
7057 if (sg == NULL)
7058 continue;
7059 sg = sg->next;
7060next_sg:
7061 oldsg = sg;
7062 sg = sg->next;
7063 kfree(oldsg);
7064 if (oldsg != sched_group_nodes[i])
7065 goto next_sg;
7066 }
7067 kfree(sched_group_nodes);
7068 sched_group_nodes_bycpu[cpu] = NULL;
7069 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007070}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007071#else /* !CONFIG_NUMA */
Mike Travis7c16ec52008-04-04 18:11:11 -07007072static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007073{
7074}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007075#endif /* CONFIG_NUMA */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007076
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007078 * Initialize sched groups cpu_power.
7079 *
7080 * cpu_power indicates the capacity of sched group, which is used while
7081 * distributing the load between different sched groups in a sched domain.
7082 * Typically cpu_power for all the groups in a sched domain will be same unless
7083 * there are asymmetries in the topology. If there are asymmetries, group
7084 * having more cpu_power will pickup more load compared to the group having
7085 * less cpu_power.
7086 *
7087 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7088 * the maximum number of tasks a group can handle in the presence of other idle
7089 * or lightly loaded groups in the same sched domain.
7090 */
7091static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7092{
7093 struct sched_domain *child;
7094 struct sched_group *group;
7095
7096 WARN_ON(!sd || !sd->groups);
7097
7098 if (cpu != first_cpu(sd->groups->cpumask))
7099 return;
7100
7101 child = sd->child;
7102
Eric Dumazet5517d862007-05-08 00:32:57 -07007103 sd->groups->__cpu_power = 0;
7104
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007105 /*
7106 * For perf policy, if the groups in child domain share resources
7107 * (for example cores sharing some portions of the cache hierarchy
7108 * or SMT), then set this domain groups cpu_power such that each group
7109 * can handle only one task, when there are other idle groups in the
7110 * same sched domain.
7111 */
7112 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7113 (child->flags &
7114 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007115 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007116 return;
7117 }
7118
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007119 /*
7120 * add cpu_power of each child group to this groups cpu_power
7121 */
7122 group = child->groups;
7123 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007124 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007125 group = group->next;
7126 } while (group != child->groups);
7127}
7128
7129/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007130 * Initializers for schedule domains
7131 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7132 */
7133
7134#define SD_INIT(sd, type) sd_init_##type(sd)
7135#define SD_INIT_FUNC(type) \
7136static noinline void sd_init_##type(struct sched_domain *sd) \
7137{ \
7138 memset(sd, 0, sizeof(*sd)); \
7139 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007140 sd->level = SD_LV_##type; \
Mike Travis7c16ec52008-04-04 18:11:11 -07007141}
7142
7143SD_INIT_FUNC(CPU)
7144#ifdef CONFIG_NUMA
7145 SD_INIT_FUNC(ALLNODES)
7146 SD_INIT_FUNC(NODE)
7147#endif
7148#ifdef CONFIG_SCHED_SMT
7149 SD_INIT_FUNC(SIBLING)
7150#endif
7151#ifdef CONFIG_SCHED_MC
7152 SD_INIT_FUNC(MC)
7153#endif
7154
7155/*
7156 * To minimize stack usage kmalloc room for cpumasks and share the
7157 * space as the usage in build_sched_domains() dictates. Used only
7158 * if the amount of space is significant.
7159 */
7160struct allmasks {
7161 cpumask_t tmpmask; /* make this one first */
7162 union {
7163 cpumask_t nodemask;
7164 cpumask_t this_sibling_map;
7165 cpumask_t this_core_map;
7166 };
7167 cpumask_t send_covered;
7168
7169#ifdef CONFIG_NUMA
7170 cpumask_t domainspan;
7171 cpumask_t covered;
7172 cpumask_t notcovered;
7173#endif
7174};
7175
7176#if NR_CPUS > 128
7177#define SCHED_CPUMASK_ALLOC 1
7178#define SCHED_CPUMASK_FREE(v) kfree(v)
7179#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
7180#else
7181#define SCHED_CPUMASK_ALLOC 0
7182#define SCHED_CPUMASK_FREE(v)
7183#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
7184#endif
7185
7186#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
7187 ((unsigned long)(a) + offsetof(struct allmasks, v))
7188
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007189static int default_relax_domain_level = -1;
7190
7191static int __init setup_relax_domain_level(char *str)
7192{
Li Zefan30e0e172008-05-13 10:27:17 +08007193 unsigned long val;
7194
7195 val = simple_strtoul(str, NULL, 0);
7196 if (val < SD_LV_MAX)
7197 default_relax_domain_level = val;
7198
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007199 return 1;
7200}
7201__setup("relax_domain_level=", setup_relax_domain_level);
7202
7203static void set_domain_attribute(struct sched_domain *sd,
7204 struct sched_domain_attr *attr)
7205{
7206 int request;
7207
7208 if (!attr || attr->relax_domain_level < 0) {
7209 if (default_relax_domain_level < 0)
7210 return;
7211 else
7212 request = default_relax_domain_level;
7213 } else
7214 request = attr->relax_domain_level;
7215 if (request < sd->level) {
7216 /* turn off idle balance on this domain */
7217 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7218 } else {
7219 /* turn on idle balance on this domain */
7220 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7221 }
7222}
7223
Mike Travis7c16ec52008-04-04 18:11:11 -07007224/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007225 * Build sched domains for a given set of cpus and attach the sched domains
7226 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007227 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007228static int __build_sched_domains(const cpumask_t *cpu_map,
7229 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007230{
7231 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007232 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007233 SCHED_CPUMASK_DECLARE(allmasks);
7234 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007235#ifdef CONFIG_NUMA
7236 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007237 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007238
7239 /*
7240 * Allocate the per-node list of sched groups
7241 */
Milton Miller5cf9f062007-10-15 17:00:19 +02007242 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007243 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007244 if (!sched_group_nodes) {
7245 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007246 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07007247 }
John Hawkesd1b55132005-09-06 15:18:14 -07007248#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249
Gregory Haskinsdc938522008-01-25 21:08:26 +01007250 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007251 if (!rd) {
7252 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07007253#ifdef CONFIG_NUMA
7254 kfree(sched_group_nodes);
7255#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007256 return -ENOMEM;
7257 }
7258
Mike Travis7c16ec52008-04-04 18:11:11 -07007259#if SCHED_CPUMASK_ALLOC
7260 /* get space for all scratch cpumask variables */
7261 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7262 if (!allmasks) {
7263 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7264 kfree(rd);
7265#ifdef CONFIG_NUMA
7266 kfree(sched_group_nodes);
7267#endif
7268 return -ENOMEM;
7269 }
7270#endif
7271 tmpmask = (cpumask_t *)allmasks;
7272
7273
7274#ifdef CONFIG_NUMA
7275 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7276#endif
7277
Linus Torvalds1da177e2005-04-16 15:20:36 -07007278 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007279 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007280 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007281 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07007283 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007284
Mike Travis7c16ec52008-04-04 18:11:11 -07007285 *nodemask = node_to_cpumask(cpu_to_node(i));
7286 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287
7288#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02007289 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07007290 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007291 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007292 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007293 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007294 sd->span = *cpu_map;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02007295 sd->first_cpu = first_cpu(sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07007296 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007297 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007298 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007299 } else
7300 p = NULL;
7301
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007303 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007304 set_domain_attribute(sd, attr);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007305 sched_domain_node_span(cpu_to_node(i), &sd->span);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02007306 sd->first_cpu = first_cpu(sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007307 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007308 if (p)
7309 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007310 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007311#endif
7312
7313 p = sd;
7314 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007315 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007316 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007317 sd->span = *nodemask;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02007318 sd->first_cpu = first_cpu(sd->span);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007320 if (p)
7321 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007322 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007323
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007324#ifdef CONFIG_SCHED_MC
7325 p = sd;
7326 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007327 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007328 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007329 sd->span = cpu_coregroup_map(i);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02007330 sd->first_cpu = first_cpu(sd->span);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007331 cpus_and(sd->span, sd->span, *cpu_map);
7332 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007333 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007334 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007335#endif
7336
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337#ifdef CONFIG_SCHED_SMT
7338 p = sd;
7339 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007340 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007341 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007342 sd->span = per_cpu(cpu_sibling_map, i);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02007343 sd->first_cpu = first_cpu(sd->span);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007344 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007346 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007347 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348#endif
7349 }
7350
7351#ifdef CONFIG_SCHED_SMT
7352 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007353 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007354 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7355 SCHED_CPUMASK_VAR(send_covered, allmasks);
7356
7357 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7358 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7359 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007360 continue;
7361
Ingo Molnardd41f592007-07-09 18:51:59 +02007362 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007363 &cpu_to_cpu_group,
7364 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365 }
7366#endif
7367
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007368#ifdef CONFIG_SCHED_MC
7369 /* Set up multi-core groups */
7370 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007371 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7372 SCHED_CPUMASK_VAR(send_covered, allmasks);
7373
7374 *this_core_map = cpu_coregroup_map(i);
7375 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7376 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007377 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007378
Ingo Molnardd41f592007-07-09 18:51:59 +02007379 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007380 &cpu_to_core_group,
7381 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007382 }
7383#endif
7384
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385 /* Set up physical groups */
7386 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007387 SCHED_CPUMASK_VAR(nodemask, allmasks);
7388 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007389
Mike Travis7c16ec52008-04-04 18:11:11 -07007390 *nodemask = node_to_cpumask(i);
7391 cpus_and(*nodemask, *nodemask, *cpu_map);
7392 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007393 continue;
7394
Mike Travis7c16ec52008-04-04 18:11:11 -07007395 init_sched_build_groups(nodemask, cpu_map,
7396 &cpu_to_phys_group,
7397 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007398 }
7399
7400#ifdef CONFIG_NUMA
7401 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007402 if (sd_allnodes) {
7403 SCHED_CPUMASK_VAR(send_covered, allmasks);
7404
7405 init_sched_build_groups(cpu_map, cpu_map,
7406 &cpu_to_allnodes_group,
7407 send_covered, tmpmask);
7408 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007409
7410 for (i = 0; i < MAX_NUMNODES; i++) {
7411 /* Set up node groups */
7412 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007413 SCHED_CPUMASK_VAR(nodemask, allmasks);
7414 SCHED_CPUMASK_VAR(domainspan, allmasks);
7415 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007416 int j;
7417
Mike Travis7c16ec52008-04-04 18:11:11 -07007418 *nodemask = node_to_cpumask(i);
7419 cpus_clear(*covered);
7420
7421 cpus_and(*nodemask, *nodemask, *cpu_map);
7422 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007423 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007424 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007425 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007426
Mike Travis4bdbaad32008-04-15 16:35:52 -07007427 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007428 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007429
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007430 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007431 if (!sg) {
7432 printk(KERN_WARNING "Can not alloc domain group for "
7433 "node %d\n", i);
7434 goto error;
7435 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007436 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007437 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007438 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007439
John Hawkes9c1cfda2005-09-06 15:18:14 -07007440 sd = &per_cpu(node_domains, j);
7441 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007442 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007443 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007444 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007445 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007446 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007447 prev = sg;
7448
7449 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007450 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007451 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007452 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007453
Mike Travis7c16ec52008-04-04 18:11:11 -07007454 cpus_complement(*notcovered, *covered);
7455 cpus_and(*tmpmask, *notcovered, *cpu_map);
7456 cpus_and(*tmpmask, *tmpmask, *domainspan);
7457 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007458 break;
7459
Mike Travis7c16ec52008-04-04 18:11:11 -07007460 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7461 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007462 continue;
7463
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007464 sg = kmalloc_node(sizeof(struct sched_group),
7465 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007466 if (!sg) {
7467 printk(KERN_WARNING
7468 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007469 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007470 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007471 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007472 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007473 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007474 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007475 prev->next = sg;
7476 prev = sg;
7477 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479#endif
7480
7481 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007482#ifdef CONFIG_SCHED_SMT
7483 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007484 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7485
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007486 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007487 }
7488#endif
7489#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007490 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007491 struct sched_domain *sd = &per_cpu(core_domains, i);
7492
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007493 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007494 }
7495#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007497 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007498 struct sched_domain *sd = &per_cpu(phys_domains, i);
7499
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007500 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501 }
7502
John Hawkes9c1cfda2005-09-06 15:18:14 -07007503#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007504 for (i = 0; i < MAX_NUMNODES; i++)
7505 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007506
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007507 if (sd_allnodes) {
7508 struct sched_group *sg;
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007509
Mike Travis7c16ec52008-04-04 18:11:11 -07007510 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7511 tmpmask);
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007512 init_numa_sched_groups_power(sg);
7513 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007514#endif
7515
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007517 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007518 struct sched_domain *sd;
7519#ifdef CONFIG_SCHED_SMT
7520 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007521#elif defined(CONFIG_SCHED_MC)
7522 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007523#else
7524 sd = &per_cpu(phys_domains, i);
7525#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007526 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007527 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007528
Mike Travis7c16ec52008-04-04 18:11:11 -07007529 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007530 return 0;
7531
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007532#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007533error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007534 free_sched_groups(cpu_map, tmpmask);
7535 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007536 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007537#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007538}
Paul Jackson029190c2007-10-18 23:40:20 -07007539
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007540static int build_sched_domains(const cpumask_t *cpu_map)
7541{
7542 return __build_sched_domains(cpu_map, NULL);
7543}
7544
Paul Jackson029190c2007-10-18 23:40:20 -07007545static cpumask_t *doms_cur; /* current sched domains */
7546static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007547static struct sched_domain_attr *dattr_cur;
7548 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007549
7550/*
7551 * Special case: If a kmalloc of a doms_cur partition (array of
7552 * cpumask_t) fails, then fallback to a single sched domain,
7553 * as determined by the single cpumask_t fallback_doms.
7554 */
7555static cpumask_t fallback_doms;
7556
Heiko Carstens22e52b02008-03-12 18:31:59 +01007557void __attribute__((weak)) arch_update_cpu_topology(void)
7558{
7559}
7560
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007561/*
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007562 * Free current domain masks.
7563 * Called after all cpus are attached to NULL domain.
7564 */
7565static void free_sched_domains(void)
7566{
7567 ndoms_cur = 0;
7568 if (doms_cur != &fallback_doms)
7569 kfree(doms_cur);
7570 doms_cur = &fallback_doms;
7571}
7572
7573/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007574 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007575 * For now this just excludes isolated cpus, but could be used to
7576 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007577 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007578static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007579{
Milton Miller73785472007-10-24 18:23:48 +02007580 int err;
7581
Heiko Carstens22e52b02008-03-12 18:31:59 +01007582 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007583 ndoms_cur = 1;
7584 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7585 if (!doms_cur)
7586 doms_cur = &fallback_doms;
7587 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007588 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007589 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007590 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007591
7592 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007593}
7594
Mike Travis7c16ec52008-04-04 18:11:11 -07007595static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7596 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597{
Mike Travis7c16ec52008-04-04 18:11:11 -07007598 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007599}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007601/*
7602 * Detach sched domains from a group of cpus specified in cpu_map
7603 * These cpus will now be attached to the NULL domain
7604 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007605static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007606{
Mike Travis7c16ec52008-04-04 18:11:11 -07007607 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007608 int i;
7609
Milton Miller6382bc92007-10-15 17:00:19 +02007610 unregister_sched_domain_sysctl();
7611
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007612 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007613 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007614 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007615 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007616}
7617
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007618/* handle null as "default" */
7619static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7620 struct sched_domain_attr *new, int idx_new)
7621{
7622 struct sched_domain_attr tmp;
7623
7624 /* fast path */
7625 if (!new && !cur)
7626 return 1;
7627
7628 tmp = SD_ATTR_INIT;
7629 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7630 new ? (new + idx_new) : &tmp,
7631 sizeof(struct sched_domain_attr));
7632}
7633
Paul Jackson029190c2007-10-18 23:40:20 -07007634/*
7635 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007636 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007637 * doms_new[] to the current sched domain partitioning, doms_cur[].
7638 * It destroys each deleted domain and builds each new domain.
7639 *
7640 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007641 * The masks don't intersect (don't overlap.) We should setup one
7642 * sched domain for each mask. CPUs not in any of the cpumasks will
7643 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007644 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7645 * it as it is.
7646 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007647 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7648 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007649 * failed the kmalloc call, then it can pass in doms_new == NULL,
7650 * and partition_sched_domains() will fallback to the single partition
7651 * 'fallback_doms'.
7652 *
7653 * Call with hotplug lock held
7654 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007655void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7656 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007657{
7658 int i, j;
7659
Heiko Carstens712555e2008-04-28 11:33:07 +02007660 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007661
Milton Miller73785472007-10-24 18:23:48 +02007662 /* always unregister in case we don't destroy any domains */
7663 unregister_sched_domain_sysctl();
7664
Paul Jackson029190c2007-10-18 23:40:20 -07007665 if (doms_new == NULL) {
7666 ndoms_new = 1;
7667 doms_new = &fallback_doms;
7668 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007669 dattr_new = NULL;
Paul Jackson029190c2007-10-18 23:40:20 -07007670 }
7671
7672 /* Destroy deleted domains */
7673 for (i = 0; i < ndoms_cur; i++) {
7674 for (j = 0; j < ndoms_new; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007675 if (cpus_equal(doms_cur[i], doms_new[j])
7676 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007677 goto match1;
7678 }
7679 /* no match - a current sched domain not in new doms_new[] */
7680 detach_destroy_domains(doms_cur + i);
7681match1:
7682 ;
7683 }
7684
7685 /* Build new domains */
7686 for (i = 0; i < ndoms_new; i++) {
7687 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007688 if (cpus_equal(doms_new[i], doms_cur[j])
7689 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007690 goto match2;
7691 }
7692 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007693 __build_sched_domains(doms_new + i,
7694 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007695match2:
7696 ;
7697 }
7698
7699 /* Remember the new sched domains */
7700 if (doms_cur != &fallback_doms)
7701 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007702 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007703 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007704 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007705 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007706
7707 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007708
Heiko Carstens712555e2008-04-28 11:33:07 +02007709 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007710}
7711
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007712#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007713int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007714{
7715 int err;
7716
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007717 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007718 mutex_lock(&sched_domains_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007719 detach_destroy_domains(&cpu_online_map);
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007720 free_sched_domains();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007721 err = arch_init_sched_domains(&cpu_online_map);
Heiko Carstens712555e2008-04-28 11:33:07 +02007722 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007723 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007724
7725 return err;
7726}
7727
7728static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7729{
7730 int ret;
7731
7732 if (buf[0] != '0' && buf[0] != '1')
7733 return -EINVAL;
7734
7735 if (smt)
7736 sched_smt_power_savings = (buf[0] == '1');
7737 else
7738 sched_mc_power_savings = (buf[0] == '1');
7739
7740 ret = arch_reinit_sched_domains();
7741
7742 return ret ? ret : count;
7743}
7744
Adrian Bunk6707de002007-08-12 18:08:19 +02007745#ifdef CONFIG_SCHED_MC
7746static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7747{
7748 return sprintf(page, "%u\n", sched_mc_power_savings);
7749}
7750static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7751 const char *buf, size_t count)
7752{
7753 return sched_power_savings_store(buf, count, 0);
7754}
7755static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7756 sched_mc_power_savings_store);
7757#endif
7758
7759#ifdef CONFIG_SCHED_SMT
7760static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7761{
7762 return sprintf(page, "%u\n", sched_smt_power_savings);
7763}
7764static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7765 const char *buf, size_t count)
7766{
7767 return sched_power_savings_store(buf, count, 1);
7768}
7769static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7770 sched_smt_power_savings_store);
7771#endif
7772
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007773int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7774{
7775 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007776
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007777#ifdef CONFIG_SCHED_SMT
7778 if (smt_capable())
7779 err = sysfs_create_file(&cls->kset.kobj,
7780 &attr_sched_smt_power_savings.attr);
7781#endif
7782#ifdef CONFIG_SCHED_MC
7783 if (!err && mc_capable())
7784 err = sysfs_create_file(&cls->kset.kobj,
7785 &attr_sched_mc_power_savings.attr);
7786#endif
7787 return err;
7788}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007789#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007790
Linus Torvalds1da177e2005-04-16 15:20:36 -07007791/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007792 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007793 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007794 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795 * which will prevent rebalancing while the sched domains are recalculated.
7796 */
7797static int update_sched_domains(struct notifier_block *nfb,
7798 unsigned long action, void *hcpu)
7799{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007800 int cpu = (int)(long)hcpu;
7801
Linus Torvalds1da177e2005-04-16 15:20:36 -07007802 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007804 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007805 disable_runtime(cpu_rq(cpu));
7806 /* fall-through */
7807 case CPU_UP_PREPARE:
7808 case CPU_UP_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007809 detach_destroy_domains(&cpu_online_map);
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007810 free_sched_domains();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811 return NOTIFY_OK;
7812
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007813
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007815 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007816 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007817 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007818 enable_runtime(cpu_rq(cpu));
7819 /* fall-through */
7820 case CPU_UP_CANCELED:
7821 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007823 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824 /*
7825 * Fall through and re-initialise the domains.
7826 */
7827 break;
7828 default:
7829 return NOTIFY_DONE;
7830 }
7831
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007832#ifndef CONFIG_CPUSETS
7833 /*
7834 * Create default domain partitioning if cpusets are disabled.
7835 * Otherwise we let cpusets rebuild the domains based on the
7836 * current setup.
7837 */
7838
Linus Torvalds1da177e2005-04-16 15:20:36 -07007839 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007840 arch_init_sched_domains(&cpu_online_map);
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007841#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842
7843 return NOTIFY_OK;
7844}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007845
7846void __init sched_init_smp(void)
7847{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007848 cpumask_t non_isolated_cpus;
7849
Mike Travis434d53b2008-04-04 18:11:04 -07007850#if defined(CONFIG_NUMA)
7851 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7852 GFP_KERNEL);
7853 BUG_ON(sched_group_nodes_bycpu == NULL);
7854#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007855 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007856 mutex_lock(&sched_domains_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007857 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007858 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007859 if (cpus_empty(non_isolated_cpus))
7860 cpu_set(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02007861 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007862 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863 /* XXX: Theoretical race here - CPU may be hotplugged now */
7864 hotcpu_notifier(update_sched_domains, 0);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02007865 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07007866
7867 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007868 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007869 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007870 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871}
7872#else
7873void __init sched_init_smp(void)
7874{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007875 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007876}
7877#endif /* CONFIG_SMP */
7878
7879int in_sched_functions(unsigned long addr)
7880{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881 return in_lock_functions(addr) ||
7882 (addr >= (unsigned long)__sched_text_start
7883 && addr < (unsigned long)__sched_text_end);
7884}
7885
Alexey Dobriyana9957442007-10-15 17:00:13 +02007886static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007887{
7888 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02007889 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02007890#ifdef CONFIG_FAIR_GROUP_SCHED
7891 cfs_rq->rq = rq;
7892#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007893 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007894}
7895
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007896static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7897{
7898 struct rt_prio_array *array;
7899 int i;
7900
7901 array = &rt_rq->active;
7902 for (i = 0; i < MAX_RT_PRIO; i++) {
Dmitry Adamushko20b63312008-06-11 00:58:30 +02007903 INIT_LIST_HEAD(array->queue + i);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007904 __clear_bit(i, array->bitmap);
7905 }
7906 /* delimiter for bitsearch: */
7907 __set_bit(MAX_RT_PRIO, array->bitmap);
7908
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007909#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007910 rt_rq->highest_prio = MAX_RT_PRIO;
7911#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007912#ifdef CONFIG_SMP
7913 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007914 rt_rq->overloaded = 0;
7915#endif
7916
7917 rt_rq->rt_time = 0;
7918 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007919 rt_rq->rt_runtime = 0;
7920 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007921
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007922#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007923 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007924 rt_rq->rq = rq;
7925#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007926}
7927
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007928#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007929static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
7930 struct sched_entity *se, int cpu, int add,
7931 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007932{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007933 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007934 tg->cfs_rq[cpu] = cfs_rq;
7935 init_cfs_rq(cfs_rq, rq);
7936 cfs_rq->tg = tg;
7937 if (add)
7938 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7939
7940 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007941 /* se could be NULL for init_task_group */
7942 if (!se)
7943 return;
7944
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007945 if (!parent)
7946 se->cfs_rq = &rq->cfs;
7947 else
7948 se->cfs_rq = parent->my_q;
7949
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007950 se->my_q = cfs_rq;
7951 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02007952 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007953 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007954}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007955#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007956
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007957#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007958static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
7959 struct sched_rt_entity *rt_se, int cpu, int add,
7960 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007961{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007962 struct rq *rq = cpu_rq(cpu);
7963
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007964 tg->rt_rq[cpu] = rt_rq;
7965 init_rt_rq(rt_rq, rq);
7966 rt_rq->tg = tg;
7967 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007968 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007969 if (add)
7970 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7971
7972 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007973 if (!rt_se)
7974 return;
7975
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007976 if (!parent)
7977 rt_se->rt_rq = &rq->rt;
7978 else
7979 rt_se->rt_rq = parent->my_q;
7980
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007981 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007982 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007983 INIT_LIST_HEAD(&rt_se->run_list);
7984}
7985#endif
7986
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987void __init sched_init(void)
7988{
Ingo Molnardd41f592007-07-09 18:51:59 +02007989 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07007990 unsigned long alloc_size = 0, ptr;
7991
7992#ifdef CONFIG_FAIR_GROUP_SCHED
7993 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7994#endif
7995#ifdef CONFIG_RT_GROUP_SCHED
7996 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7997#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007998#ifdef CONFIG_USER_SCHED
7999 alloc_size *= 2;
8000#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008001 /*
8002 * As sched_init() is called before page_alloc is setup,
8003 * we use alloc_bootmem().
8004 */
8005 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07008006 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07008007
8008#ifdef CONFIG_FAIR_GROUP_SCHED
8009 init_task_group.se = (struct sched_entity **)ptr;
8010 ptr += nr_cpu_ids * sizeof(void **);
8011
8012 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8013 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008014
8015#ifdef CONFIG_USER_SCHED
8016 root_task_group.se = (struct sched_entity **)ptr;
8017 ptr += nr_cpu_ids * sizeof(void **);
8018
8019 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8020 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008021#endif /* CONFIG_USER_SCHED */
8022#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008023#ifdef CONFIG_RT_GROUP_SCHED
8024 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8025 ptr += nr_cpu_ids * sizeof(void **);
8026
8027 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008028 ptr += nr_cpu_ids * sizeof(void **);
8029
8030#ifdef CONFIG_USER_SCHED
8031 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8032 ptr += nr_cpu_ids * sizeof(void **);
8033
8034 root_task_group.rt_rq = (struct rt_rq **)ptr;
8035 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008036#endif /* CONFIG_USER_SCHED */
8037#endif /* CONFIG_RT_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008038 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008039
Gregory Haskins57d885f2008-01-25 21:08:18 +01008040#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008041 init_aggregate();
Gregory Haskins57d885f2008-01-25 21:08:18 +01008042 init_defrootdomain();
8043#endif
8044
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008045 init_rt_bandwidth(&def_rt_bandwidth,
8046 global_rt_period(), global_rt_runtime());
8047
8048#ifdef CONFIG_RT_GROUP_SCHED
8049 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8050 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008051#ifdef CONFIG_USER_SCHED
8052 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8053 global_rt_period(), RUNTIME_INF);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008054#endif /* CONFIG_USER_SCHED */
8055#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008056
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008057#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008058 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008059 INIT_LIST_HEAD(&init_task_group.children);
8060
8061#ifdef CONFIG_USER_SCHED
8062 INIT_LIST_HEAD(&root_task_group.children);
8063 init_task_group.parent = &root_task_group;
8064 list_add(&init_task_group.siblings, &root_task_group.children);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008065#endif /* CONFIG_USER_SCHED */
8066#endif /* CONFIG_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008067
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008068 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008069 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008070
8071 rq = cpu_rq(i);
8072 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07008073 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07008074 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008075 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008076 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008077#ifdef CONFIG_FAIR_GROUP_SCHED
8078 init_task_group.shares = init_task_group_load;
8079 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008080#ifdef CONFIG_CGROUP_SCHED
8081 /*
8082 * How much cpu bandwidth does init_task_group get?
8083 *
8084 * In case of task-groups formed thr' the cgroup filesystem, it
8085 * gets 100% of the cpu resources in the system. This overall
8086 * system cpu resource is divided among the tasks of
8087 * init_task_group and its child task-groups in a fair manner,
8088 * based on each entity's (task or task-group's) weight
8089 * (se->load.weight).
8090 *
8091 * In other words, if init_task_group has 10 tasks of weight
8092 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8093 * then A0's share of the cpu resource is:
8094 *
8095 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
8096 *
8097 * We achieve this by letting init_task_group's tasks sit
8098 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8099 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008100 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008101#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008102 root_task_group.shares = NICE_0_LOAD;
8103 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008104 /*
8105 * In case of task-groups formed thr' the user id of tasks,
8106 * init_task_group represents tasks belonging to root user.
8107 * Hence it forms a sibling of all subsequent groups formed.
8108 * In this case, init_task_group gets only a fraction of overall
8109 * system cpu resource, based on the weight assigned to root
8110 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8111 * by letting tasks of init_task_group sit in a separate cfs_rq
8112 * (init_cfs_rq) and having one entity represent this group of
8113 * tasks 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,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008116 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008117 &per_cpu(init_sched_entity, i), i, 1,
8118 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008119
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008120#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008121#endif /* CONFIG_FAIR_GROUP_SCHED */
8122
8123 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008124#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008125 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008126#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008127 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008128#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008129 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008130 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008131 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008132 &per_cpu(init_sched_rt_entity, i), i, 1,
8133 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008134#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008135#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136
Ingo Molnardd41f592007-07-09 18:51:59 +02008137 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8138 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008140 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008141 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008143 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008144 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008145 rq->cpu = i;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04008146 rq->online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008147 rq->migration_thread = NULL;
8148 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008149 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008151 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008152 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008153 }
8154
Peter Williams2dd73a42006-06-27 02:54:34 -07008155 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008156
Avi Kivitye107be32007-07-26 13:40:43 +02008157#ifdef CONFIG_PREEMPT_NOTIFIERS
8158 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8159#endif
8160
Christoph Lameterc9819f42006-12-10 02:20:25 -08008161#ifdef CONFIG_SMP
8162 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
8163#endif
8164
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008165#ifdef CONFIG_RT_MUTEXES
8166 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8167#endif
8168
Linus Torvalds1da177e2005-04-16 15:20:36 -07008169 /*
8170 * The boot idle thread does lazy MMU switching as well:
8171 */
8172 atomic_inc(&init_mm.mm_count);
8173 enter_lazy_tlb(&init_mm, current);
8174
8175 /*
8176 * Make us the idle thread. Technically, schedule() should not be
8177 * called from this thread, however somewhere below it might be,
8178 * but because we are the idle thread, we just pick up running again
8179 * when this runqueue becomes "idle".
8180 */
8181 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008182 /*
8183 * During early bootup we pretend to be a normal task:
8184 */
8185 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008186
8187 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008188}
8189
8190#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8191void __might_sleep(char *file, int line)
8192{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008193#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194 static unsigned long prev_jiffy; /* ratelimiting */
8195
8196 if ((in_atomic() || irqs_disabled()) &&
8197 system_state == SYSTEM_RUNNING && !oops_in_progress) {
8198 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8199 return;
8200 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08008201 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202 " context at %s:%d\n", file, line);
8203 printk("in_atomic():%d, irqs_disabled():%d\n",
8204 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08008205 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08008206 if (irqs_disabled())
8207 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008208 dump_stack();
8209 }
8210#endif
8211}
8212EXPORT_SYMBOL(__might_sleep);
8213#endif
8214
8215#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008216static void normalize_task(struct rq *rq, struct task_struct *p)
8217{
8218 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008219
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008220 update_rq_clock(rq);
8221 on_rq = p->se.on_rq;
8222 if (on_rq)
8223 deactivate_task(rq, p, 0);
8224 __setscheduler(rq, p, SCHED_NORMAL, 0);
8225 if (on_rq) {
8226 activate_task(rq, p, 0);
8227 resched_task(rq->curr);
8228 }
8229}
8230
Linus Torvalds1da177e2005-04-16 15:20:36 -07008231void normalize_rt_tasks(void)
8232{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008233 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008234 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008235 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008236
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008237 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008238 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008239 /*
8240 * Only normalize user tasks:
8241 */
8242 if (!p->mm)
8243 continue;
8244
Ingo Molnardd41f592007-07-09 18:51:59 +02008245 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008246#ifdef CONFIG_SCHEDSTATS
8247 p->se.wait_start = 0;
8248 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008249 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008250#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008251
8252 if (!rt_task(p)) {
8253 /*
8254 * Renice negative nice level userspace
8255 * tasks back to 0:
8256 */
8257 if (TASK_NICE(p) < 0 && p->mm)
8258 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008259 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008261
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008262 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008263 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008264
Ingo Molnar178be792007-10-15 17:00:18 +02008265 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008266
Ingo Molnarb29739f2006-06-27 02:54:51 -07008267 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008268 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008269 } while_each_thread(g, p);
8270
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008271 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008272}
8273
8274#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008275
8276#ifdef CONFIG_IA64
8277/*
8278 * These functions are only useful for the IA64 MCA handling.
8279 *
8280 * They can only be called when the whole system has been
8281 * stopped - every CPU needs to be quiescent, and no scheduling
8282 * activity can take place. Using them for anything else would
8283 * be a serious bug, and as a result, they aren't even visible
8284 * under any other configuration.
8285 */
8286
8287/**
8288 * curr_task - return the current task for a given cpu.
8289 * @cpu: the processor in question.
8290 *
8291 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8292 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008293struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008294{
8295 return cpu_curr(cpu);
8296}
8297
8298/**
8299 * set_curr_task - set the current task for a given cpu.
8300 * @cpu: the processor in question.
8301 * @p: the task pointer to set.
8302 *
8303 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008304 * are serviced on a separate stack. It allows the architecture to switch the
8305 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008306 * must be called with all CPU's synchronized, and interrupts disabled, the
8307 * and caller must save the original value of the current task (see
8308 * curr_task() above) and restore that value before reenabling interrupts and
8309 * re-starting the system.
8310 *
8311 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8312 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008313void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008314{
8315 cpu_curr(cpu) = p;
8316}
8317
8318#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008319
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008320#ifdef CONFIG_FAIR_GROUP_SCHED
8321static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008322{
8323 int i;
8324
8325 for_each_possible_cpu(i) {
8326 if (tg->cfs_rq)
8327 kfree(tg->cfs_rq[i]);
8328 if (tg->se)
8329 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008330 }
8331
8332 kfree(tg->cfs_rq);
8333 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008334}
8335
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008336static
8337int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008338{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008339 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008340 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008341 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008342 int i;
8343
Mike Travis434d53b2008-04-04 18:11:04 -07008344 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008345 if (!tg->cfs_rq)
8346 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008347 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008348 if (!tg->se)
8349 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008350
8351 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008352
8353 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008354 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008355
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008356 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8357 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008358 if (!cfs_rq)
8359 goto err;
8360
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008361 se = kmalloc_node(sizeof(struct sched_entity),
8362 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008363 if (!se)
8364 goto err;
8365
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008366 parent_se = parent ? parent->se[i] : NULL;
8367 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008368 }
8369
8370 return 1;
8371
8372 err:
8373 return 0;
8374}
8375
8376static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8377{
8378 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8379 &cpu_rq(cpu)->leaf_cfs_rq_list);
8380}
8381
8382static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8383{
8384 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8385}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008386#else /* !CONFG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008387static inline void free_fair_sched_group(struct task_group *tg)
8388{
8389}
8390
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008391static inline
8392int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008393{
8394 return 1;
8395}
8396
8397static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8398{
8399}
8400
8401static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8402{
8403}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008404#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008405
8406#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008407static void free_rt_sched_group(struct task_group *tg)
8408{
8409 int i;
8410
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008411 destroy_rt_bandwidth(&tg->rt_bandwidth);
8412
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008413 for_each_possible_cpu(i) {
8414 if (tg->rt_rq)
8415 kfree(tg->rt_rq[i]);
8416 if (tg->rt_se)
8417 kfree(tg->rt_se[i]);
8418 }
8419
8420 kfree(tg->rt_rq);
8421 kfree(tg->rt_se);
8422}
8423
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008424static
8425int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008426{
8427 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008428 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008429 struct rq *rq;
8430 int i;
8431
Mike Travis434d53b2008-04-04 18:11:04 -07008432 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008433 if (!tg->rt_rq)
8434 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008435 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008436 if (!tg->rt_se)
8437 goto err;
8438
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008439 init_rt_bandwidth(&tg->rt_bandwidth,
8440 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008441
8442 for_each_possible_cpu(i) {
8443 rq = cpu_rq(i);
8444
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008445 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8446 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8447 if (!rt_rq)
8448 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008449
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008450 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8451 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8452 if (!rt_se)
8453 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008454
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008455 parent_se = parent ? parent->rt_se[i] : NULL;
8456 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008457 }
8458
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008459 return 1;
8460
8461 err:
8462 return 0;
8463}
8464
8465static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8466{
8467 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8468 &cpu_rq(cpu)->leaf_rt_rq_list);
8469}
8470
8471static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8472{
8473 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8474}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008475#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008476static inline void free_rt_sched_group(struct task_group *tg)
8477{
8478}
8479
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008480static inline
8481int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008482{
8483 return 1;
8484}
8485
8486static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8487{
8488}
8489
8490static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8491{
8492}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008493#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008494
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008495#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008496static void free_sched_group(struct task_group *tg)
8497{
8498 free_fair_sched_group(tg);
8499 free_rt_sched_group(tg);
8500 kfree(tg);
8501}
8502
8503/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008504struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008505{
8506 struct task_group *tg;
8507 unsigned long flags;
8508 int i;
8509
8510 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8511 if (!tg)
8512 return ERR_PTR(-ENOMEM);
8513
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008514 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008515 goto err;
8516
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008517 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008518 goto err;
8519
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008520 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008521 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008522 register_fair_sched_group(tg, i);
8523 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008524 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008525 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008526
8527 WARN_ON(!parent); /* root should already exist */
8528
8529 tg->parent = parent;
8530 list_add_rcu(&tg->siblings, &parent->children);
8531 INIT_LIST_HEAD(&tg->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008532 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008533
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008534 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008535
8536err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008537 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008538 return ERR_PTR(-ENOMEM);
8539}
8540
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008541/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008542static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008543{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008544 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008545 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008546}
8547
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008548/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008549void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008550{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008551 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008552 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008553
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008554 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008555 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008556 unregister_fair_sched_group(tg, i);
8557 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008558 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008559 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008560 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008561 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008562
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008563 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008564 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008565}
8566
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008567/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008568 * The caller of this function should have put the task in its new group
8569 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8570 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008571 */
8572void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008573{
8574 int on_rq, running;
8575 unsigned long flags;
8576 struct rq *rq;
8577
8578 rq = task_rq_lock(tsk, &flags);
8579
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008580 update_rq_clock(rq);
8581
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008582 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008583 on_rq = tsk->se.on_rq;
8584
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008585 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008586 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008587 if (unlikely(running))
8588 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008589
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008590 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008591
Peter Zijlstra810b3812008-02-29 15:21:01 -05008592#ifdef CONFIG_FAIR_GROUP_SCHED
8593 if (tsk->sched_class->moved_group)
8594 tsk->sched_class->moved_group(tsk);
8595#endif
8596
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008597 if (unlikely(running))
8598 tsk->sched_class->set_curr_task(rq);
8599 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008600 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008601
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008602 task_rq_unlock(rq, &flags);
8603}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008604#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008605
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008606#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008607static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008608{
8609 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008610 int on_rq;
8611
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008612 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008613 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008614 dequeue_entity(cfs_rq, se, 0);
8615
8616 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008617 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008618
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008619 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008620 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008621}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008622
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008623static void set_se_shares(struct sched_entity *se, unsigned long shares)
8624{
8625 struct cfs_rq *cfs_rq = se->cfs_rq;
8626 struct rq *rq = cfs_rq->rq;
8627 unsigned long flags;
8628
8629 spin_lock_irqsave(&rq->lock, flags);
8630 __set_se_shares(se, shares);
8631 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008632}
8633
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008634static DEFINE_MUTEX(shares_mutex);
8635
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008636int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008637{
8638 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008639 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008640
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008641 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008642 * We can't change the weight of the root cgroup.
8643 */
8644 if (!tg->se[0])
8645 return -EINVAL;
8646
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008647 if (shares < MIN_SHARES)
8648 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008649 else if (shares > MAX_SHARES)
8650 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008651
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008652 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008653 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008654 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008655
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008656 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008657 for_each_possible_cpu(i)
8658 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008659 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008660 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008661
8662 /* wait for any ongoing reference to this group to finish */
8663 synchronize_sched();
8664
8665 /*
8666 * Now we are free to modify the group's share on each cpu
8667 * w/o tripping rebalance_share or load_balance_fair.
8668 */
8669 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008670 for_each_possible_cpu(i) {
8671 /*
8672 * force a rebalance
8673 */
8674 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008675 set_se_shares(tg->se[i], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008676 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008677
8678 /*
8679 * Enable load balance activity on this group, by inserting it back on
8680 * each cpu's rq->leaf_cfs_rq_list.
8681 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008682 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008683 for_each_possible_cpu(i)
8684 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008685 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008686 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008687done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008688 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008689 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008690}
8691
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008692unsigned long sched_group_shares(struct task_group *tg)
8693{
8694 return tg->shares;
8695}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008696#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008697
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008698#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008699/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008700 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008701 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008702static DEFINE_MUTEX(rt_constraints_mutex);
8703
8704static unsigned long to_ratio(u64 period, u64 runtime)
8705{
8706 if (runtime == RUNTIME_INF)
8707 return 1ULL << 16;
8708
Roman Zippel6f6d6a12008-05-01 04:34:28 -07008709 return div64_u64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008710}
8711
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008712#ifdef CONFIG_CGROUP_SCHED
8713static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8714{
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008715 struct task_group *tgi, *parent = tg->parent;
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008716 unsigned long total = 0;
8717
8718 if (!parent) {
8719 if (global_rt_period() < period)
8720 return 0;
8721
8722 return to_ratio(period, runtime) <
8723 to_ratio(global_rt_period(), global_rt_runtime());
8724 }
8725
8726 if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period)
8727 return 0;
8728
8729 rcu_read_lock();
8730 list_for_each_entry_rcu(tgi, &parent->children, siblings) {
8731 if (tgi == tg)
8732 continue;
8733
8734 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8735 tgi->rt_bandwidth.rt_runtime);
8736 }
8737 rcu_read_unlock();
8738
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008739 return total + to_ratio(period, runtime) <=
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008740 to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period),
8741 parent->rt_bandwidth.rt_runtime);
8742}
8743#elif defined CONFIG_USER_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008744static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008745{
8746 struct task_group *tgi;
8747 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008748 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008749 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008750
8751 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008752 list_for_each_entry_rcu(tgi, &task_groups, list) {
8753 if (tgi == tg)
8754 continue;
8755
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008756 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8757 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008758 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008759 rcu_read_unlock();
8760
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008761 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008762}
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008763#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008764
Dhaval Giani521f1a242008-02-28 15:21:56 +05308765/* Must be called with tasklist_lock held */
8766static inline int tg_has_rt_tasks(struct task_group *tg)
8767{
8768 struct task_struct *g, *p;
8769 do_each_thread(g, p) {
8770 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8771 return 1;
8772 } while_each_thread(g, p);
8773 return 0;
8774}
8775
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008776static int tg_set_bandwidth(struct task_group *tg,
8777 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008778{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008779 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008780
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008781 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308782 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008783 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308784 err = -EBUSY;
8785 goto unlock;
8786 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008787 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8788 err = -EINVAL;
8789 goto unlock;
8790 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008791
8792 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008793 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8794 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008795
8796 for_each_possible_cpu(i) {
8797 struct rt_rq *rt_rq = tg->rt_rq[i];
8798
8799 spin_lock(&rt_rq->rt_runtime_lock);
8800 rt_rq->rt_runtime = rt_runtime;
8801 spin_unlock(&rt_rq->rt_runtime_lock);
8802 }
8803 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008804 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308805 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008806 mutex_unlock(&rt_constraints_mutex);
8807
8808 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008809}
8810
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008811int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8812{
8813 u64 rt_runtime, rt_period;
8814
8815 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8816 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8817 if (rt_runtime_us < 0)
8818 rt_runtime = RUNTIME_INF;
8819
8820 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8821}
8822
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008823long sched_group_rt_runtime(struct task_group *tg)
8824{
8825 u64 rt_runtime_us;
8826
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008827 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008828 return -1;
8829
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008830 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008831 do_div(rt_runtime_us, NSEC_PER_USEC);
8832 return rt_runtime_us;
8833}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008834
8835int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8836{
8837 u64 rt_runtime, rt_period;
8838
8839 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8840 rt_runtime = tg->rt_bandwidth.rt_runtime;
8841
8842 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8843}
8844
8845long sched_group_rt_period(struct task_group *tg)
8846{
8847 u64 rt_period_us;
8848
8849 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8850 do_div(rt_period_us, NSEC_PER_USEC);
8851 return rt_period_us;
8852}
8853
8854static int sched_rt_global_constraints(void)
8855{
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008856 struct task_group *tg = &root_task_group;
8857 u64 rt_runtime, rt_period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008858 int ret = 0;
8859
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008860 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8861 rt_runtime = tg->rt_bandwidth.rt_runtime;
8862
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008863 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008864 if (!__rt_schedulable(tg, rt_period, rt_runtime))
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008865 ret = -EINVAL;
8866 mutex_unlock(&rt_constraints_mutex);
8867
8868 return ret;
8869}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008870#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008871static int sched_rt_global_constraints(void)
8872{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008873 unsigned long flags;
8874 int i;
8875
8876 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8877 for_each_possible_cpu(i) {
8878 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8879
8880 spin_lock(&rt_rq->rt_runtime_lock);
8881 rt_rq->rt_runtime = global_rt_runtime();
8882 spin_unlock(&rt_rq->rt_runtime_lock);
8883 }
8884 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8885
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008886 return 0;
8887}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008888#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008889
8890int sched_rt_handler(struct ctl_table *table, int write,
8891 struct file *filp, void __user *buffer, size_t *lenp,
8892 loff_t *ppos)
8893{
8894 int ret;
8895 int old_period, old_runtime;
8896 static DEFINE_MUTEX(mutex);
8897
8898 mutex_lock(&mutex);
8899 old_period = sysctl_sched_rt_period;
8900 old_runtime = sysctl_sched_rt_runtime;
8901
8902 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8903
8904 if (!ret && write) {
8905 ret = sched_rt_global_constraints();
8906 if (ret) {
8907 sysctl_sched_rt_period = old_period;
8908 sysctl_sched_rt_runtime = old_runtime;
8909 } else {
8910 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8911 def_rt_bandwidth.rt_period =
8912 ns_to_ktime(global_rt_period());
8913 }
8914 }
8915 mutex_unlock(&mutex);
8916
8917 return ret;
8918}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008919
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008920#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008921
8922/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008923static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008924{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008925 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8926 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008927}
8928
8929static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02008930cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008931{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008932 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008933
Paul Menage2b01dfe2007-10-24 18:23:50 +02008934 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008935 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008936 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008937 return &init_task_group.css;
8938 }
8939
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008940 parent = cgroup_tg(cgrp->parent);
8941 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008942 if (IS_ERR(tg))
8943 return ERR_PTR(-ENOMEM);
8944
8945 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008946 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008947
8948 return &tg->css;
8949}
8950
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008951static void
8952cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008953{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008954 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008955
8956 sched_destroy_group(tg);
8957}
8958
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008959static int
8960cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
8961 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008962{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008963#ifdef CONFIG_RT_GROUP_SCHED
8964 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008965 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008966 return -EINVAL;
8967#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008968 /* We don't support RT-tasks being in separate groups */
8969 if (tsk->sched_class != &fair_sched_class)
8970 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008971#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008972
8973 return 0;
8974}
8975
8976static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02008977cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008978 struct cgroup *old_cont, struct task_struct *tsk)
8979{
8980 sched_move_task(tsk);
8981}
8982
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008983#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07008984static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02008985 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008986{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008987 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008988}
8989
Paul Menagef4c753b2008-04-29 00:59:56 -07008990static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008991{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008992 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008993
8994 return (u64) tg->shares;
8995}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008996#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008997
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008998#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07008999static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009000 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009001{
Paul Menage06ecb272008-04-29 01:00:06 -07009002 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009003}
9004
Paul Menage06ecb272008-04-29 01:00:06 -07009005static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009006{
Paul Menage06ecb272008-04-29 01:00:06 -07009007 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009008}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009009
9010static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9011 u64 rt_period_us)
9012{
9013 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9014}
9015
9016static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9017{
9018 return sched_group_rt_period(cgroup_tg(cgrp));
9019}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009020#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009021
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009022static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009023#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009024 {
9025 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009026 .read_u64 = cpu_shares_read_u64,
9027 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009028 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009029#endif
9030#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009031 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009032 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009033 .read_s64 = cpu_rt_runtime_read,
9034 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009035 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009036 {
9037 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009038 .read_u64 = cpu_rt_period_read_uint,
9039 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009040 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009041#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009042};
9043
9044static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9045{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009046 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009047}
9048
9049struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009050 .name = "cpu",
9051 .create = cpu_cgroup_create,
9052 .destroy = cpu_cgroup_destroy,
9053 .can_attach = cpu_cgroup_can_attach,
9054 .attach = cpu_cgroup_attach,
9055 .populate = cpu_cgroup_populate,
9056 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009057 .early_init = 1,
9058};
9059
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009060#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009061
9062#ifdef CONFIG_CGROUP_CPUACCT
9063
9064/*
9065 * CPU accounting code for task groups.
9066 *
9067 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9068 * (balbir@in.ibm.com).
9069 */
9070
9071/* track cpu usage of a group of tasks */
9072struct cpuacct {
9073 struct cgroup_subsys_state css;
9074 /* cpuusage holds pointer to a u64-type object on every cpu */
9075 u64 *cpuusage;
9076};
9077
9078struct cgroup_subsys cpuacct_subsys;
9079
9080/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309081static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009082{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309083 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009084 struct cpuacct, css);
9085}
9086
9087/* return cpu accounting group to which this task belongs */
9088static inline struct cpuacct *task_ca(struct task_struct *tsk)
9089{
9090 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9091 struct cpuacct, css);
9092}
9093
9094/* create a new cpu accounting group */
9095static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309096 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009097{
9098 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9099
9100 if (!ca)
9101 return ERR_PTR(-ENOMEM);
9102
9103 ca->cpuusage = alloc_percpu(u64);
9104 if (!ca->cpuusage) {
9105 kfree(ca);
9106 return ERR_PTR(-ENOMEM);
9107 }
9108
9109 return &ca->css;
9110}
9111
9112/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009113static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309114cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009115{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309116 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009117
9118 free_percpu(ca->cpuusage);
9119 kfree(ca);
9120}
9121
9122/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309123static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009124{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309125 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009126 u64 totalcpuusage = 0;
9127 int i;
9128
9129 for_each_possible_cpu(i) {
9130 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9131
9132 /*
9133 * Take rq->lock to make 64-bit addition safe on 32-bit
9134 * platforms.
9135 */
9136 spin_lock_irq(&cpu_rq(i)->lock);
9137 totalcpuusage += *cpuusage;
9138 spin_unlock_irq(&cpu_rq(i)->lock);
9139 }
9140
9141 return totalcpuusage;
9142}
9143
Dhaval Giani0297b802008-02-29 10:02:44 +05309144static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9145 u64 reset)
9146{
9147 struct cpuacct *ca = cgroup_ca(cgrp);
9148 int err = 0;
9149 int i;
9150
9151 if (reset) {
9152 err = -EINVAL;
9153 goto out;
9154 }
9155
9156 for_each_possible_cpu(i) {
9157 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9158
9159 spin_lock_irq(&cpu_rq(i)->lock);
9160 *cpuusage = 0;
9161 spin_unlock_irq(&cpu_rq(i)->lock);
9162 }
9163out:
9164 return err;
9165}
9166
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009167static struct cftype files[] = {
9168 {
9169 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009170 .read_u64 = cpuusage_read,
9171 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009172 },
9173};
9174
Dhaval Giani32cd7562008-02-29 10:02:43 +05309175static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009176{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309177 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009178}
9179
9180/*
9181 * charge this task's execution time to its accounting group.
9182 *
9183 * called with rq->lock held.
9184 */
9185static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9186{
9187 struct cpuacct *ca;
9188
9189 if (!cpuacct_subsys.active)
9190 return;
9191
9192 ca = task_ca(tsk);
9193 if (ca) {
9194 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
9195
9196 *cpuusage += cputime;
9197 }
9198}
9199
9200struct cgroup_subsys cpuacct_subsys = {
9201 .name = "cpuacct",
9202 .create = cpuacct_create,
9203 .destroy = cpuacct_destroy,
9204 .populate = cpuacct_populate,
9205 .subsys_id = cpuacct_subsys_id,
9206};
9207#endif /* CONFIG_CGROUP_CPUACCT */